A simple and flexible Basic Authentication middleware for FastAPI applications
Project description
FastAPI Basic Auth
A simple and flexible Basic Authentication middleware for FastAPI applications.
Installation
pip install fastapi-basic-auth
Usage
Basic Usage with Dictionary
from fastapi import FastAPI
from fastapi_basic_auth import FastAPIBasicAuthMiddleware
app = FastAPI()
# Add middleware
auth = FastAPIBasicAuthMiddleware(
urls=["/protected"],
users={"admin": "password"}
)
app.add_middleware(auth)
@app.get("/protected")
def protected():
return {"message": "This route is protected"}
Using BasicAuthUser Model
You can also use the BasicAuthUser model directly for more control and validation:
from fastapi import FastAPI
from fastapi_basic_auth import FastAPIBasicAuthMiddleware, BasicAuthUser
app = FastAPI()
# Create users using BasicAuthUser model
users = [
BasicAuthUser(username="admin", password="password123"),
BasicAuthUser(username="user1", password="userpass")
]
# Add middleware with BasicAuthUser list
auth = FastAPIBasicAuthMiddleware(
urls=["/protected", "/admin"], # Protect multiple routes
users=users
)
app.add_middleware(auth)
@app.get("/protected")
def protected():
return {"message": "This route is protected"}
@app.get("/admin")
def admin():
return {"message": "Admin route is protected"}
Protecting FastAPI Documentation
You can protect your FastAPI's Swagger UI and ReDoc documentation by including their URLs in the protected routes:
from fastapi import FastAPI
from fastapi_basic_auth import FastAPIBasicAuthMiddleware
app = FastAPI()
# Add middleware to protect docs
auth = FastAPIBasicAuthMiddleware(
urls=[
"/docs", # Swagger UI
"/redoc", # ReDoc
"/openapi.json", # OpenAPI schema
"/protected" # Your protected routes
],
users={"admin": "password"}
)
app.add_middleware(auth)
@app.get("/protected")
def protected():
return {"message": "This route is protected"}
@app.get("/public")
def public():
return {"message": "This route is public"}
This setup will:
- Require authentication to access Swagger UI at
/docs - Require authentication to access ReDoc at
/redoc - Protect the OpenAPI schema at
/openapi.json - Allow public access to non-protected routes
- Maintain the interactive features of Swagger UI after authentication
The BasicAuthUser model includes built-in validation:
- Username must be alphanumeric (can include underscores and hyphens)
- Both username and password are required fields
Features
- Protect specific routes with Basic Authentication
- Support for multiple users
- Flexible configuration
- Use simple dictionary for quick setup
- Use BasicAuthUser model for additional validation
- Secure password comparison
- FastAPI docs protection
- Swagger UI (/docs)
- ReDoc (/redoc)
- OpenAPI schema (/openapi.json)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fastapi_basic_auth-0.1.5.tar.gz.
File metadata
- Download URL: fastapi_basic_auth-0.1.5.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.5 Darwin/24.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59a5b169d2084da1ce620a3523f70eecb9f6bc67ea1232b1771b026e720ca5bb
|
|
| MD5 |
01e5ab818b41108ad28989b22b6b74d8
|
|
| BLAKE2b-256 |
d70d8e27278ab19f78d04c427240c26cd1094a5cf0b0ac1203f86e954e65430c
|
File details
Details for the file fastapi_basic_auth-0.1.5-py3-none-any.whl.
File metadata
- Download URL: fastapi_basic_auth-0.1.5-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.5 Darwin/24.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2b3000fa198c8363239ce15e3dbde501603d42c3800ecd76f8318a8ccdad4f2
|
|
| MD5 |
cb72905c2a9706088c4f9840d54e7acd
|
|
| BLAKE2b-256 |
5ff6bb3ac1090b181087cfa03cb56696215382d33e7a57ef8827b85ebe6062be
|