fastapi 0.63.0-2ubuntu0.1 source package in Ubuntu

Changelog

fastapi (0.63.0-2ubuntu0.1) jammy; urgency=low

  * Add upstream commits 33d614 and 11d0a0 to make it work with
    starlette 1.18.0 which we have in jammy (LP: #1970557)

 -- Rhonda D'Vine <email address hidden>  Wed, 19 Jul 2023 14:37:34 +0000

Upload details

Uploaded by:
Gerfried Fuchs
Sponsored by:
Rhonda D'Vine
Uploaded to:
Jammy
Original maintainer:
Sandro Tosi
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy updates universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
fastapi_0.63.0.orig.tar.gz 5.0 MiB f0d3000622ffdf94bb228232f2e74b92e91b4b60db9dd6d1f92865308903ab9c
fastapi_0.63.0-2ubuntu0.1.debian.tar.xz 8.9 KiB 69bd7c64100b0efbaf5e155f634d2547305910ed807a4f9c3a9278394fc72823
fastapi_0.63.0-2ubuntu0.1.dsc 2.3 KiB 2f312c591df51db0315e9ed360ed242069abfbda939d5b672d8b98d67ee58976

View changes file

Binary packages built by this source

python3-fastapi: 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.