mirror-cache 0.0.3

A customizable reverse proxy with cache
1
2
3
4
5
6
7
from flask import Flask

app = Flask(__name__)

@app.route("/<string:content>/<int:repeat>")
def hello_world(content, repeat):
    return content * repeat