Skip to content

Instantly share code, notes, and snippets.

@sagunsh
Created January 19, 2020 11:11
Show Gist options
  • Save sagunsh/ca069b7fba8ff83563c5ff45dc96c8d8 to your computer and use it in GitHub Desktop.
Save sagunsh/ca069b7fba8ff83563c5ff45dc96c8d8 to your computer and use it in GitHub Desktop.
Basic Flask app
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return '<h1>Welcome to weather app</h1>'
if __name__ == '__main__':
app.run(debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment