Skip to main content

An easy-to-use asynchronous web framework based on ASGI.

Project description

中文 | English

Github Action Test OnPush

Publish PyPi PyPI Week Downloads

PyPI - Python Version

一个基于 Radix Tree 的高性能 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

向一个 .py 文件写入如下代码并直接执行它,访问 http://127.0.0.1:4190

from indexpy import Index


app = Index()


@app.router.http("/", method="get")
async def homepage(request):
    return "hello, index.py"


if __name__ == "__main__":
    import uvicorn

    uvicorn.run(app, interface="asgi3", port=4190)

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

index.py-0.14.1.tar.gz (37.3 kB view hashes)

Uploaded Source

Built Distribution

index.py-0.14.1-py3-none-any.whl (45.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page