Created
January 15, 2019 16:07
-
-
Save dineshsonachalam/0d852f3ca7f73a2118c4e66d938d61cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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