Skip to content

GJJ121785021/index.py

 
 

Repository files navigation

中文 | English

Github Action Test OnPush

Publish PyPi PyPI Downloads

PyPI - Python Version

一个易用的高性能异步 web 框架。

Index.py 文档


Index.py 实现了 ASGI3 接口,并使用 Radix Tree 进行路由查找。是最快的 Python web 框架之一。一切特性都服务于快速开发高性能的 Web 服务。

  • 灵活且高效的路由系统 (基于 Radix Tree)
  • 自动解析请求 & 生成文档 (基于 pydantic)
  • 可视化 API 接口 (基于 ReDoc, 针对中文字体优化)
  • 自带一键部署命令 (基于 uvicorn 与 gunicorn)
  • 挂载 ASGI/WSGI 应用
  • 进程内后台任务 (基于 asyncio)
  • 可使用任何可用的 ASGI 生态

Install

pip install -U index.py

或者直接从 Github 上安装最新版本(不稳定)

pip install -U git+https://github.com/abersheeran/index.py@setup.py

中国大陆内的用户可从 Coding 上的镜像仓库拉取

pip install -U git+https://e.coding.net/aber/github/index.py.git@setup.py

Quick start

main.py 文件写入如下代码,使用 pip install index.py uvicorn 安装 uvicornindex.py,接下来执行 index-cli uvicorn main:app 就可以启动一个高效的 Web 服务了。

from indexpy import Index
from indexpy.routing import HttpRoute


async def homepage(request):
    return "hello, index.py"


app = Index(
    routes=[
        HttpRoute("/", homepage, method="get"),
    ]
)

About

An easy-to-use high-performance asynchronous web framework.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.2%
  • HTML 0.8%