https://github.com/alex-oleshkevich/starlette-auth
Authentication library for Starlette.
https://github.com/alex-oleshkevich/starlette-auth
Last synced: 2 months ago
JSON representation
Authentication library for Starlette.
- Host: GitHub
- URL: https://github.com/alex-oleshkevich/starlette-auth
- Owner: alex-oleshkevich
- License: mit
- Created: 2024-10-16T16:59:11.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-10-21T17:37:45.000Z (6 months ago)
- Last Synced: 2024-10-22T07:27:52.620Z (6 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
# Starlette Auth
Authentication library for Starlette.




## Installation
Install `starlette_auth` using PIP or poetry:
```bash
pip install starlette_auth
```## Features
- __Vanilla Starlette integration.__ Following standards ensures compatibility with other libraries.
- __Multiple backends.__ Supports multiple authentication backends (e.g. database, OAuth, etc.)
- __Middleware__ to protect route segments.
- Session fixation protection## Quick start
See example application in [examples/](examples/) directory of this repository.