Skip to main content

FastAPI integration for Refine simple-rest data provider

Project description

fastapi-refine

PyPI version Python Versions License: MIT

FastAPI integration for Refine simple-rest data provider. Build type-safe, production-ready REST APIs that work seamlessly with Refine's data provider conventions.

Features

  • Automatic Query Parsing: Parse Refine's filter, sort, and pagination parameters out-of-the-box
  • Type-Safe: Full type hints and mypy strict mode compliance
  • SQLModel Integration: First-class support for SQLModel/SQLAlchemy ORM
  • CRUD Router Factory: Generate complete CRUD endpoints with one class
  • Flexible Filtering: Support for eq, ne, gte, lte, like operators and full-text search
  • Hook System: Inject custom logic before/after operations (permissions, validation, etc.)
  • Refine Error Integration: Optional app-level error normalization via configure_refine(app)
  • Production Ready: Built with FastAPI best practices

Installation

pip install fastapi-refine

Upgrade Notes for 0.3.0

If you are upgrading from 0.2.x, these are the user-visible changes to account for:

  • RefineCRUDRouter(..., current_user_dep=...) is now RefineCRUDRouter(..., current_principal_dep=...).
  • HookContext.current_user is now HookContext.current_principal.
  • DELETE success returns the deleted public record snapshot, matching Refine's expected mutation response contract.
  • Unified Refine error envelopes are opt-in via configure_refine(app).
  • Legacy skip/limit query parameters still return 422 in 0.3.x.

Quick Start

Basic Usage with Manual Endpoints

from typing import Annotated

from fastapi import APIRouter, Depends
from sqlmodel import Session, select
from fastapi_refine import (
    FilterConfig,
    FilterField,
    SortConfig,
    RefineQuery,
    RefineResponse,
    refine_query,
    refine_response,
)
from fastapi_refine.core import parse_bool

from .models import Item, ItemPublic
from .database import get_session

router = APIRouter(prefix="/items", tags=["items"])

SessionDep = Annotated[Session, Depends(get_session)]

# Configure which fields can be filtered and sorted
filter_config = FilterConfig(
    fields={
        "id": FilterField(Item.id, str),
        "title": FilterField(Item.title, str),
        "is_active": FilterField(Item.is_active, parse_bool),
    },
    search_fields=[Item.title, Item.description],  # Full-text search fields
)

sort_config = SortConfig(
    fields={
        "id": Item.id,
        "title": Item.title,
        "created_at": Item.created_at,
    }
)

@router.get("/", response_model=list[ItemPublic])
def read_items(
    session: SessionDep,
    refine_resp: Annotated[RefineResponse, Depends(refine_response())],
    query: Annotated[RefineQuery, Depends(refine_query(Item, filter_config, sort_config))],
) -> list[ItemPublic]:
    # query.conditions contains parsed WHERE clauses
    # query.order_by contains ORDER BY clauses
    # query.offset and query.limit are ready for pagination

    items = session.exec(
        select(Item)
        .where(*query.conditions)
        .order_by(*query.order_by)
        .offset(query.offset)
        .limit(query.limit)
    ).all()

    # Set x-total-count header for Refine pagination
    total = query.get_count(session, query.conditions)
    refine_resp.set_total_count(total)

    return items

Automatic CRUD Router (Recommended)

Generate all CRUD endpoints automatically:

from fastapi import APIRouter, FastAPI
from fastapi_refine import (
    RefineCRUDRouter,
    FilterConfig,
    FilterField,
    SortConfig,
    configure_refine,
    refine_error_responses,
)
from fastapi_refine.core import parse_bool
from .models import Item, ItemCreate, ItemUpdate, ItemPublic
from .database import get_session

app = FastAPI()
# Register any numeric status handlers before calling configure_refine(app).
configure_refine(app)

api_router = APIRouter(responses=refine_error_responses())

# Create router with full CRUD operations
crud_router = RefineCRUDRouter(
    model=Item,
    prefix="/items",
    create_schema=ItemCreate,
    update_schema=ItemUpdate,
    public_schema=ItemPublic,
    session_dep=get_session,
    filter_config=FilterConfig(
        fields={
            "title": FilterField(Item.title, str),
            "is_active": FilterField(Item.is_active, parse_bool),
        },
        search_fields=[Item.title],
    ),
    sort_config=SortConfig(
        fields={"title": Item.title, "created_at": Item.created_at}
    ),
    tags=["items"],
)

api_router.include_router(crud_router.router)
app.include_router(api_router)

This automatically creates:

  • GET /items/ - List with filtering, sorting, pagination
  • GET /items/{id} - Get single item
  • POST /items/ - Create item
  • PATCH /items/{id} - Update item
  • DELETE /items/{id} - Delete item

Advanced Usage

Custom Hooks for Permissions

from fastapi import Depends, HTTPException
from fastapi_refine import (
    RefineHooks,
    HookContext,
    RefineCRUDRouter,
)

def before_query(context: HookContext, conditions: list) -> list:
    """Filter items to only show user's own items"""
    if context.current_principal:
        conditions.append(context.model.owner_id == context.current_principal.id)
    return conditions

def before_delete(context: HookContext, item) -> None:
    """Only allow deleting own items"""
    if item.owner_id != context.current_principal.id:
        raise HTTPException(status_code=403, detail="Not authorized")

def before_create(context: HookContext, item_in) -> dict | None:
    """Inject server-side fields during create"""
    if context.current_principal:
        return {"owner_id": context.current_principal.id}
    return None

def before_update(context: HookContext, item, item_in) -> dict | None:
    """Override server-controlled fields during update"""
    if context.current_principal:
        return {"owner_id": context.current_principal.id}
    return None

hooks = RefineHooks(
    before_query=before_query,
    before_create=before_create,
    before_update=before_update,
    before_delete=before_delete,
)

crud_router = RefineCRUDRouter(
    model=Item,
    hooks=hooks,
    current_principal_dep=get_current_user,
    # ... other config
)

Error Formatting

Install the app-level Refine integration to normalize FastAPI and package errors into Refine-friendly JSON responses:

from fastapi import APIRouter, FastAPI
from fastapi_refine import configure_refine, refine_error_responses

app = FastAPI()
# Register numeric status handlers such as 404/409/422 before configure_refine(app).
configure_refine(app)

# Optional: make OpenAPI match the runtime error envelope.
api_router = APIRouter(responses=refine_error_responses())

configure_refine(app) is a convenience helper with installation-time snapshot semantics:

  • It ensures RefineHTTPException has a dedicated handler, preserving any existing app-registered RefineHTTPException handler.
  • It wraps numeric status handlers that already exist when called, so RefineHTTPException(status_code=...) still uses the active RefineHTTPException handler for those statuses.
  • It installs StarletteHTTPException and RequestValidationError handlers only when those slots are still using FastAPI's defaults.
  • If the middleware stack was already built, it rebuilds the current stack so the new handlers take effect immediately.
  • It does not track numeric status handlers added later.

Package-generated router/query/hook errors are raised as RefineHTTPException and are handled by fastapi-refine before generic HTTPException or StarletteHTTPException handlers. This keeps the Refine wire shape stable, but it also means your existing generic HTTP exception handlers will not see those package-generated errors.

When installed, the normalized response envelope uses:

  • message
  • statusCode
  • optional errors
  • optional code when your app passes an explicit business code
  • optional top-level detail when the original HTTPException.detail was any non-string structured value

For RefineHTTPException, message stays the primary Refine-facing summary. If you pass a more specific detail_message, it is preserved as top-level detail when the handler formats the response. If you pass code, it is preserved as an application business code. fastapi-refine does not synthesize code from the HTTP status because Refine's HttpError contract only requires message, statusCode, and optional field-level errors.

Top-level errors are produced only for package-generated RefineHTTPException values and RequestValidationError. Custom structured HTTPException.detail payloads are preserved under detail rather than being auto-promoted to errors.

refine_error_responses() returns reusable FastAPI responses metadata using the OpenAPI-visible RefineErrorResponse schema. Attach it to an APIRouter or individual route when you want generated clients to see the same error envelope that runtime handlers return:

from fastapi import APIRouter
from fastapi_refine import refine_error_responses

api_router = APIRouter(
    responses=refine_error_responses([400, 401, 403, 404, 409, 422, 503])
)

If your app needs logging, trace IDs, or extra headers on package-generated Refine errors, register a RefineHTTPException handler explicitly and delegate to the public handler. configure_refine(app) preserves that handler and numeric status wrappers continue to dispatch through it:

from fastapi_refine import RefineHTTPException, refine_http_exception_handler
from starlette.requests import Request

@app.exception_handler(RefineHTTPException)
async def app_refine_exception_handler(request: Request, exc: RefineHTTPException):
    response = await refine_http_exception_handler(request, exc)
    response.headers["x-trace-id"] = request.headers.get("x-trace-id", "missing")
    return response

If you want full explicit control instead of configure_refine(app), register the public handlers yourself:

from fastapi.exceptions import RequestValidationError
from starlette.exceptions import HTTPException as StarletteHTTPException
from fastapi_refine import (
    RefineHTTPException,
    refine_http_exception_handler,
    refine_validation_exception_handler,
)

app.add_exception_handler(RefineHTTPException, refine_http_exception_handler)
app.add_exception_handler(StarletteHTTPException, refine_http_exception_handler)
app.add_exception_handler(RequestValidationError, refine_validation_exception_handler)

Pagination Configuration

from fastapi_refine import PaginationConfig, RefineCRUDRouter

pagination_config = PaginationConfig(
    default_start=0,
    default_page_size=50,
    max_page_size=500,  # Prevent excessive queries
)

crud_router = RefineCRUDRouter(
    pagination_config=pagination_config,
    # ... other config
)

Supported Query Parameters

The library parses Refine simple-rest query parameters:

Filtering

  • field=value - Exact match (eq)
  • field_ne=value - Not equal
  • field_gte=value - Greater than or equal
  • field_lte=value - Less than or equal
  • field_like=value - Contains (case-insensitive)
  • q=search - Full-text search across configured fields

Sorting

  • _sort=field1,field2 - Sort by multiple fields
  • _order=asc,desc - Sort order for each field

Pagination

  • Range-based: _start=0&_end=20
  • Legacy skip/limit is currently rejected with 422 (planned to be silently ignored after 0.5.x).

Example Query

GET /items?title_like=hello&is_active=true&_sort=created_at&_order=desc&_start=0&_end=10

Type Converters

Built-in converters for common types:

from fastapi_refine import FilterConfig, FilterField
from fastapi_refine.core import parse_bool, parse_uuid

filter_config = FilterConfig(
    fields={
        "id": FilterField(Item.id, parse_uuid),
        "is_active": FilterField(Item.is_active, parse_bool),
        "price": FilterField(Item.price, float),
        "quantity": FilterField(Item.quantity, int),
    }
)

Requirements

  • Python 3.10+
  • FastAPI 0.114.2+
  • SQLModel 0.0.21+

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see LICENSE file for details.

Links

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

fastapi_refine-0.4.0.tar.gz (32.5 kB view details)

Uploaded Source

Built Distribution

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

fastapi_refine-0.4.0-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_refine-0.4.0.tar.gz.

File metadata

  • Download URL: fastapi_refine-0.4.0.tar.gz
  • Upload date:
  • Size: 32.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastapi_refine-0.4.0.tar.gz
Algorithm Hash digest
SHA256 42d743c457cbeec51c7ef6f953670cb540937c60585d0c9ea63152a86e1cf3ff
MD5 ba171a6ebeedde4a0e48078b6eb41b20
BLAKE2b-256 9f23e2651f8b2670734f445c643e805115fcd0772fcf8486b6e33f86f63b8bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_refine-0.4.0.tar.gz:

Publisher: publish.yml on koch3092/fastapi-refine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastapi_refine-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: fastapi_refine-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 23.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fastapi_refine-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6f19923d40aa9acd87d57fc06da6be5c69dec5c0bae4064887b5ee507d390eeb
MD5 369f08a5014f2303e075080f93cff782
BLAKE2b-256 50b74dd3fceb930b6cc2792fbf38de7c2bd2c0d74484eec71817447014b7674b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_refine-0.4.0-py3-none-any.whl:

Publisher: publish.yml on koch3092/fastapi-refine

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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