1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
Source: fastapi
Section: python
Priority: optional
Maintainer: Sandro Tosi <morph@debian.org>
Build-Depends: debhelper-compat (= 13),
pybuild-plugin-pyproject,
python3-aiofiles <!nocheck>,
python3-aiosqlite <!nocheck>,
python3-all,
python3-databases <!nocheck>,
python3-dirty-equals <!nocheck>,
python3-email-validator <!nocheck>,
python3-flask <!nocheck>,
python3-httpx (>= 0.23.1) <!nocheck>,
python3-inline-snapshot <!nocheck>,
python3-jwt <!nocheck>,
python3-multipart (<< 0.1) | python3-python-multipart <!nocheck>,
python3-multipart (>= 0.0.13) | python3-python-multipart <!nocheck>,
python3-orjson <!nocheck>,
python3-passlib <!nocheck>,
python3-pdm-backend,
python3-peewee <!nocheck>,
python3-pwdlib <!nocheck>,
python3-pydantic (>= 1.8.2) <!nocheck>,
python3-pydantic-settings <!nocheck>,
python3-pytest <!nocheck>,
python3-requests <!nocheck>,
python3-starlette (>= 0.25.0) <!nocheck>,
python3-trio <!nocheck>,
python3-typing-extensions (>= 4.7.1) <!nocheck>,
python3-ujson <!nocheck>,
python3-yaml <!nocheck>,
Standards-Version: 4.7.0
Homepage: https://github.com/tiangolo/fastapi
Vcs-Git: https://salsa.debian.org/morph/fastapi.git
Vcs-Browser: https://salsa.debian.org/morph/fastapi
Testsuite: autopkgtest-pkg-pybuild
Package: python3-fastapi
Architecture: all
Depends: python3-pydantic,
python3-starlette,
python3-uvicorn,
${misc:Depends},
${python3:Depends},
Recommends: ${python3:Recommends},
Suggests: ${python3:Suggests},
Description: modern, fast, web framework for building APIs, based on type hints
FastAPI is a modern, fast (high-performance), web framework for building APIs
with Python 3.6+ based on standard Python type hints.
.
The key features are:
.
* Fast: Very high performance, on par with NodeJS and Go (thanks to Starlette
* and Pydantic). One of the fastest Python frameworks available.
.
* Fast to code: Increase the speed to develop features by about 200% to 300%.
* (note1)
.
* Fewer bugs: Reduce about 40% of human (developer) induced errors. (note1)
.
* Intuitive: Great editor support. Completion everywhere. Less time debugging.
.
* Easy: Designed to be easy to use and learn. Less time reading docs.
.
* Short: Minimize code duplication. Multiple features from each parameter
* declaration. Fewer bugs.
.
* Robust: Get production-ready code. With automatic interactive documentation.
.
* Standards-based: Based on (and fully compatible with) the open standards for
* APIs: OpenAPI (previously known as Swagger) and JSON Schema.
.
(note1) estimation based on tests on an internal development team, building
production applications.
|