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 to_json() and to_schema() for automatic OpenAPI
  • 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.1.tar.gz (30.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.1-py3-none-any.whl (33.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: macss_modular_api-0.4.1.tar.gz
  • Upload date:
  • Size: 30.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.1.tar.gz
Algorithm Hash digest
SHA256 ca8821a2db645f228174e13d54afac4efc3f42a4b4c44368755674d7eb072365
MD5 854dd3cb0d5f1f62f96c116c2e1a410d
BLAKE2b-256 28e7dcc6e46880bc903483a4985fa48be7681a84ae282da4fa992407a894a94a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for macss_modular_api-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 60d6c2b9a377fc71a8c25719b0b7b6994c6bbf9076231d0cde5807c0c9d63768
MD5 653372b037c396eded7db061b963b34b
BLAKE2b-256 b9653ae3a48391b9a5aac00cb8e58b14d1389f5ce4e88581fc6e7e37445d4f38

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