Skip to content

aliev/aioauth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

78f0876 · Feb 9, 2025
Feb 9, 2025
Feb 9, 2025
Jan 25, 2025
Feb 8, 2025
Jan 26, 2025
Nov 4, 2020
Nov 3, 2024
Nov 16, 2024
Aug 10, 2021
Aug 10, 2021
Nov 4, 2020
Jan 25, 2025
Feb 9, 2025
Jan 25, 2025

Repository files navigation

Asynchronous OAuth 2.0 framework for Python 3

Build Status codecov License PyPi Python 3.9

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.

Why this project exists?

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).

Supported RFCs

Installation

python -m pip install aioauth

Examples

The project example is located in the examples directory and uses FastAPI as the server.