From 3c705d3fdfc0aa30291604f5268e2cd0bdb8ae7c Mon Sep 17 00:00:00 2001 From: Aber Date: Thu, 1 Oct 2020 04:34:19 +0800 Subject: [PATCH] Added rpc.py to Implementations --- docs/implementations.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/implementations.rst b/docs/implementations.rst index 8b4da650..b4043afc 100644 --- a/docs/implementations.rst +++ b/docs/implementations.rst @@ -75,3 +75,14 @@ Starlette Starlette is a minimalist ASGI library for writing against basic but powerful ``Request`` and ``Response`` classes. Supports HTTP. + + +rpc.py +------ + +*Beta* / https://github.com/abersheeran/rpc.py + +An easy-to-use and powerful RPC framework. RPC server base on WSGI & ASGI, client base +on ``httpx``. Supports synchronous functions, asynchronous functions, synchronous +generator functions, and asynchronous generator functions. Optional use of Type hint +for type conversion. Optional OpenAPI document generation.