TorrentIndexer/indexer.py

16 lines
339 B
Python
Raw Normal View History

2015-02-05 01:02:32 +01:00
#!/usr/bin/python3
#/* vim:set ts=2 set noexpandtab */
from flask import Flask, render_template, url_for
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")
if __name__ == "__main__":
app.run(debug=True)