Skip to content

Instantly share code, notes, and snippets.

@dineshsonachalam
Created January 15, 2019 16:07
Show Gist options
  • Save dineshsonachalam/0d852f3ca7f73a2118c4e66d938d61cd to your computer and use it in GitHub Desktop.
Save dineshsonachalam/0d852f3ca7f73a2118c4e66d938d61cd to your computer and use it in GitHub Desktop.
from flask import Flask
from routes.search import search_blueprint
app = Flask(__name__)
app.register_blueprint(search_blueprint)
if __name__ == "__main__":
app.run("0.0.0.0",port=8005,debug=False,threaded=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment