Loading repository data…
Loading repository data…
aliev / repository
Asynchronous OAuth 2.0 provider for Python 3
aioauth implements OAuth 2.0 protocol and can be used in asynchronous frameworks like FastAPI / Starlette, aiohttp. It can work with any databases like MongoDB, PostgreSQL, MySQL and ORMs like gino, sqlalchemy or databases over simple BaseStorage interface.
There are few great OAuth frameworks for Python like oauthlib and authlib, but they do not support asyncio and rewriting these libraries to asyncio is a significant challenge (see issues here and here).
python -m pip install aioauth
The project example is located in the examples directory and uses FastAPI as the server.