Created
June 14, 2023 07:30
-
-
Save ZackAkil/e29723cab4e49ca5ccc3a91f912514c5 to your computer and use it in GitHub Desktop.
Server
This file contains 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, send_from_directory | |
app = Flask(__name__) | |
@app.route('/') | |
def index(): | |
return 'Hello, World!' | |
@app.route('/<path:path>') | |
def serve_files(path): | |
return send_from_directory('.', path) | |
if __name__ == '__main__': | |
app.run(debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment