TorrentIndexer/indexer.py

24 lines
558 B
Python
Raw Normal View History

2015-02-05 01:02:32 +01:00
#!/usr/bin/python3
#/* vim:set ts=2 set noexpandtab */
2015-02-06 22:03:42 +01:00
from flask import Flask, render_template, url_for, request
app = Flask(__name__)
2015-02-05 01:02:32 +01:00
@app.route("/")
def index():
return render_template("search.html")
@app.route("/categorys")
def categorys():
return render_template("categorys.html")
@app.route("/create")
def create():
return render_template("create.html")
2015-02-06 22:03:42 +01:00
@app.route("/search", methods=['GET'])
def search():
return render_template("result.html", results=request.args.get("q", ""))
2015-02-06 22:03:42 +01:00
if __name__ == "__main__":
app.run(debug=True)