starlette 0.31.1-1 source package in Ubuntu

Changelog

starlette (0.31.1-1) unstable; urgency=medium

  * New upstream release

 -- Piotr Ożarowski <email address hidden>  Wed, 20 Sep 2023 12:09:50 +0200

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
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
starlette_0.31.1-1.dsc 2.4 KiB f5d939490eb1b61c99fb123d86acb2d6d93d6b29068c49e52d223e95ca51d26c
starlette_0.31.1.orig.tar.gz 2.7 MiB a4dc2a3448fb059000868d7eb774dd71229261b6d49b6851e7849bec69c0a011
starlette_0.31.1-1.debian.tar.xz 3.4 KiB 45e17ca51c23c6825b82623257aa05b2ba37ec971f137b9c1a73f60ca2f4a166

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),
  ])