Skip to content

Instantly share code, notes, and snippets.

@onkar-indellient
Created August 4, 2022 15:02
Show Gist options
  • Save onkar-indellient/bde29031a8fa31f1f0634fdcf445ecc5 to your computer and use it in GitHub Desktop.
Save onkar-indellient/bde29031a8fa31f1f0634fdcf445ecc5 to your computer and use it in GitHub Desktop.
application.py
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