Answers for "static file for flask"

2

flask make static directory

from flask import Flask, send_from_directory

app = Flask(__name__)

@app.route("/static/<path:path>")
def static_dir(path):
    return send_from_directory("static", path)

if __name__ == "__main__":
    app.run()
Posted by: Guest on May-27-2020
0

My flask static first file

Hello This is static file
Posted by: Guest on June-19-2021

Python Answers by Framework

Browse Popular Code Answers by Language