Created
December 12, 2019 14:10
-
-
Save ordotools/cdf01b6c0da9e49f4d33b6b3e870c81e to your computer and use it in GitHub Desktop.
[Render webpage with Flask] basic Flask application #python #flask
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 | |
app = Flask(__name__) | |
@app.route("/") | |
def hello(): | |
return "<h1>Hello, World!!</h1>" | |
if __name__ == "__main__": | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment