Toolkit for building ASGI applications and libraries
Project description
Asgikit - ASGI Toolkit
Asgikit is a toolkit for building asgi applications and frameworks.
The examples directory contain usage examples of several use cases
Features:
- Request
- Headers
- Cookies
- Body (bytes, str, json, form, stream)
- Form
- Response
- Plain text
- Json
- Streaming
- File
- Websockets
Example request and response
from asgikit import Request
async def main(scope, receive, send):
assert scope["type"] == "http"
request = Request(scope, receive, send)
# request method
method = request.method
# request path
path = request.path
# request headers
headers = request.headers
# read body as json
body = await request.body.read_json()
data = {
"lang": "Python",
"async": True,
"platform": "asgi",
"method": method,
"path": path,
"headers": dict(headers.items()),
"body": body,
}
# send json response
await request.respond_json(data)
Example websocket
from asgikit import Request, WebSocketDisconnect
async def app(scope, receive, send):
if scope["type"] != "websocket":
return
request = Request(scope, receive, send)
ws = await request.upgrade()
while True:
try:
message = await ws.read()
await ws.write(message)
except WebSocketDisconnect:
print("Client disconnect")
break
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
asgikit-0.19.0.tar.gz
(23.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
asgikit-0.19.0-py3-none-any.whl
(18.2 kB
view details)
File details
Details for the file asgikit-0.19.0.tar.gz.
File metadata
- Download URL: asgikit-0.19.0.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.26.7 CPython/3.14.3 Linux/6.17.0-22-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60cd767de5a43d6cfd0343d7e227b374dedfc706c7af2d8a00c87b8f793a69a4
|
|
| MD5 |
347fa58c259b39c08973b15b1702f030
|
|
| BLAKE2b-256 |
70bd6c13d955733d4facdfc8ecaf9e5ec28eb90ff5c4c1a6fe063a10c85f78b2
|
File details
Details for the file asgikit-0.19.0-py3-none-any.whl.
File metadata
- Download URL: asgikit-0.19.0-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.26.7 CPython/3.14.3 Linux/6.17.0-22-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18a749ff605aaabd38dc24fd899b1c55df569caa70eb58d7e4967adc0d65e33c
|
|
| MD5 |
4da4373ee88e1d64ddedcd6b43dee1d9
|
|
| BLAKE2b-256 |
3b53d66ee39c6dde0ec48f49356384c99d1d5f5aade32f553bf5c7ee6271d143
|