Created
March 3, 2024 22:52
-
-
Save quicksilver0/b3ca16a9cff31f6816a93ff574b6e01a to your computer and use it in GitHub Desktop.
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.config['SECRET_KEY'] = 'this_is_bad_secret_key' | |
@app.route('/') | |
def index(): | |
return 'Hello!' | |
if __name__ == "__main__": | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment