abersheeran
baize
Python

Powerful and exquisite WSGI/ASGI framework/toolkit.

Last updated Feb 12, 2026
96
Stars
4
Forks
1
Issues
0
Stars/day
Attention Score
3
Language breakdown
Python 100.0%
Files click to expand
README

BáiZé

Codecov PyPI - Python Version

Powerful and exquisite WSGI/ASGI framework/toolkit. Only relies on the standard library.

The minimize implementation of methods required in the Web framework. No redundant implementation means that you can freely customize functions without considering the conflict with baize's own implementation.

Under the ASGI/WSGI protocol, the interface of the request object and the response object is almost the same, only need to add or delete await in the appropriate place. In addition, it should be noted that ASGI supports WebSocket but WSGI does not.

Install

pip install -U baize

Document and other website

BáiZé Document

If you have questions or idea, you can send it to Discussions.

Quick Start

A short example for WSGI application, if you don't know what is WSGI, please read PEP3333.

import time
from typing import Callable
from baize.wsgi import (
    decorator,
    request_response,
    Router,
    Request,
    Response,
    PlainTextResponse,
)

@decorator def timer(request: Request, next_call: Callable[[Request], Response]) -> Response: start_time = time.time() response = next_call(request) end_time = time.time() response.headers["x-time"] = str(round((endtime - starttime) * 1000)) return response

@request_response @timer def sayhi(request: Request) -> Response: return PlainTextResponse("hi, " + request.path_params["name"])

@request_response @timer def echo(request: Request) -> Response: return PlainTextResponse(request.body)

application = Router( ("/", PlainTextResponse("homepage")), ("/echo", echo), ("/sayhi/{name}", sayhi), )

if name == "main": import uvicorn

uvicorn.run(application, interface="wsgi", port=8000)

A short example for ASGI application, if you don't know what is ASGI, please read ASGI Documention.

import time
from typing import Awaitable, Callable
from baize.asgi import (
    decorator,
    request_response,
    Router,
    Request,
    Response,
    PlainTextResponse,
)

@decorator async def timer( request: Request, next_call: Callable[[Request], Awaitable[Response]] ) -> Response: start_time = time.time() response = await next_call(request) end_time = time.time() response.headers["x-time"] = str(round((endtime - starttime) * 1000)) return response

@request_response @timer async def sayhi(request: Request) -> Response: return PlainTextResponse("hi, " + request.path_params["name"])

@request_response @timer async def echo(request: Request) -> Response: return PlainTextResponse(await request.body)

application = Router( ("/", PlainTextResponse("homepage")), ("/echo", echo), ("/sayhi/{name}", sayhi), )

if name == "main": import uvicorn

uvicorn.run(application, interface="asgi3", port=8000)

License

Apache-2.0.

© 2026 GitRepoTrend · abersheeran/baize · Updated daily from GitHub