Skip to main content

Use-case-centric toolkit for building modular APIs with Starlette. Define UseCase classes (input → validate → execute → output), connect them to HTTP routes, and expose OpenAPI documentation automatically.

Project description

modular-api

Use-case-centric toolkit for building modular APIs with Starlette.
Define UseCase classes (input → validate → execute → output), connect them to HTTP routes, and get automatic OpenAPI documentation.

Also available in Dart: modular_api · TypeScript: @macss/modular-api


Quick start

from modular_api import ModularApi, ModuleBuilder

# ─── Module builder (separate file in real projects) ──────────
def build_greetings_module(m: ModuleBuilder) -> None:
    m.usecase("hello", HelloWorld)

# ─── Server ───────────────────────────────────────────────────
api = ModularApi(base_path="/api")

api.module("greetings", build_greetings_module)

api.serve(port=8080)
curl -X POST http://localhost:8080/api/greetings/hello \
  -H "Content-Type: application/json" \
  -d '{"name":"World"}'
{ "message": "Hello, World!" }

Docshttp://localhost:8080/docs
Healthhttp://localhost:8080/health
OpenAPI JSONhttp://localhost:8080/openapi.json (also /openapi.yaml)
Metricshttp://localhost:8080/metrics (opt-in)

See example/example.py for the full implementation including Input, Output, UseCase with validate(), and the builder.


Features

  • UseCase[I, O] — pure business logic, no HTTP concerns
  • Input / Output — DTOs with automatic OpenAPI schema generation via Pydantic Field()
  • Output.status_code — custom HTTP status codes per response
  • UseCaseException — structured error handling (status_code, message, error_code, details)
  • ModularApi + ModuleBuilder — module registration and routing
  • Constructor-based unit testing with fake dependency injection
  • cors_middleware — built-in CORS support
  • Scalar docs at /docs — auto-generated from registered use cases
  • OpenAPI spec at /openapi.json and /openapi.yaml — raw spec download
  • Health check at GET /healthIETF Health Check Response Format
  • Prometheus metrics at GET /metricsPrometheus exposition format
  • Structured JSON logging — Loki/Grafana compatible, request-scoped with trace_id
  • All endpoints default to POST (configurable per use case)
  • Full type annotations with py.typed marker (PEP 561)

Installation

pip install modular-api

With Uvicorn for api.serve():

pip install modular-api[serve]

Error handling

async def execute(self) -> None:
    user = await repository.find_by_id(self.input.user_id)
    if not user:
        raise UseCaseException(
            status_code=404,
            message="User not found",
            error_code="USER_NOT_FOUND",
        )
    self._output = FoundUserOutput(name=user.name)

Testing

def test_hello_world():
    usecase = HelloWorld(HelloInput(name="World"))
    error = usecase.validate()
    assert error is None

    await usecase.execute()
    assert usecase.output.message == "Hello, World!"

See doc/testing_guide.md for the full testing guide.


License

MIT — see LICENSE.

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

macss_modular_api-0.4.3.tar.gz (35.5 kB view details)

Uploaded Source

Built Distribution

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

macss_modular_api-0.4.3-py3-none-any.whl (36.4 kB view details)

Uploaded Python 3

File details

Details for the file macss_modular_api-0.4.3.tar.gz.

File metadata

  • Download URL: macss_modular_api-0.4.3.tar.gz
  • Upload date:
  • Size: 35.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.0

File hashes

Hashes for macss_modular_api-0.4.3.tar.gz
Algorithm Hash digest
SHA256 e59afd2eb96a05576bbbbb8b7d3b8e367ac2708a489fe3922cc7f2551a74e500
MD5 a520f002a95477e08cc59d13195d1231
BLAKE2b-256 8e355308c50c312e0ac17968280466d4f01c8f4a7b6ee6061c419926888ba021

See more details on using hashes here.

File details

Details for the file macss_modular_api-0.4.3-py3-none-any.whl.

File metadata

File hashes

Hashes for macss_modular_api-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 59eaa34841199542ebad3ae7e7b47013e859ebae8b88d00d3d507fa1d7ccd92b
MD5 03143ac06f1f50d015f1cc8a52ca34e4
BLAKE2b-256 1dfcea9be03a5bd1eba43479168cdafed2b8b8fd4d6b0d08e57ff44212974f7b

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