Created
August 4, 2022 15:02
-
-
Save onkar-indellient/bde29031a8fa31f1f0634fdcf445ecc5 to your computer and use it in GitHub Desktop.
application.py
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 | |
application = Flask(__name__) | |
@application.route("/") | |
def hello(): | |
return "Welcome to Onkar's Sample Python Flask App" | |
if __name__ == "__main__": | |
application.run(host='127.0.0.1', port=5000, debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment