Fast and easy Redis integration for FastAPI applications.
Project description
FastAPI Redis Utils
Fast and easy Redis integration for FastAPI applications.
This library provides everything you need to quickly integrate Redis with FastAPI:
- RedisManager - Async Redis manager with connection pooling
- FastAPI Dependencies - Ready-to-use dependencies for Redis injection into your endpoints
- BaseRepository - CRUD operations with Pydantic models for rapid development
Perfect for caching, session storage, and data persistence in FastAPI applications.
Features
- FastAPI Integration - Ready-to-use dependencies for Redis injection
- Async Support - Full async/await capabilities
- Connection Management - Efficient connection pooling
- Monitoring - Built-in connection health checks
- Type Hints - Complete typing support
- Pydantic Models - Base repository with Pydantic support
Documentation
- Usage Guide
- FastAPI Integration Example - Complete FastAPI application with Redis integration
Installation
From PyPI
uv add fastapi-redis-utils
From Git repository
uv add git+https://github.com/serafinovsky/fastapi-redis-utils.git
Quick Start
FastAPI Integration
from contextlib import asynccontextmanager
from fastapi import FastAPI, Depends
from fastapi_redis_utils import RedisManager, create_redis_client_dependencies
import redis.asyncio as redis
# Create Redis manager
redis_manager = RedisManager(
dsn="redis://localhost:6379"
)
# Create FastAPI dependency
get_redis_client = create_redis_client_dependencies(redis_manager)
@asynccontextmanager
async def lifespan(app: FastAPI):
await redis_manager.connect()
try:
yield
finally:
await redis_manager.close()
app = FastAPI(lifespan=lifespan)
@app.get("/cache/{key}")
async def get_cached_data(key: str, redis_client: redis.Redis = Depends(get_redis_client)):
"""Get data from cache"""
value = await redis_client.get(key)
return {"key": key, "value": value}
@app.post("/cache/{key}")
async def set_cached_data(
key: str,
value: str,
redis_client: redis.Redis = Depends(get_redis_client)
):
"""Save data to cache"""
await redis_client.set(key, value)
return {"key": key, "value": value, "status": "saved"}
@app.get("/health")
async def health_check():
"""Check Redis connection status"""
is_healthy = await redis_manager.health_check()
return {"redis_healthy": is_healthy}
Using BaseRepository with Separate Create and Update Schemas
import uuid
from contextlib import asynccontextmanager
from uuid import UUID
from fastapi import HTTPException, status
from fastapi_redis_utils import BaseRepository, BaseResultModel
from fastapi import FastAPI
from fastapi_redis_utils import RedisManager
from pydantic import BaseModel
# Create Redis manager
redis_manager = RedisManager(
dsn="redis://localhost:6379"
)
@asynccontextmanager
async def lifespan(app: FastAPI):
await redis_manager.connect()
try:
yield
finally:
await redis_manager.close()
app = FastAPI(lifespan=lifespan)
class CreateDemoSchema(BaseModel):
field1: str
field2: str
class UpdateDemoSchema(BaseModel):
field1: str | None = None
field2: str | None = None
class DemoSchema(BaseResultModel):
key: str | None = None
field1: str
field2: str
def set_key(self, key: str) -> None:
self.key = key
class DemoRepository(BaseRepository[CreateDemoSchema, UpdateDemoSchema, DemoSchema]):
pass
demo_crud = DemoRepository(redis_manager, CreateDemoSchema, UpdateDemoSchema, DemoSchema)
@app.post("/repo/", response_model=DemoSchema, status_code=status.HTTP_201_CREATED)
async def create_demo(demo_model: CreateDemoSchema) -> DemoSchema:
"""Create a new demo record."""
demo_id = str(uuid.uuid4())
return await demo_crud.create(demo_id, demo_model)
@app.get("/repo/{demo_id}", response_model=DemoSchema)
async def get_demo(demo_id: UUID) -> DemoSchema:
"""Get a demo record by ID."""
demo = await demo_crud.get(str(demo_id))
if demo is None:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail=f"Demo record with ID '{demo_id}' not found",
)
return demo
@app.get("/repo/", response_model=list[DemoSchema])
async def list_demos(limit: int = 100) -> list[DemoSchema]:
"""List all demo records"""
return await demo_crud.list(limit=limit)
@app.put("/repo/{demo_id}", response_model=DemoSchema)
async def update_demo(demo_id: UUID, demo_update: UpdateDemoSchema) -> DemoSchema:
"""Update a demo record."""
updated_demo = await demo_crud.update(str(demo_id), demo_update)
if updated_demo is None:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail=f"Demo record with ID '{demo_id}' not found",
)
return updated_demo
@app.delete("/repo/{demo_id}")
async def delete_demo(demo_id: UUID) -> dict[str, UUID]:
"""Delete a demo record."""
deleted = await demo_crud.delete(str(demo_id))
if not deleted:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail=f"Demo record with ID '{demo_id}' not found",
)
return {"id": demo_id}
@app.get("/repo/{demo_id}/exists")
async def check_demo_exists(demo_id: UUID) -> dict[str, UUID | bool]:
"""Check if a demo record exists."""
exists = await demo_crud.exists(str(demo_id))
return {"id": demo_id, "exists": exists}
Configuration
RedisManager Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
dsn |
str | - |
DSN for Redis connection |
max_connections |
int | 20 |
Maximum number of connections in pool |
socket_connect_timeout |
int | 5 |
Socket connection timeout (seconds) |
socket_timeout |
int | 5 |
Socket operation timeout (seconds) |
API Reference
RedisManager
Main class for managing Redis connections.
Methods
connect()- Connect to Redisclose()- Close connection and cleanup resourceshealth_check()- Check connection statusget_client()- Get Redis client
create_redis_client_dependencies
Creates FastAPI dependency for getting Redis client.
BaseRepository
Base repository class for working with Pydantic models in Redis. Supports separate schemas for create, update, and result operations with partial updates.
Generic Parameters
CreateSchemaType- Pydantic model for create operationsUpdateSchemaType- Pydantic model for update operations (all fields optional)ResultSchemaType- Pydantic model for result operations (must inherit from BaseResultModel)
Core Methods
create(key, data: CreateSchemaType, ttl=None)- Create recordget(key)- Get record (returns ResultSchemaType)update(key, data: UpdateSchemaType, ttl=None)- Update record with partial update (only set fields)delete(key)- Delete recordexists(key)- Check record existencelist(pattern="*", limit=None)- Get list of recordscount(pattern="*")- Count recordsset_ttl(key, ttl)- Set TTLget_ttl(key)- Get TTLclear(pattern="*")- Clear records
Partial Update Feature
The update method performs partial updates - only fields that are set in the update schema will be modified. Fields with None values are ignored.
Repository initiated with serafinovsky/cookiecutter-python-package
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
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_redis_utils-2.0.7.tar.gz.
File metadata
- Download URL: fastapi_redis_utils-2.0.7.tar.gz
- Upload date:
- Size: 90.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f607092757747cfa940fc410a6a7c3bef0afbc6ca5d24c5a596305fccbf37feb
|
|
| MD5 |
7646693845b090f9e3202e8ff82e7ee1
|
|
| BLAKE2b-256 |
be90d5b5a29d960180a33e39c416aa77461822fe20037e8798b1c324edbb6846
|
Provenance
The following attestation bundles were made for fastapi_redis_utils-2.0.7.tar.gz:
Publisher:
publish.yml on serafinovsky/fastapi-redis-utils
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapi_redis_utils-2.0.7.tar.gz -
Subject digest:
f607092757747cfa940fc410a6a7c3bef0afbc6ca5d24c5a596305fccbf37feb - Sigstore transparency entry: 712603928
- Sigstore integration time:
-
Permalink:
serafinovsky/fastapi-redis-utils@7cd01ab80803c6a6a14dcdec3dd9fd2edc6e0a42 -
Branch / Tag:
refs/tags/v2.0.7 - Owner: https://github.com/serafinovsky
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7cd01ab80803c6a6a14dcdec3dd9fd2edc6e0a42 -
Trigger Event:
release
-
Statement type:
File details
Details for the file fastapi_redis_utils-2.0.7-py3-none-any.whl.
File metadata
- Download URL: fastapi_redis_utils-2.0.7-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c51488490cc4ba5b2fe693f6f46c3ff3584935cd1efccf741519c5d74e255d5
|
|
| MD5 |
22c262b4307f2cdac547993cf0d116c7
|
|
| BLAKE2b-256 |
98869d30d49e7b35237cf179016b0c62c2ae5d10bc61efdeee1f16606a84a0b7
|
Provenance
The following attestation bundles were made for fastapi_redis_utils-2.0.7-py3-none-any.whl:
Publisher:
publish.yml on serafinovsky/fastapi-redis-utils
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fastapi_redis_utils-2.0.7-py3-none-any.whl -
Subject digest:
8c51488490cc4ba5b2fe693f6f46c3ff3584935cd1efccf741519c5d74e255d5 - Sigstore transparency entry: 712603929
- Sigstore integration time:
-
Permalink:
serafinovsky/fastapi-redis-utils@7cd01ab80803c6a6a14dcdec3dd9fd2edc6e0a42 -
Branch / Tag:
refs/tags/v2.0.7 - Owner: https://github.com/serafinovsky
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@7cd01ab80803c6a6a14dcdec3dd9fd2edc6e0a42 -
Trigger Event:
release
-
Statement type: