starlette 0.30.0-1 source package in Ubuntu

Changelog

starlette (0.30.0-1) unstable; urgency=medium

  * New upstream release

 -- Piotr Ożarowski <email address hidden>  Fri, 21 Jul 2023 13:56:00 +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
Mantic release universe misc

Builds

Mantic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
starlette_0.30.0-1.dsc 2.4 KiB 2b88f627f060ea59238cf746c53d61c6ecc35ec0297f291792d82249ad267621
starlette_0.30.0.orig.tar.gz 2.7 MiB 9cf6bd5f2fbc091c2f22701f9b7f7dfcbd304a567845cffbf89d706543fd2a03
starlette_0.30.0-1.debian.tar.xz 3.4 KiB 47c917779ee04be8cb2a2ea6943ece20b94dde0c7a70050f7f3775bb0bc96647

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