starlette 0.25.0-2 source package in Ubuntu

Changelog

starlette (0.25.0-2) unstable; urgency=medium

  * Breaks: python3-fastapi (<< 0.91.0-1~) closes: 1031898

 -- Piotr Ożarowski <email address hidden>  Fri, 24 Feb 2023 22:14:04 +0100

Upload details

Uploaded by:
Piotr Ożarowski
Uploaded to:
Sid
Original maintainer:
Piotr Ożarowski
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
starlette_0.25.0-2.dsc 2.1 KiB dabd9a6adb5ef8dc52aa18b15622f8398039b6985e4455f39b8b95d1162f74ac
starlette_0.25.0.orig.tar.gz 49.6 KiB 854c71e73736c429c2bdb07801f2c76c9cba497e7c3cf4988fde5e95fe4cdb3c
starlette_0.25.0-2.debian.tar.xz 3.3 KiB 8a17d8ad94b528c351336d5bf68e6979a9ef559cd71b1cd6dbc17415cf28406b

Available diffs

No changes file available.

Binary packages built by this source

python3-starlette: ASGI library ideal for building high performance asyncio services

 Starlette is a lightweight ASGI (Asynchronous Server Gateway Interface)
 framework/toolkit, which is ideal for building high performance asyncio
 services.
 .
 It is production-ready, and gives you the following:
 .
  * Seriously impressive performance.
  * WebSocket support.
  * In-process background tasks.
  * Startup and shutdown events.
  * Test client built on `httpx`.
  * CORS, GZip, Static Files, Streaming responses.
  * Session and Cookie support.
  * 100% test coverage.
  * 100% type annotated codebase.
  * Zero hard dependencies.
 .
 Example:
 .
  from starlette.applications import Starlette
  from starlette.responses import JSONResponse
  from starlette.routing import Route
 .
  async def homepage(request):
      return JSONResponse({'hello': 'world'})
 .
  app = Starlette(debug=True, routes=[
    Route('/', homepage),
  ])