Skip to content

Instantly share code, notes, and snippets.

@codexponent
Created February 27, 2021 11:35
Show Gist options
  • Select an option

  • Save codexponent/ec446d9b8c6069be1b6267c3e52d3f9c to your computer and use it in GitHub Desktop.

Select an option

Save codexponent/ec446d9b8c6069be1b6267c3e52d3f9c to your computer and use it in GitHub Desktop.
Simple Flask Application
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment