Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
forked frompallets/flask

The Python micro framework for building web applications.

License

NotificationsYou must be signed in to change notification settings

BossZou/flask

 
 

Flask is a lightweightWSGI web application framework. It is designedto make getting started quick and easy, with the ability to scale up tocomplex applications. It began as a simple wrapper aroundWerkzeugandJinja and has become one of the most popular Python webapplication frameworks.

Flask offers suggestions, but doesn't enforce any dependencies orproject layout. It is up to the developer to choose the tools andlibraries they want to use. There are many extensions provided by thecommunity that make adding new functionality easy.

Installing

Install and update usingpip:

pip install -U Flask

A Simple Example

fromflaskimportFlaskapp=Flask(__name__)@app.route("/")defhello():return"Hello, World!"
$ env FLASK_APP=hello.py flask run * Serving Flask app "hello" * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

Contributing

For guidance on setting up a development environment and how to make acontribution to Flask, see thecontributing guidelines.

Donate

The Pallets organization develops and supports Flask and the librariesit uses. In order to grow the community of contributors and users, andallow the maintainers to devote more time to the projects,pleasedonate today.

Links

About

The Python micro framework for building web applications.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python99.9%
  • Other0.1%

[8]ページ先頭

©2009-2025 Movatter.jp