Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # app.py
- from flask import Flask
- app = Flask(__name__)
- @app.route('/')
- def hello_world():
- return 'Hello World'
- if __name__ == '__main__':
- app.run(debug=True)
- # requirements.txt
- Flask==2.3.2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement