- """
- Module to contain all the project's Flask server plumbing.
- """
-
- from flask import Flask
- from flask import render_template, session
-
- from bitshift import assets
- from bitshift.query import parse_query
- from bitshift.crawler import crawl
-
- app = Flask(__name__)
- app.config.from_object("bitshift.config")
-
- app_env = app.jinja_env
- app_env.line_statement_prefix = "="
- app_env.globals.update(assets = assets)
-
- @app.route("/")
- def index():
- return render_template("index.html")
-
- @app.route("/search/<query>")
- def search(query):
- ## tree = parse_query(query)
- ## database.search(tree)
- pass
-
- if __name__ == "__main__":
- crawl()
|