Skip to main content

Python SDK for the Authlib

Project description

AuthLib

A Python authentication library that provides JWT, OAuth2, and API token authentication with PostgreSQL backend. This library is designed for seamless integration with Flask applications and provides a robust set of endpoints and utilities for user management, authentication, and API token handling.

Table of Contents

Installation

pip install -e .

Quick Start

from flask import Flask
from authlib import AuthManager

app = Flask(__name__)

auth = AuthManager(
    app=app,
    db_dsn="postgresql://user:pass@localhost/dbname",
    jwt_secret="your-secret-key",
    oauth_config={
        "google": {
            "client_id": "your-client-id",
            "client_secret": "your-client-secret"
        }
    }
)

@app.route("/protected")
@auth.require_auth(roles=["admin"])
def protected_route():
    return "Protected content"

@app.route("/public")
@auth.public_endpoint
def custom_public_route():
    return "Public content"

AuthManager's blueprint now registers a global error handler for AuthError and authenticates requests for all of its routes by default. Authenticated users are made available as flask.g.requesting_user. Only the login, OAuth, token refresh, registration and role listing endpoints are exempt from this check. Additional routes can be marked as public using the @auth.public_endpoint decorator or auth.add_public_endpoint("auth.some_endpoint").

Configuration

Required Parameters

  • app: Flask application instance
  • db_dsn: PostgreSQL connection string
  • jwt_secret: Secret key for JWT signing

Optional Parameters

  • oauth_config: Dictionary of OAuth provider configurations (see below)
  • token_expiry: JWT token expiry time in seconds (default: 3600)
  • refresh_token_expiry: Refresh token expiry time in seconds (default: 2592000)

Example oauth_config:

{
    "google": {
        "client_id": "...",
        "client_secret": "..."
    },
    "github": {
        "client_id": "...",
        "client_secret": "..."
    }
}

API Endpoints

Authentication

  • POST /api/v1/users/login - Login with username/password
    • Request: { "username": "string", "password": "string" }
    • Response: { "token": "jwt", "refresh_token": "jwt", "user": { ... } }
  • POST /api/v1/users/login/oauth - Get OAuth redirect URL
    • Request: { "provider": "google|github|..." }
    • Response: { "redirect_url": "string" }
  • GET /api/v1/users/login/oauth2callback - OAuth callback
    • Query Params: code, state, provider
    • Response: { "token": "jwt", "refresh_token": "jwt", "user": { ... } }
  • POST /api/v1/users/token-refresh - Refresh JWT token
    • Request: { "refresh_token": "jwt" }
    • Response: { "token": "jwt", "refresh_token": "jwt" }

User Management

  • POST /api/v1/users/register - Register new user
    • Request: { "username": "string", "password": "string", "email": "string", ... }
    • Response: { "user": { ... }, "token": "jwt", "refresh_token": "jwt" }
  • GET /api/v1/users/login/profile - Get user profile
    • Auth: Bearer JWT
    • Response: { "user": { ... } }
  • GET /api/v1/users/roles - Get available roles
    • Response: [ "admin", "user", ... ]

API Tokens

  • POST /api/v1/users/{user}/api-tokens - Create API token
    • Request: { "name": "string", "scopes": [ ... ] }
    • Response: { "token": "string", "id": "uuid", ... }
  • GET /api/v1/users/{user}/api-tokens - List API tokens
    • Response: [ { "id": "uuid", "name": "string", ... } ]
  • DELETE /api/v1/users/{user}/api-tokens/{token_id} - Delete API token
    • Response: { "success": true }

Authentication Flow

  1. Login:
    • User submits credentials to /api/v1/users/login.
    • Receives JWT and refresh token.
  2. Token Refresh:
    • Use /api/v1/users/token-refresh with refresh token to get new JWT.
  3. OAuth:
    • Get redirect URL from /api/v1/users/login/oauth.
    • Complete OAuth flow via /api/v1/users/login/oauth2callback.
  4. Protected Routes:
    • All routes inside the provided blueprint are authenticated by default. The authenticated user can be accessed via g.requesting_user. Use @auth.require_auth() to protect custom routes in your application.

User Object

The user object returned by the API typically includes:

{
  "id": "uuid",
  "username": "string",
  "email": "string",
  "roles": ["user", "admin"],
  "created_at": "timestamp",
  "last_login": "timestamp"
}

Token Management

  • JWT: Used for authenticating API requests. Include in Authorization: Bearer <token> header.
  • Refresh Token: Used to obtain new JWTs without re-authenticating.
  • API Tokens: Long-lived tokens for programmatic access, managed per user.

Development

Setup

  1. Clone the repository
  2. Create virtual environment:
python -m venv venv
venv\Scripts\activate
  1. Install dependencies:
pip install -e ".[dev]"

Database Setup

createdb authlib
python -m authlib.cli db init

Running Tests

pytest

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

the37lab_authlib-0.1.1750844514.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

the37lab_authlib-0.1.1750844514-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file the37lab_authlib-0.1.1750844514.tar.gz.

File metadata

File hashes

Hashes for the37lab_authlib-0.1.1750844514.tar.gz
Algorithm Hash digest
SHA256 3902a6f727d28c7c4e492eb32f41e8aedd4c4d7c2d95f13b18dded70924c5593
MD5 a952df37700bf5d53cd5e367c57c3ee0
BLAKE2b-256 d5b476b89c852277770ecd4353db79e45fac545f07073bfe96b42368e1373296

See more details on using hashes here.

File details

Details for the file the37lab_authlib-0.1.1750844514-py3-none-any.whl.

File metadata

File hashes

Hashes for the37lab_authlib-0.1.1750844514-py3-none-any.whl
Algorithm Hash digest
SHA256 370b2e9f99d62ff89d3bd73f2f7a94bee1edfdf2450c9eec439bac380cb7ae6e
MD5 43b47b83b65cd81930e7d7ecb3785ca8
BLAKE2b-256 8b80d4ed5ca4510b9fe91e56702f9d9467dda98875a1b4e83ce3c8b06c9726db

See more details on using hashes here.

Supported by

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