Source code
Flask is a lightweight [WSGI] web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around [Werkzeug] and [Jinja], and has become one of the most popular Python web application frameworks. Flask offers suggestions, but doesn't enforce any dependencies or project layout. It is up to the developer to choose the tools and libraries they want to use. There are many extensions provided by the community that make adding new functionality easy. The Pallets organization develops and supports Flask and the libraries it uses. In order to grow the community of contributors and users, and allow the maintainers to devote more time to the projects, [please donate today]. See our [detailed contributing documentation][contrib] for many ways to contribute, including reporting issues, requesting features, asking or answering questions, and making PRs.
Excerpt from the source-code README · 1,638 chars · not written by Vinony
Wikidata facts
- Developer
- Armin Ronacher
- Official website
- palletsprojects.com/p/flask
- Has use
- web framework
Show 10 more facts
- copyright license
- 3-clause BSD License
- software version identifier
- 3.1.3
- operating system
- cross-platform
- Commons category
- Flask (web framework)
- programmed in
- Python
- source code repository URL
- github.com/pallets/flask
- software quality assurance
- continuous integration
- Stack Exchange tag
- stackoverflow.com/tags/flask
- user manual URL
- flask.palletsprojects.com
- PyPI trove classifier
- Framework :: Flask
Sources (10)
via Wikidata · CC0
Article · Русский
Flask — фреймворк для создания веб-приложений на языке программирования Python, использующий набор инструментов Werkzeug, а также шаблонизатор Jinja2. Относится к категории так называемых — минималистичных каркасов веб-приложений, сознательно предоставляющих лишь самые базовые возможности. Поддерживается установка посредством пакетного менеджера PyPI, версия 1.0 совместима с Python 2.7, Python 3.3 и выше. Создатель и основной автор — австрийский программист Армин Ронахер, начал работу над проектом в 2010 году. Пример веб-приложения, которое показывает «Hello World!»: from flask import Flaskapp = Flask(__name__)@app.route("/")def hello: return "Hello World!"if __name__ == "__main__": app.run Сообществом поддерживается серия пакетов-расширений для Flask, их название обычно начинается с flask-, например flask-login, flask-sqlalchemy, flask-wtf.
Abstract from DBpedia / Wikipedia · CC BY-SA