Answers for "what does flask do"

5

Flask

pip install -U Flask
Posted by: Guest on April-13-2020
0

Flask

from flask import Flask, render_template

# Create a flask app
app = Flask(
  __name__,
  template_folder='templates',
  static_folder='static'
)

# Index page
@app.route('/')
def hello():
  return "Hello World!"

if __name__ == '__main__':
  # Run the Flask app
  app.run(
	host='0.0.0.0',
	debug=True,
	port=8080
  )
Posted by: Guest on October-17-2021
0

flask

$ flask run --host=0.0.0.0
Posted by: Guest on May-16-2021
-2

flask

falsk
Posted by: Guest on July-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language