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) -> FoundUserOutput:
    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",
        )
    return FoundUserOutput(name=user.name)

Testing

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

    output = await usecase.execute()
    assert 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.6.tar.gz (35.8 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.6-py3-none-any.whl (35.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: macss_modular_api-0.4.6.tar.gz
  • Upload date:
  • Size: 35.8 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.6.tar.gz
Algorithm Hash digest
SHA256 cee28a605c98deccb8f82c8a387763c6a14c4f4644669f7f177756eba3ef9a7f
MD5 dc9f17ebbff19f6d567859c1953d2f84
BLAKE2b-256 d1aa6e41b40eb222b5a1000fb6f3124bcbf051edf6474a3458167d30b1c09f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for macss_modular_api-0.4.6-py3-none-any.whl
Algorithm Hash digest
SHA256 bebac521cae1b16e6f86660a2903085e50d7fecb7a9bc2a4e4fcb4ff349789b9
MD5 76a775988eea363319c8fee80c687dd7
BLAKE2b-256 00b83ff54b82106bd31b36a183344d42fed28e917bbfe4ee387e6641a428ed59

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