awesome-starlite: Starlite精选资源列表


Starlite 是一个高性能、安全、架构良好、高效的 p​​ython 异步 Web 框架
Starlite 是一个强大、高性能、灵活和自以为是的 ASGI 框架,提供一流的类型支持和完整的Pydantic 集成。

安装

pip install starlite

快速开始

from starlite import Starlite, get


@get("/")
def hello_world() -> dict[str, str]:
   
"""Keeping the tradition alive with hello world."""
    return {
"hello": "world"}


入门模板

更多点击标题