Skip to content

Instantly share code, notes, and snippets.

@ardrian
Created April 16, 2018 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ardrian/894abf77101f458490e2055925710ae5 to your computer and use it in GitHub Desktop.
Save ardrian/894abf77101f458490e2055925710ae5 to your computer and use it in GitHub Desktop.
Basic Flask Example
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment