Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6bafa435f1 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -38,3 +38,4 @@ Thumbs.db
|
|||||||
*.swo
|
*.swo
|
||||||
*~
|
*~
|
||||||
*.tmp
|
*.tmp
|
||||||
|
site
|
||||||
|
|||||||
10
docforge.nav.yml
Normal file
10
docforge.nav.yml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
home: openapi_first/index.md
|
||||||
|
groups:
|
||||||
|
Application Bootstrap:
|
||||||
|
- openapi_first/app.md
|
||||||
|
- openapi_first/binder.md
|
||||||
|
Core Utilities:
|
||||||
|
- openapi_first/loader.md
|
||||||
|
- openapi_first/errors.md
|
||||||
|
OpenAPI Client:
|
||||||
|
- openapi_first/client.md
|
||||||
173
manage_docs.py
173
manage_docs.py
@@ -1,173 +0,0 @@
|
|||||||
"""
|
|
||||||
MkDocs documentation management CLI.
|
|
||||||
|
|
||||||
This script provides a proper CLI interface to:
|
|
||||||
- Generate MkDocs Markdown files with mkdocstrings directives
|
|
||||||
- Build the documentation site
|
|
||||||
- Serve the documentation site locally
|
|
||||||
|
|
||||||
All operations are performed by calling MkDocs as a Python library
|
|
||||||
(no shell command invocation).
|
|
||||||
|
|
||||||
Requirements:
|
|
||||||
- mkdocs
|
|
||||||
- mkdocs-material
|
|
||||||
- mkdocstrings[python]
|
|
||||||
|
|
||||||
Usage:
|
|
||||||
python manage_docs.py generate
|
|
||||||
python manage_docs.py build
|
|
||||||
python manage_docs.py serve
|
|
||||||
|
|
||||||
Optional flags:
|
|
||||||
--docs-dir PATH Path to docs directory (default: ./docs)
|
|
||||||
--package-root NAME Root Python package name (default: mail_intake)
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import argparse
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from mkdocs.commands import build as mkdocs_build
|
|
||||||
from mkdocs.commands import serve as mkdocs_serve
|
|
||||||
from mkdocs.config import load_config
|
|
||||||
|
|
||||||
|
|
||||||
PROJECT_ROOT = Path(__file__).resolve().parent
|
|
||||||
DEFAULT_DOCS_DIR = PROJECT_ROOT / "docs"
|
|
||||||
DEFAULT_PACKAGE_ROOT = "openapi_first"
|
|
||||||
MKDOCS_YML = PROJECT_ROOT / "mkdocs.yml"
|
|
||||||
|
|
||||||
|
|
||||||
def generate_docs_from_nav(
|
|
||||||
project_root: Path,
|
|
||||||
docs_root: Path,
|
|
||||||
package_root: str,
|
|
||||||
) -> None:
|
|
||||||
"""
|
|
||||||
Create and populate MkDocs Markdown files with mkdocstrings directives.
|
|
||||||
|
|
||||||
This function:
|
|
||||||
- Walks the Python package structure
|
|
||||||
- Mirrors it under the docs directory
|
|
||||||
- Creates missing .md files
|
|
||||||
- Creates index.md for packages (__init__.py)
|
|
||||||
- Overwrites content with ::: package.module
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
mail_intake/__init__.py -> docs/mail_intake/index.md
|
|
||||||
mail_intake/config.py -> docs/mail_intake/config.md
|
|
||||||
mail_intake/adapters/__init__.py -> docs/mail_intake/adapters/index.md
|
|
||||||
mail_intake/adapters/base.py -> docs/mail_intake/adapters/base.md
|
|
||||||
"""
|
|
||||||
|
|
||||||
package_dir = project_root / package_root
|
|
||||||
if not package_dir.exists():
|
|
||||||
raise FileNotFoundError(f"Package not found: {package_dir}")
|
|
||||||
|
|
||||||
docs_root.mkdir(parents=True, exist_ok=True)
|
|
||||||
|
|
||||||
# Collect all package directories (those containing __init__.py)
|
|
||||||
package_dirs: set[Path] = {
|
|
||||||
p.parent
|
|
||||||
for p in package_dir.rglob("__init__.py")
|
|
||||||
}
|
|
||||||
|
|
||||||
for pkg_dir in sorted(package_dirs):
|
|
||||||
rel_pkg = pkg_dir.relative_to(project_root)
|
|
||||||
module_base = ".".join(rel_pkg.parts)
|
|
||||||
|
|
||||||
# index.md for the package itself
|
|
||||||
index_md = docs_root / rel_pkg / "index.md"
|
|
||||||
index_md.parent.mkdir(parents=True, exist_ok=True)
|
|
||||||
|
|
||||||
title = pkg_dir.name.replace("_", " ").title()
|
|
||||||
index_md.write_text(
|
|
||||||
f"# {title}\n\n::: {module_base}\n",
|
|
||||||
encoding="utf-8",
|
|
||||||
)
|
|
||||||
|
|
||||||
# Document modules inside this package only
|
|
||||||
for py_file in pkg_dir.iterdir():
|
|
||||||
if (
|
|
||||||
py_file.suffix != ".py"
|
|
||||||
or py_file.name == "__init__.py"
|
|
||||||
):
|
|
||||||
continue
|
|
||||||
|
|
||||||
module_path = f"{module_base}.{py_file.stem}"
|
|
||||||
md_path = docs_root / rel_pkg / f"{py_file.stem}.md"
|
|
||||||
|
|
||||||
title = py_file.stem.replace("_", " ").title()
|
|
||||||
md_path.write_text(
|
|
||||||
f"# {title}\n\n::: {module_path}\n",
|
|
||||||
encoding="utf-8",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def load_mkdocs_config():
|
|
||||||
if not MKDOCS_YML.exists():
|
|
||||||
raise FileNotFoundError("mkdocs.yml not found at project root")
|
|
||||||
return load_config(str(MKDOCS_YML))
|
|
||||||
|
|
||||||
|
|
||||||
def cmd_generate(args: argparse.Namespace) -> None:
|
|
||||||
generate_docs_from_nav(
|
|
||||||
project_root=PROJECT_ROOT,
|
|
||||||
docs_root=args.docs_dir,
|
|
||||||
package_root=args.package_root,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def cmd_build(_: argparse.Namespace) -> None:
|
|
||||||
config = load_mkdocs_config()
|
|
||||||
mkdocs_build.build(config)
|
|
||||||
|
|
||||||
|
|
||||||
def cmd_serve(_: argparse.Namespace) -> None:
|
|
||||||
mkdocs_serve.serve(
|
|
||||||
config_file=str(MKDOCS_YML)
|
|
||||||
)
|
|
||||||
|
|
||||||
def main() -> None:
|
|
||||||
parser = argparse.ArgumentParser(
|
|
||||||
prog="manage_docs.py",
|
|
||||||
description="Manage MkDocs documentation for the project",
|
|
||||||
)
|
|
||||||
|
|
||||||
parser.add_argument(
|
|
||||||
"--docs-dir",
|
|
||||||
type=Path,
|
|
||||||
default=DEFAULT_DOCS_DIR,
|
|
||||||
help="Path to the docs directory",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"--package-root",
|
|
||||||
default=DEFAULT_PACKAGE_ROOT,
|
|
||||||
help="Root Python package name",
|
|
||||||
)
|
|
||||||
|
|
||||||
subparsers = parser.add_subparsers(dest="command", required=True)
|
|
||||||
|
|
||||||
subparsers.add_parser(
|
|
||||||
"generate",
|
|
||||||
help="Generate Markdown files with mkdocstrings directives",
|
|
||||||
).set_defaults(func=cmd_generate)
|
|
||||||
|
|
||||||
subparsers.add_parser(
|
|
||||||
"build",
|
|
||||||
help="Build the MkDocs site",
|
|
||||||
).set_defaults(func=cmd_build)
|
|
||||||
|
|
||||||
subparsers.add_parser(
|
|
||||||
"serve",
|
|
||||||
help="Serve the MkDocs site locally",
|
|
||||||
).set_defaults(func=cmd_serve)
|
|
||||||
|
|
||||||
args = parser.parse_args()
|
|
||||||
args.func(args)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main()
|
|
||||||
6
mcp_docs/index.json
Normal file
6
mcp_docs/index.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"project": "openapi_first",
|
||||||
|
"type": "docforge-model",
|
||||||
|
"modules_count": 22,
|
||||||
|
"source": "docforge"
|
||||||
|
}
|
||||||
53
mcp_docs/modules/openapi_first.app.json
Normal file
53
mcp_docs/modules/openapi_first.app.json
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.app",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.app",
|
||||||
|
"docstring": "openapi_first.app\n=========================\n\nOpenAPI-first application bootstrap for FastAPI.\n\nThis module provides `OpenAPIFirstApp`, a thin but strict abstraction\nthat enforces OpenAPI as the single source of truth for a FastAPI service.\n\nCore principles\n---------------\n- The OpenAPI specification (JSON or YAML) defines the entire API surface.\n- Every operationId in the OpenAPI spec must have a corresponding\n Python handler function.\n- Handlers are plain Python callables (no FastAPI decorators).\n- FastAPI route registration is derived exclusively from the spec.\n- FastAPI's autogenerated OpenAPI schema is fully overridden.\n\nWhat this module does\n---------------------\n- Loads and validates an OpenAPI 3.x specification.\n- Dynamically binds HTTP routes to handler functions using operationId.\n- Registers routes with FastAPI at application startup.\n- Ensures runtime behavior matches the OpenAPI contract exactly.\n\nWhat this module does NOT do\n----------------------------\n- It does not generate OpenAPI specs.\n- It does not generate client code.\n- It does not introduce a new framework or lifecycle.\n- It does not alter FastAPI dependency injection semantics.\n\nIntended usage\n--------------\nThis module is intended for teams that want:\n\n- OpenAPI-first API development\n- Strong contract enforcement\n- Minimal FastAPI boilerplate\n- Predictable, CI-friendly failures for spec/implementation drift",
|
||||||
|
"objects": {
|
||||||
|
"FastAPI": {
|
||||||
|
"name": "FastAPI",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.app.FastAPI",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('FastAPI', 'fastapi.FastAPI')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"bind_routes": {
|
||||||
|
"name": "bind_routes",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.app.bind_routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('bind_routes', 'openapi_first.binder.bind_routes')>",
|
||||||
|
"docstring": "Bind OpenAPI operations to FastAPI routes.\n\nIterates through the OpenAPI specification paths and methods,\nresolves each operationId to a handler function, and registers\na corresponding APIRoute on the FastAPI application.\n\nParameters\n----------\napp : fastapi.FastAPI\n The FastAPI application instance to which routes will be added.\n\nspec : dict\n Parsed OpenAPI 3.x specification dictionary.\n\nroutes_module : module\n Python module containing handler functions. Each handler's\n name MUST exactly match an OpenAPI operationId.\n\nRaises\n------\nMissingOperationHandler\n If an operationId is missing from the spec or if no corresponding\n handler function exists in the routes module.\n\nBehavior guarantees\n-------------------\n- Route registration is deterministic and spec-driven.\n- No route decorators are required or supported.\n- Handler resolution errors surface at application startup."
|
||||||
|
},
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.app.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Class.signature of Class('OpenAPIFirstApp', 49, 118)>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.app.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Any": {
|
||||||
|
"name": "Any",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.app.Any",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Any', 'typing.Any')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
51
mcp_docs/modules/openapi_first.binder.json
Normal file
51
mcp_docs/modules/openapi_first.binder.json
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.binder",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.binder",
|
||||||
|
"docstring": "openapi_first.binder\n============================\n\nOpenAPI-driven route binding for FastAPI.\n\nThis module is responsible for translating an OpenAPI 3.x specification\ninto concrete FastAPI routes. It enforces a strict one-to-one mapping\nbetween OpenAPI operations and Python handler functions using operationId.\n\nCore responsibility\n-------------------\n- Read path + method definitions from an OpenAPI specification\n- Resolve each operationId to a Python callable\n- Register routes with FastAPI using APIRoute\n- Fail fast when contract violations are detected\n\nDesign constraints\n------------------\n- All routes MUST be declared in the OpenAPI specification.\n- All OpenAPI operations MUST define an operationId.\n- Every operationId MUST resolve to a handler function.\n- Handlers are plain Python callables (no decorators required).\n- No implicit route creation or inference is allowed.\n\nThis module intentionally does NOT:\n-------------------------------\n- Perform request or response validation\n- Generate Pydantic models\n- Modify FastAPI dependency injection\n- Interpret OpenAPI semantics beyond routing metadata\n\nThose concerns belong to other layers or tooling.",
|
||||||
|
"objects": {
|
||||||
|
"APIRoute": {
|
||||||
|
"name": "APIRoute",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.binder.APIRoute",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('APIRoute', 'fastapi.routing.APIRoute')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"MissingOperationHandler": {
|
||||||
|
"name": "MissingOperationHandler",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.binder.MissingOperationHandler",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('MissingOperationHandler', 'openapi_first.errors.MissingOperationHandler')>",
|
||||||
|
"docstring": "Raised when an OpenAPI operation cannot be resolved to a handler.\n\nThis error occurs when:\n- An OpenAPI operation does not define an operationId, or\n- An operationId is defined but no matching function exists in the\n provided routes module.\n\nThis represents a violation of the OpenAPI-first contract and\nindicates that the specification and implementation are out of sync."
|
||||||
|
},
|
||||||
|
"bind_routes": {
|
||||||
|
"name": "bind_routes",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.binder.bind_routes",
|
||||||
|
"signature": "<bound method Function.signature of Function('bind_routes', 41, 102)>",
|
||||||
|
"docstring": "Bind OpenAPI operations to FastAPI routes.\n\nIterates through the OpenAPI specification paths and methods,\nresolves each operationId to a handler function, and registers\na corresponding APIRoute on the FastAPI application.\n\nParameters\n----------\napp : fastapi.FastAPI\n The FastAPI application instance to which routes will be added.\n\nspec : dict\n Parsed OpenAPI 3.x specification dictionary.\n\nroutes_module : module\n Python module containing handler functions. Each handler's\n name MUST exactly match an OpenAPI operationId.\n\nRaises\n------\nMissingOperationHandler\n If an operationId is missing from the spec or if no corresponding\n handler function exists in the routes module.\n\nBehavior guarantees\n-------------------\n- Route registration is deterministic and spec-driven.\n- No route decorators are required or supported.\n- Handler resolution errors surface at application startup."
|
||||||
|
},
|
||||||
|
"Any": {
|
||||||
|
"name": "Any",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.binder.Any",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Any', 'typing.Any')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.binder.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"FastAPI": {
|
||||||
|
"name": "FastAPI",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.binder.FastAPI",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('FastAPI', 'fastapi.FastAPI')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
65
mcp_docs/modules/openapi_first.cli.json
Normal file
65
mcp_docs/modules/openapi_first.cli.json
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.cli",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.cli",
|
||||||
|
"docstring": "openapi_first.cli\n========================\n\nCommand-line interface for FastAPI OpenAPI-first scaffolding utilities.\n\nThis CLI bootstraps OpenAPI-first FastAPI applications from versioned,\nbundled templates packaged with the library.",
|
||||||
|
"objects": {
|
||||||
|
"argparse": {
|
||||||
|
"name": "argparse",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.cli.argparse",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('argparse', 'argparse')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"shutil": {
|
||||||
|
"name": "shutil",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.cli.shutil",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('shutil', 'shutil')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Path": {
|
||||||
|
"name": "Path",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.cli.Path",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Path', 'pathlib.Path')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"resources": {
|
||||||
|
"name": "resources",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.cli.resources",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('resources', 'importlib.resources')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"DEFAULT_TEMPLATE": {
|
||||||
|
"name": "DEFAULT_TEMPLATE",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.cli.DEFAULT_TEMPLATE",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"available_templates": {
|
||||||
|
"name": "available_templates",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.cli.available_templates",
|
||||||
|
"signature": "<bound method Function.signature of Function('available_templates', 20, 29)>",
|
||||||
|
"docstring": "Return a list of available application templates."
|
||||||
|
},
|
||||||
|
"copy_template": {
|
||||||
|
"name": "copy_template",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.cli.copy_template",
|
||||||
|
"signature": "<bound method Function.signature of Function('copy_template', 32, 49)>",
|
||||||
|
"docstring": "Copy a bundled OpenAPI-first application template into a directory."
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.cli.main",
|
||||||
|
"signature": "<bound method Function.signature of Function('main', 52, 88)>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
102
mcp_docs/modules/openapi_first.client.json
Normal file
102
mcp_docs/modules/openapi_first.client.json
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.client",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.client",
|
||||||
|
"docstring": null,
|
||||||
|
"objects": {
|
||||||
|
"Any": {
|
||||||
|
"name": "Any",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.client.Any",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Any', 'typing.Any')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Callable": {
|
||||||
|
"name": "Callable",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.client.Callable",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Callable', 'typing.Callable')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.client.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Optional": {
|
||||||
|
"name": "Optional",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.client.Optional",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Optional', 'typing.Optional')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"urljoin": {
|
||||||
|
"name": "urljoin",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.client.urljoin",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('urljoin', 'urllib.parse.urljoin')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"httpx": {
|
||||||
|
"name": "httpx",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.client.httpx",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('httpx', 'httpx')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"OpenAPIFirstError": {
|
||||||
|
"name": "OpenAPIFirstError",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.client.OpenAPIFirstError",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstError', 'openapi_first.errors.OpenAPIFirstError')>",
|
||||||
|
"docstring": "Base exception for all OpenAPI-first enforcement errors.\n\nThis exception exists to allow callers, test suites, and CI pipelines\nto catch and distinguish OpenAPI contract violations from unrelated\nruntime errors.\n\nAll exceptions raised by the OpenAPI-first core should inherit from\nthis type."
|
||||||
|
},
|
||||||
|
"OpenAPIClientError": {
|
||||||
|
"name": "OpenAPIClientError",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.client.OpenAPIClientError",
|
||||||
|
"signature": "<bound method Class.signature of Class('OpenAPIClientError', 9, 10)>",
|
||||||
|
"docstring": "Raised when an OpenAPI client operation fails."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.client.OpenAPIClient",
|
||||||
|
"signature": "<bound method Class.signature of Class('OpenAPIClient', 13, 176)>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.client.OpenAPIClient.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.client.OpenAPIClient.base_url",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.client.OpenAPIClient.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.client.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Function.signature of Function('operations', 45, 46)>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
30
mcp_docs/modules/openapi_first.errors.json
Normal file
30
mcp_docs/modules/openapi_first.errors.json
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.errors",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.errors",
|
||||||
|
"docstring": "openapi_first.errors\n============================\n\nCustom exceptions for OpenAPI-first FastAPI applications.\n\nThis module defines a small hierarchy of explicit, intention-revealing\nexceptions used to signal contract violations between an OpenAPI\nspecification and its Python implementation.\n\nDesign principles\n-----------------\n- Errors represent *programmer mistakes*, not runtime conditions.\n- All errors are raised during application startup.\n- Messages are actionable and suitable for CI/CD output.\n- Exceptions are explicit rather than reused from generic built-ins.\n\nThese errors should normally cause immediate application failure.",
|
||||||
|
"objects": {
|
||||||
|
"OpenAPIFirstError": {
|
||||||
|
"name": "OpenAPIFirstError",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.errors.OpenAPIFirstError",
|
||||||
|
"signature": "<bound method Class.signature of Class('OpenAPIFirstError', 21, 32)>",
|
||||||
|
"docstring": "Base exception for all OpenAPI-first enforcement errors.\n\nThis exception exists to allow callers, test suites, and CI pipelines\nto catch and distinguish OpenAPI contract violations from unrelated\nruntime errors.\n\nAll exceptions raised by the OpenAPI-first core should inherit from\nthis type."
|
||||||
|
},
|
||||||
|
"MissingOperationHandler": {
|
||||||
|
"name": "MissingOperationHandler",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.errors.MissingOperationHandler",
|
||||||
|
"signature": "<bound method Class.signature of Class('MissingOperationHandler', 35, 72)>",
|
||||||
|
"docstring": "Raised when an OpenAPI operation cannot be resolved to a handler.\n\nThis error occurs when:\n- An OpenAPI operation does not define an operationId, or\n- An operationId is defined but no matching function exists in the\n provided routes module.\n\nThis represents a violation of the OpenAPI-first contract and\nindicates that the specification and implementation are out of sync."
|
||||||
|
},
|
||||||
|
"Optional": {
|
||||||
|
"name": "Optional",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.errors.Optional",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Optional', 'typing.Optional')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1091
mcp_docs/modules/openapi_first.json
Normal file
1091
mcp_docs/modules/openapi_first.json
Normal file
File diff suppressed because one or more lines are too long
79
mcp_docs/modules/openapi_first.loader.json
Normal file
79
mcp_docs/modules/openapi_first.loader.json
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.loader",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.loader",
|
||||||
|
"docstring": "openapi_first.loaders\n=============================\n\nOpenAPI specification loading and validation utilities.\n\nThis module is responsible for loading an OpenAPI 3.x specification\nfrom disk and validating it before it is used by the application.\n\nIt enforces the principle that an invalid or malformed OpenAPI document\nmust never reach the routing or runtime layers.\n\nDesign principles\n-----------------\n- OpenAPI is treated as an authoritative contract.\n- Invalid specifications fail fast at application startup.\n- Supported formats are JSON and YAML.\n- Validation errors are surfaced clearly and early.\n\nThis module intentionally does NOT:\n-----------------------------------\n- Modify the OpenAPI document\n- Infer missing fields\n- Generate models or code\n- Perform request/response validation at runtime",
|
||||||
|
"objects": {
|
||||||
|
"json": {
|
||||||
|
"name": "json",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.json",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('json', 'json')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Path": {
|
||||||
|
"name": "Path",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.Path",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Path', 'pathlib.Path')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Any": {
|
||||||
|
"name": "Any",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.Any",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Any', 'typing.Any')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"yaml": {
|
||||||
|
"name": "yaml",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.yaml",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('yaml', 'yaml')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"validate_spec": {
|
||||||
|
"name": "validate_spec",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.validate_spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('validate_spec', 'openapi_spec_validator.validate_spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"OpenAPIFirstError": {
|
||||||
|
"name": "OpenAPIFirstError",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.loader.OpenAPIFirstError",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstError', 'openapi_first.errors.OpenAPIFirstError')>",
|
||||||
|
"docstring": "Base exception for all OpenAPI-first enforcement errors.\n\nThis exception exists to allow callers, test suites, and CI pipelines\nto catch and distinguish OpenAPI contract violations from unrelated\nruntime errors.\n\nAll exceptions raised by the OpenAPI-first core should inherit from\nthis type."
|
||||||
|
},
|
||||||
|
"OpenAPISpecLoadError": {
|
||||||
|
"name": "OpenAPISpecLoadError",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.loader.OpenAPISpecLoadError",
|
||||||
|
"signature": "<bound method Class.signature of Class('OpenAPISpecLoadError', 38, 45)>",
|
||||||
|
"docstring": "Raised when an OpenAPI specification cannot be loaded or validated.\n\nThis error indicates that the OpenAPI document is unreadable,\nmalformed, or violates the OpenAPI 3.x specification."
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.loader.load_openapi",
|
||||||
|
"signature": "<bound method Function.signature of Function('load_openapi', 48, 107)>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Union": {
|
||||||
|
"name": "Union",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.loader.Union",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Union', 'typing.Union')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
51
mcp_docs/modules/openapi_first.templates.crud_app.data.json
Normal file
51
mcp_docs/modules/openapi_first.templates.crud_app.data.json
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.data",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.crud_app.data",
|
||||||
|
"docstring": "In-memory mock data store for CRUD example.\n\nThis module intentionally avoids persistence and concurrency guarantees.\nIt is suitable for demos, tests, and scaffolding only.\n\nIt intentionally avoids\n- persistence\n- concurrency guarantees\n- validation\n- error handling\n\nThe implementation is suitable for:\n- demonstrations\n- tests\n- scaffolding and example services\n\nIt is explicitly NOT suitable for production use.\n\nThis module is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"objects": {
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 36, 48)>",
|
||||||
|
"docstring": "Return all items in the data store.\n\nThis function performs no filtering, pagination, or sorting.\nThe returned collection reflects the current in-memory state.\n\nReturns\n-------\nlist[dict]\n A list of item representations."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 51, 68)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nThis function assumes the item exists and will raise ``KeyError``\nif the ID is not present in the store.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\ndict\n The stored item representation."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 71, 92)>",
|
||||||
|
"docstring": "Create a new item in the data store.\n\nA new integer ID is assigned automatically. No validation is\nperformed on the provided payload.\n\nParameters\n----------\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The newly created item, including its assigned ID."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 95, 117)>",
|
||||||
|
"docstring": "Replace an existing item in the data store.\n\nThis function overwrites the existing item entirely and does not\nperform partial updates or validation. If the item does not exist,\nit will be created implicitly.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The updated item representation."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 120, 132)>",
|
||||||
|
"docstring": "Remove an item from the data store.\n\nThis function assumes the item exists and will raise ``KeyError``\nif the ID is not present.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
273
mcp_docs/modules/openapi_first.templates.crud_app.json
Normal file
273
mcp_docs/modules/openapi_first.templates.crud_app.json
Normal file
@@ -0,0 +1,273 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.crud_app",
|
||||||
|
"docstring": "OpenAPI-first CRUD application template.\n\nThis package contains a complete, minimal example of an OpenAPI-first\nCRUD service built using the ``openapi_first`` library.\n\nThe application is assembled exclusively from:\n- an OpenAPI specification (``openapi.yaml``)\n- a handler namespace implementing CRUD operations (``routes``)\n- an in-memory mock data store (``data``)\n\nAll HTTP routes, methods, schemas, and operation bindings are defined\nin the OpenAPI specification and enforced at application startup.\nNo decorator-driven routing or implicit framework behavior is used.\n\nThis template demonstrates:\n- operationId-driven server-side route binding\n- explicit HTTP status code control in handlers\n- operationId-driven client usage against the same OpenAPI contract\n- end-to-end validation using in-memory data and tests\n\n----------------------------------------------------------------------\nScaffolding via CLI\n----------------------------------------------------------------------\n\nCreate a new CRUD example service using the bundled template:\n\n openapi-first crud_app\n\nCreate the service in a custom directory:\n\n openapi-first crud_app my-crud-service\n\nList all available application templates:\n\n openapi-first --list\n\nThe CLI copies template files verbatim into the target directory.\nNo code is generated or modified beyond the copied scaffold.\n\n----------------------------------------------------------------------\nClient Usage Example\n----------------------------------------------------------------------\n\nThe same OpenAPI specification used by the server can be used to\nconstruct a strict, operationId-driven HTTP client.\n\nExample client calls for CRUD operations:\n\n from openapi_first.loader import load_openapi\n from openapi_first.client import OpenAPIClient\n\n spec = load_openapi(\"openapi.yaml\")\n client = OpenAPIClient(spec)\n\n # List items\n response = client.list_items()\n\n # Get item by ID\n response = client.get_item(\n path_params={\"item_id\": 1}\n )\n\n # Create item\n response = client.create_item(\n body={\"name\": \"Orange\", \"price\": 0.8}\n )\n\n # Update item\n response = client.update_item(\n path_params={\"item_id\": 1},\n body={\"name\": \"Green Apple\", \"price\": 0.6},\n )\n\n # Delete item\n response = client.delete_item(\n path_params={\"item_id\": 1}\n )\n\nClient guarantees:\n- One callable per OpenAPI ``operationId``\n- No hardcoded URLs or HTTP methods in user code\n- Path and request parameters must match the OpenAPI specification\n- Invalid or incomplete OpenAPI specs fail at client construction time\n\n----------------------------------------------------------------------\nNon-Goals\n----------------------------------------------------------------------\n\nThis template is intentionally minimal and is NOT:\n- production-ready\n- persistent or concurrency-safe\n- a reference architecture for data storage\n\nIt exists solely as a copyable example for learning, testing, and\nbootstrapping OpenAPI-first services.\n\nThis package is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"objects": {
|
||||||
|
"data": {
|
||||||
|
"name": "data",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.data",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "In-memory mock data store for CRUD example.\n\nThis module intentionally avoids persistence and concurrency guarantees.\nIt is suitable for demos, tests, and scaffolding only.\n\nIt intentionally avoids\n- persistence\n- concurrency guarantees\n- validation\n- error handling\n\nThe implementation is suitable for:\n- demonstrations\n- tests\n- scaffolding and example services\n\nIt is explicitly NOT suitable for production use.\n\nThis module is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"members": {
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 36, 48)>",
|
||||||
|
"docstring": "Return all items in the data store.\n\nThis function performs no filtering, pagination, or sorting.\nThe returned collection reflects the current in-memory state.\n\nReturns\n-------\nlist[dict]\n A list of item representations."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 51, 68)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nThis function assumes the item exists and will raise ``KeyError``\nif the ID is not present in the store.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\ndict\n The stored item representation."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 71, 92)>",
|
||||||
|
"docstring": "Create a new item in the data store.\n\nA new integer ID is assigned automatically. No validation is\nperformed on the provided payload.\n\nParameters\n----------\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The newly created item, including its assigned ID."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 95, 117)>",
|
||||||
|
"docstring": "Replace an existing item in the data store.\n\nThis function overwrites the existing item entirely and does not\nperform partial updates or validation. If the item does not exist,\nit will be created implicitly.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The updated item representation."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 120, 132)>",
|
||||||
|
"docstring": "Remove an item from the data store.\n\nThis function assumes the item exists and will raise ``KeyError``\nif the ID is not present.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.main",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first CRUD example service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, request/response schemas, and operation\nbindings are defined in the OpenAPI document referenced by\n``openapi_path``. Python callables defined in the ``routes`` module are\nbound to OpenAPI operations strictly via ``operationId``.\n\nThis module contains no routing logic, persistence concerns, or\nframework configuration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"members": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "CRUD route handlers bound via OpenAPI operationId.\n\nThese handlers explicitly control HTTP status codes to ensure\nruntime behavior matches the OpenAPI contract.\n\nThis module defines OpenAPI-bound operation handlers for a simple CRUD\nservice. Functions in this module are bound to HTTP routes exclusively\nvia OpenAPI ``operationId`` values.\n\nHandlers explicitly control HTTP response status codes to ensure runtime\nbehavior matches the OpenAPI contract. Error conditions are translated\ninto explicit HTTP responses rather than relying on implicit framework\nbehavior.\n\nNo routing decorators or path definitions appear in this module. All\nrouting, HTTP methods, and schemas are defined in the OpenAPI\nspecification.",
|
||||||
|
"members": {
|
||||||
|
"Response": {
|
||||||
|
"name": "Response",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.Response",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Response', 'fastapi.Response')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"HTTPException": {
|
||||||
|
"name": "HTTPException",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.HTTPException",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('HTTPException', 'fastapi.HTTPException')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 32, 44)>",
|
||||||
|
"docstring": "List all items.\n\nImplements the OpenAPI operation identified by\n``operationId: list_items``.\n\nReturns\n-------\nlist[dict]\n A list of item representations."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 47, 72)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nImplements the OpenAPI operation identified by\n``operationId: get_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\ndict\n The requested item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 75, 96)>",
|
||||||
|
"docstring": "Create a new item.\n\nImplements the OpenAPI operation identified by\n``operationId: create_item``.\n\nParameters\n----------\npayload : dict\n Item attributes excluding the ``id`` field.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\ndict\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 99, 126)>",
|
||||||
|
"docstring": "Update an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: update_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The updated item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 129, 158)>",
|
||||||
|
"docstring": "Delete an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: delete_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nNone\n No content.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"test_crud_app": {
|
||||||
|
"name": "test_crud_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "End-to-end tests for the OpenAPI-first CRUD example app.\n\nThese tests validate that all CRUD operations behave correctly\nagainst the in-memory mock data store.\n- OpenAPI specification loading\n- OperationId-driven route binding on the server\n- OperationId-driven client invocation\n- Correct HTTP status codes and response payloads\n\nThe tests exercise all CRUD operations against an in-memory mock data\nstore and assume deterministic behavior within a single process.\n\nThe tests assume:\n- OpenAPI-first route binding\n- In-memory storage (no persistence guarantees)\n- Deterministic behavior in a single process\n- One-to-one correspondence between OpenAPI operationId values and\n server/client callables",
|
||||||
|
"members": {
|
||||||
|
"TestClient": {
|
||||||
|
"name": "TestClient",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.TestClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('TestClient', 'fastapi.testclient.TestClient')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.app",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('app', 'main.app')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIClient', 'openapi_first.client.OpenAPIClient')>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('spec', 'openapi_first.client.OpenAPIClient.spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.base_url",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('base_url', 'openapi_first.client.OpenAPIClient.base_url')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.client",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('client', 'openapi_first.client.OpenAPIClient.client')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('operations', 'openapi_first.client.OpenAPIClient.operations')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"test_list_items_initial": {
|
||||||
|
"name": "test_list_items_initial",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_list_items_initial",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_list_items_initial', 38, 49)>",
|
||||||
|
"docstring": "Initial items should be present."
|
||||||
|
},
|
||||||
|
"test_get_item": {
|
||||||
|
"name": "test_get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_get_item', 52, 62)>",
|
||||||
|
"docstring": "Existing item should be retrievable by ID."
|
||||||
|
},
|
||||||
|
"test_create_item": {
|
||||||
|
"name": "test_create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_create_item', 65, 85)>",
|
||||||
|
"docstring": "Creating a new item should return the created entity."
|
||||||
|
},
|
||||||
|
"test_update_item": {
|
||||||
|
"name": "test_update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_update_item', 88, 112)>",
|
||||||
|
"docstring": "Updating an item should replace its values."
|
||||||
|
},
|
||||||
|
"test_delete_item": {
|
||||||
|
"name": "test_delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_delete_item', 115, 125)>",
|
||||||
|
"docstring": "Deleting an item should remove it from the store."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
39
mcp_docs/modules/openapi_first.templates.crud_app.main.json
Normal file
39
mcp_docs/modules/openapi_first.templates.crud_app.main.json
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.main",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.crud_app.main",
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first CRUD example service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, request/response schemas, and operation\nbindings are defined in the OpenAPI document referenced by\n``openapi_path``. Python callables defined in the ``routes`` module are\nbound to OpenAPI operations strictly via ``operationId``.\n\nThis module contains no routing logic, persistence concerns, or\nframework configuration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"objects": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.routes",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.crud_app.routes",
|
||||||
|
"docstring": "CRUD route handlers bound via OpenAPI operationId.\n\nThese handlers explicitly control HTTP status codes to ensure\nruntime behavior matches the OpenAPI contract.\n\nThis module defines OpenAPI-bound operation handlers for a simple CRUD\nservice. Functions in this module are bound to HTTP routes exclusively\nvia OpenAPI ``operationId`` values.\n\nHandlers explicitly control HTTP response status codes to ensure runtime\nbehavior matches the OpenAPI contract. Error conditions are translated\ninto explicit HTTP responses rather than relying on implicit framework\nbehavior.\n\nNo routing decorators or path definitions appear in this module. All\nrouting, HTTP methods, and schemas are defined in the OpenAPI\nspecification.",
|
||||||
|
"objects": {
|
||||||
|
"Response": {
|
||||||
|
"name": "Response",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.Response",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Response', 'fastapi.Response')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"HTTPException": {
|
||||||
|
"name": "HTTPException",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.HTTPException",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('HTTPException', 'fastapi.HTTPException')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 32, 44)>",
|
||||||
|
"docstring": "List all items.\n\nImplements the OpenAPI operation identified by\n``operationId: list_items``.\n\nReturns\n-------\nlist[dict]\n A list of item representations."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 47, 72)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nImplements the OpenAPI operation identified by\n``operationId: get_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\ndict\n The requested item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 75, 96)>",
|
||||||
|
"docstring": "Create a new item.\n\nImplements the OpenAPI operation identified by\n``operationId: create_item``.\n\nParameters\n----------\npayload : dict\n Item attributes excluding the ``id`` field.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\ndict\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 99, 126)>",
|
||||||
|
"docstring": "Update an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: update_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The updated item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 129, 158)>",
|
||||||
|
"docstring": "Delete an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: delete_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nNone\n No content.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.test_crud_app",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app",
|
||||||
|
"docstring": "End-to-end tests for the OpenAPI-first CRUD example app.\n\nThese tests validate that all CRUD operations behave correctly\nagainst the in-memory mock data store.\n- OpenAPI specification loading\n- OperationId-driven route binding on the server\n- OperationId-driven client invocation\n- Correct HTTP status codes and response payloads\n\nThe tests exercise all CRUD operations against an in-memory mock data\nstore and assume deterministic behavior within a single process.\n\nThe tests assume:\n- OpenAPI-first route binding\n- In-memory storage (no persistence guarantees)\n- Deterministic behavior in a single process\n- One-to-one correspondence between OpenAPI operationId values and\n server/client callables",
|
||||||
|
"objects": {
|
||||||
|
"TestClient": {
|
||||||
|
"name": "TestClient",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.TestClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('TestClient', 'fastapi.testclient.TestClient')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.app",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('app', 'main.app')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIClient', 'openapi_first.client.OpenAPIClient')>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('spec', 'openapi_first.client.OpenAPIClient.spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.base_url",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('base_url', 'openapi_first.client.OpenAPIClient.base_url')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.client",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('client', 'openapi_first.client.OpenAPIClient.client')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('operations', 'openapi_first.client.OpenAPIClient.operations')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"test_list_items_initial": {
|
||||||
|
"name": "test_list_items_initial",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_list_items_initial",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_list_items_initial', 38, 49)>",
|
||||||
|
"docstring": "Initial items should be present."
|
||||||
|
},
|
||||||
|
"test_get_item": {
|
||||||
|
"name": "test_get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_get_item', 52, 62)>",
|
||||||
|
"docstring": "Existing item should be retrievable by ID."
|
||||||
|
},
|
||||||
|
"test_create_item": {
|
||||||
|
"name": "test_create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_create_item', 65, 85)>",
|
||||||
|
"docstring": "Creating a new item should return the created entity."
|
||||||
|
},
|
||||||
|
"test_update_item": {
|
||||||
|
"name": "test_update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_update_item', 88, 112)>",
|
||||||
|
"docstring": "Updating an item should replace its values."
|
||||||
|
},
|
||||||
|
"test_delete_item": {
|
||||||
|
"name": "test_delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_delete_item', 115, 125)>",
|
||||||
|
"docstring": "Deleting an item should remove it from the store."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
64
mcp_docs/modules/openapi_first.templates.health_app.json
Normal file
64
mcp_docs/modules/openapi_first.templates.health_app.json
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.health_app",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.health_app",
|
||||||
|
"docstring": "OpenAPI-first FastAPI application template.\n\nThis package contains a minimal, fully working example of an\nOpenAPI-first FastAPI service built using the ``openapi_first`` library.\n\nThe application is assembled exclusively from:\n- an OpenAPI specification (``openapi.yaml``)\n- a handler namespace (``routes``)\n\nNo routing decorators, implicit behavior, or framework-specific\nconvenience abstractions are used. All HTTP routes, methods, and\noperation bindings are defined in OpenAPI and enforced at application\nstartup.\n\nThis package is intended to be copied as a starting point for new\nservices via the ``openapi-first`` CLI. It is not part of the\n``openapi_first`` library API surface.\n\n----------------------------------------------------------------------\nScaffolding via CLI\n----------------------------------------------------------------------\n\nCreate a new OpenAPI-first health check service using the bundled\ntemplate:\n\n openapi-first health_app\n\nCreate the service in a custom directory:\n\n openapi-first health_app my-health-service\n\nList all available application templates:\n\n openapi-first --list\n\nThe CLI copies template files verbatim into the target directory.\nNo code is generated or modified beyond the copied scaffold.\n\n----------------------------------------------------------------------\nClient Usage Example\n----------------------------------------------------------------------\n\nThe same OpenAPI specification used by the server can be used to\nconstruct a strict, operationId-driven HTTP client.\n\nExample client call for the ``get_health`` operation:\n\n from openapi_first.loader import load_openapi\n from openapi_first.client import OpenAPIClient\n\n spec = load_openapi(\"openapi.yaml\")\n client = OpenAPIClient(spec)\n\n response = client.get_health()\n\n assert response.status_code == 200\n assert response.json() == {\"status\": \"ok\"}\n\nClient guarantees:\n- One callable per OpenAPI ``operationId``\n- No hardcoded URLs or HTTP methods in user code\n- Path and request parameters must match the OpenAPI specification\n- Invalid or incomplete OpenAPI specs fail at client construction time",
|
||||||
|
"objects": {
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.health_app.main",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first FastAPI service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, and operation bindings are defined in the\nOpenAPI document referenced by ``openapi_path``. Python callables\ndefined in the ``routes`` module are bound to OpenAPI operations\nstrictly via ``operationId``.\n\nThis module contains no routing logic, request handling, or framework\nconfiguration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"members": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.health_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.health_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.health_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.health_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.health_app.routes",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "OpenAPI operation handlers.\n\nThis module defines pure Python callables that implement OpenAPI\noperations for this service. Functions in this module are bound to HTTP\nroutes exclusively via OpenAPI ``operationId`` values.\n\nNo routing decorators, HTTP metadata, or framework-specific logic\nshould appear here. All request/response semantics are defined in the\nOpenAPI specification.\n\nThis module serves solely as an operationId namespace.",
|
||||||
|
"members": {
|
||||||
|
"get_health": {
|
||||||
|
"name": "get_health",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.health_app.routes.get_health",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_health', 16, 32)>",
|
||||||
|
"docstring": "Health check operation handler.\n\nThis function implements the OpenAPI operation identified by\n``operationId: get_health``.\n\nIt contains no routing metadata or framework-specific logic.\nRequest binding, HTTP method, and response semantics are defined\nexclusively by the OpenAPI specification.\n\nReturns\n-------\ndict\n A minimal liveness payload indicating service health."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.health_app.main",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.health_app.main",
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first FastAPI service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, and operation bindings are defined in the\nOpenAPI document referenced by ``openapi_path``. Python callables\ndefined in the ``routes`` module are bound to OpenAPI operations\nstrictly via ``operationId``.\n\nThis module contains no routing logic, request handling, or framework\nconfiguration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"objects": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.health_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.health_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.health_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.health_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.health_app.routes",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.health_app.routes",
|
||||||
|
"docstring": "OpenAPI operation handlers.\n\nThis module defines pure Python callables that implement OpenAPI\noperations for this service. Functions in this module are bound to HTTP\nroutes exclusively via OpenAPI ``operationId`` values.\n\nNo routing decorators, HTTP metadata, or framework-specific logic\nshould appear here. All request/response semantics are defined in the\nOpenAPI specification.\n\nThis module serves solely as an operationId namespace.",
|
||||||
|
"objects": {
|
||||||
|
"get_health": {
|
||||||
|
"name": "get_health",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.health_app.routes.get_health",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_health', 16, 32)>",
|
||||||
|
"docstring": "Health check operation handler.\n\nThis function implements the OpenAPI operation identified by\n``operationId: get_health``.\n\nIt contains no routing metadata or framework-specific logic.\nRequest binding, HTTP method, and response semantics are defined\nexclusively by the OpenAPI specification.\n\nReturns\n-------\ndict\n A minimal liveness payload indicating service health."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
702
mcp_docs/modules/openapi_first.templates.json
Normal file
702
mcp_docs/modules/openapi_first.templates.json
Normal file
@@ -0,0 +1,702 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates",
|
||||||
|
"docstring": "Application templates for FastAPI OpenAPI First.\n\nThis package contains example and scaffolding templates intended to be\ncopied into user projects via the ``openapi-first`` CLI.\n\nTemplates in this package are:\n- Reference implementations of OpenAPI-first services\n- Not part of the ``openapi_first`` public or internal API\n- Not intended to be imported as runtime dependencies\n\nThe presence of this file exists solely to:\n- Mark the directory as an explicit Python package\n- Enable deterministic tooling behavior (documentation, packaging)\n- Avoid accidental traversal of non-package directories\n\nNo code in this package should be imported by library consumers.",
|
||||||
|
"objects": {
|
||||||
|
"crud_app": {
|
||||||
|
"name": "crud_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "OpenAPI-first CRUD application template.\n\nThis package contains a complete, minimal example of an OpenAPI-first\nCRUD service built using the ``openapi_first`` library.\n\nThe application is assembled exclusively from:\n- an OpenAPI specification (``openapi.yaml``)\n- a handler namespace implementing CRUD operations (``routes``)\n- an in-memory mock data store (``data``)\n\nAll HTTP routes, methods, schemas, and operation bindings are defined\nin the OpenAPI specification and enforced at application startup.\nNo decorator-driven routing or implicit framework behavior is used.\n\nThis template demonstrates:\n- operationId-driven server-side route binding\n- explicit HTTP status code control in handlers\n- operationId-driven client usage against the same OpenAPI contract\n- end-to-end validation using in-memory data and tests\n\n----------------------------------------------------------------------\nScaffolding via CLI\n----------------------------------------------------------------------\n\nCreate a new CRUD example service using the bundled template:\n\n openapi-first crud_app\n\nCreate the service in a custom directory:\n\n openapi-first crud_app my-crud-service\n\nList all available application templates:\n\n openapi-first --list\n\nThe CLI copies template files verbatim into the target directory.\nNo code is generated or modified beyond the copied scaffold.\n\n----------------------------------------------------------------------\nClient Usage Example\n----------------------------------------------------------------------\n\nThe same OpenAPI specification used by the server can be used to\nconstruct a strict, operationId-driven HTTP client.\n\nExample client calls for CRUD operations:\n\n from openapi_first.loader import load_openapi\n from openapi_first.client import OpenAPIClient\n\n spec = load_openapi(\"openapi.yaml\")\n client = OpenAPIClient(spec)\n\n # List items\n response = client.list_items()\n\n # Get item by ID\n response = client.get_item(\n path_params={\"item_id\": 1}\n )\n\n # Create item\n response = client.create_item(\n body={\"name\": \"Orange\", \"price\": 0.8}\n )\n\n # Update item\n response = client.update_item(\n path_params={\"item_id\": 1},\n body={\"name\": \"Green Apple\", \"price\": 0.6},\n )\n\n # Delete item\n response = client.delete_item(\n path_params={\"item_id\": 1}\n )\n\nClient guarantees:\n- One callable per OpenAPI ``operationId``\n- No hardcoded URLs or HTTP methods in user code\n- Path and request parameters must match the OpenAPI specification\n- Invalid or incomplete OpenAPI specs fail at client construction time\n\n----------------------------------------------------------------------\nNon-Goals\n----------------------------------------------------------------------\n\nThis template is intentionally minimal and is NOT:\n- production-ready\n- persistent or concurrency-safe\n- a reference architecture for data storage\n\nIt exists solely as a copyable example for learning, testing, and\nbootstrapping OpenAPI-first services.\n\nThis package is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"members": {
|
||||||
|
"data": {
|
||||||
|
"name": "data",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.data",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "In-memory mock data store for CRUD example.\n\nThis module intentionally avoids persistence and concurrency guarantees.\nIt is suitable for demos, tests, and scaffolding only.\n\nIt intentionally avoids\n- persistence\n- concurrency guarantees\n- validation\n- error handling\n\nThe implementation is suitable for:\n- demonstrations\n- tests\n- scaffolding and example services\n\nIt is explicitly NOT suitable for production use.\n\nThis module is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"members": {
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 36, 48)>",
|
||||||
|
"docstring": "Return all items in the data store.\n\nThis function performs no filtering, pagination, or sorting.\nThe returned collection reflects the current in-memory state.\n\nReturns\n-------\nlist[dict]\n A list of item representations."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 51, 68)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nThis function assumes the item exists and will raise ``KeyError``\nif the ID is not present in the store.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\ndict\n The stored item representation."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 71, 92)>",
|
||||||
|
"docstring": "Create a new item in the data store.\n\nA new integer ID is assigned automatically. No validation is\nperformed on the provided payload.\n\nParameters\n----------\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The newly created item, including its assigned ID."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 95, 117)>",
|
||||||
|
"docstring": "Replace an existing item in the data store.\n\nThis function overwrites the existing item entirely and does not\nperform partial updates or validation. If the item does not exist,\nit will be created implicitly.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The updated item representation."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.data.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 120, 132)>",
|
||||||
|
"docstring": "Remove an item from the data store.\n\nThis function assumes the item exists and will raise ``KeyError``\nif the ID is not present.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.main",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first CRUD example service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, request/response schemas, and operation\nbindings are defined in the OpenAPI document referenced by\n``openapi_path``. Python callables defined in the ``routes`` module are\nbound to OpenAPI operations strictly via ``operationId``.\n\nThis module contains no routing logic, persistence concerns, or\nframework configuration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"members": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "CRUD route handlers bound via OpenAPI operationId.\n\nThese handlers explicitly control HTTP status codes to ensure\nruntime behavior matches the OpenAPI contract.\n\nThis module defines OpenAPI-bound operation handlers for a simple CRUD\nservice. Functions in this module are bound to HTTP routes exclusively\nvia OpenAPI ``operationId`` values.\n\nHandlers explicitly control HTTP response status codes to ensure runtime\nbehavior matches the OpenAPI contract. Error conditions are translated\ninto explicit HTTP responses rather than relying on implicit framework\nbehavior.\n\nNo routing decorators or path definitions appear in this module. All\nrouting, HTTP methods, and schemas are defined in the OpenAPI\nspecification.",
|
||||||
|
"members": {
|
||||||
|
"Response": {
|
||||||
|
"name": "Response",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.Response",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Response', 'fastapi.Response')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"HTTPException": {
|
||||||
|
"name": "HTTPException",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.HTTPException",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('HTTPException', 'fastapi.HTTPException')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 32, 44)>",
|
||||||
|
"docstring": "List all items.\n\nImplements the OpenAPI operation identified by\n``operationId: list_items``.\n\nReturns\n-------\nlist[dict]\n A list of item representations."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 47, 72)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nImplements the OpenAPI operation identified by\n``operationId: get_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\ndict\n The requested item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 75, 96)>",
|
||||||
|
"docstring": "Create a new item.\n\nImplements the OpenAPI operation identified by\n``operationId: create_item``.\n\nParameters\n----------\npayload : dict\n Item attributes excluding the ``id`` field.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\ndict\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 99, 126)>",
|
||||||
|
"docstring": "Update an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: update_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : dict\n Item attributes excluding the ``id`` field.\n\nReturns\n-------\ndict\n The updated item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.routes.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 129, 158)>",
|
||||||
|
"docstring": "Delete an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: delete_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nNone\n No content.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"test_crud_app": {
|
||||||
|
"name": "test_crud_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "End-to-end tests for the OpenAPI-first CRUD example app.\n\nThese tests validate that all CRUD operations behave correctly\nagainst the in-memory mock data store.\n- OpenAPI specification loading\n- OperationId-driven route binding on the server\n- OperationId-driven client invocation\n- Correct HTTP status codes and response payloads\n\nThe tests exercise all CRUD operations against an in-memory mock data\nstore and assume deterministic behavior within a single process.\n\nThe tests assume:\n- OpenAPI-first route binding\n- In-memory storage (no persistence guarantees)\n- Deterministic behavior in a single process\n- One-to-one correspondence between OpenAPI operationId values and\n server/client callables",
|
||||||
|
"members": {
|
||||||
|
"TestClient": {
|
||||||
|
"name": "TestClient",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.TestClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('TestClient', 'fastapi.testclient.TestClient')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.app",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('app', 'main.app')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIClient', 'openapi_first.client.OpenAPIClient')>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('spec', 'openapi_first.client.OpenAPIClient.spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.base_url",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('base_url', 'openapi_first.client.OpenAPIClient.base_url')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.client",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('client', 'openapi_first.client.OpenAPIClient.client')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('operations', 'openapi_first.client.OpenAPIClient.operations')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"test_list_items_initial": {
|
||||||
|
"name": "test_list_items_initial",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_list_items_initial",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_list_items_initial', 38, 49)>",
|
||||||
|
"docstring": "Initial items should be present."
|
||||||
|
},
|
||||||
|
"test_get_item": {
|
||||||
|
"name": "test_get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_get_item', 52, 62)>",
|
||||||
|
"docstring": "Existing item should be retrievable by ID."
|
||||||
|
},
|
||||||
|
"test_create_item": {
|
||||||
|
"name": "test_create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_create_item', 65, 85)>",
|
||||||
|
"docstring": "Creating a new item should return the created entity."
|
||||||
|
},
|
||||||
|
"test_update_item": {
|
||||||
|
"name": "test_update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_update_item', 88, 112)>",
|
||||||
|
"docstring": "Updating an item should replace its values."
|
||||||
|
},
|
||||||
|
"test_delete_item": {
|
||||||
|
"name": "test_delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.crud_app.test_crud_app.test_delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_delete_item', 115, 125)>",
|
||||||
|
"docstring": "Deleting an item should remove it from the store."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"health_app": {
|
||||||
|
"name": "health_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.health_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "OpenAPI-first FastAPI application template.\n\nThis package contains a minimal, fully working example of an\nOpenAPI-first FastAPI service built using the ``openapi_first`` library.\n\nThe application is assembled exclusively from:\n- an OpenAPI specification (``openapi.yaml``)\n- a handler namespace (``routes``)\n\nNo routing decorators, implicit behavior, or framework-specific\nconvenience abstractions are used. All HTTP routes, methods, and\noperation bindings are defined in OpenAPI and enforced at application\nstartup.\n\nThis package is intended to be copied as a starting point for new\nservices via the ``openapi-first`` CLI. It is not part of the\n``openapi_first`` library API surface.\n\n----------------------------------------------------------------------\nScaffolding via CLI\n----------------------------------------------------------------------\n\nCreate a new OpenAPI-first health check service using the bundled\ntemplate:\n\n openapi-first health_app\n\nCreate the service in a custom directory:\n\n openapi-first health_app my-health-service\n\nList all available application templates:\n\n openapi-first --list\n\nThe CLI copies template files verbatim into the target directory.\nNo code is generated or modified beyond the copied scaffold.\n\n----------------------------------------------------------------------\nClient Usage Example\n----------------------------------------------------------------------\n\nThe same OpenAPI specification used by the server can be used to\nconstruct a strict, operationId-driven HTTP client.\n\nExample client call for the ``get_health`` operation:\n\n from openapi_first.loader import load_openapi\n from openapi_first.client import OpenAPIClient\n\n spec = load_openapi(\"openapi.yaml\")\n client = OpenAPIClient(spec)\n\n response = client.get_health()\n\n assert response.status_code == 200\n assert response.json() == {\"status\": \"ok\"}\n\nClient guarantees:\n- One callable per OpenAPI ``operationId``\n- No hardcoded URLs or HTTP methods in user code\n- Path and request parameters must match the OpenAPI specification\n- Invalid or incomplete OpenAPI specs fail at client construction time",
|
||||||
|
"members": {
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.health_app.main",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first FastAPI service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, and operation bindings are defined in the\nOpenAPI document referenced by ``openapi_path``. Python callables\ndefined in the ``routes`` module are bound to OpenAPI operations\nstrictly via ``operationId``.\n\nThis module contains no routing logic, request handling, or framework\nconfiguration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"members": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.health_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.health_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.health_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.health_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.health_app.routes",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "OpenAPI operation handlers.\n\nThis module defines pure Python callables that implement OpenAPI\noperations for this service. Functions in this module are bound to HTTP\nroutes exclusively via OpenAPI ``operationId`` values.\n\nNo routing decorators, HTTP metadata, or framework-specific logic\nshould appear here. All request/response semantics are defined in the\nOpenAPI specification.\n\nThis module serves solely as an operationId namespace.",
|
||||||
|
"members": {
|
||||||
|
"get_health": {
|
||||||
|
"name": "get_health",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.health_app.routes.get_health",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_health', 16, 32)>",
|
||||||
|
"docstring": "Health check operation handler.\n\nThis function implements the OpenAPI operation identified by\n``operationId: get_health``.\n\nIt contains no routing metadata or framework-specific logic.\nRequest binding, HTTP method, and response semantics are defined\nexclusively by the OpenAPI specification.\n\nReturns\n-------\ndict\n A minimal liveness payload indicating service health."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"model_app": {
|
||||||
|
"name": "model_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "OpenAPI-first model-based CRUD application template.\n\nThis package contains a complete, minimal example of an OpenAPI-first\nCRUD service that uses explicit Pydantic domain models for request and\nresponse schemas.\n\nThe application is assembled exclusively from:\n- an OpenAPI specification (``openapi.yaml``)\n- a handler namespace implementing CRUD operations (``routes``)\n- Pydantic domain models (``models``)\n- an in-memory mock data store (``data``)\n\nAll HTTP routes, methods, schemas, and operation bindings are defined\nin the OpenAPI specification and enforced at application startup.\nNo decorator-driven routing or implicit framework behavior is used.\n\nThis template demonstrates:\n- operationId-driven server-side route binding\n- explicit request and response modeling with Pydantic\n- explicit HTTP status code control in handlers\n- operationId-driven client usage against the same OpenAPI contract\n- end-to-end validation using in-memory data and tests\n\n----------------------------------------------------------------------\nScaffolding via CLI\n----------------------------------------------------------------------\n\nCreate a new model-based CRUD example service using the bundled template:\n\n openapi-first model_app\n\nCreate the service in a custom directory:\n\n openapi-first model_app my-model-service\n\nList all available application templates:\n\n openapi-first --list\n\nThe CLI copies template files verbatim into the target directory.\nNo code is generated or modified beyond the copied scaffold.\n\n----------------------------------------------------------------------\nClient Usage Example\n----------------------------------------------------------------------\n\nThe same OpenAPI specification used by the server can be used to\nconstruct a strict, operationId-driven HTTP client.\n\nExample client calls for model-based CRUD operations:\n\n from openapi_first.loader import load_openapi\n from openapi_first.client import OpenAPIClient\n\n spec = load_openapi(\"openapi.yaml\")\n client = OpenAPIClient(spec)\n\n # List items\n response = client.list_items()\n\n # Get item by ID\n response = client.get_item(\n path_params={\"item_id\": 1}\n )\n\n # Create item\n response = client.create_item(\n body={\"name\": \"Orange\", \"price\": 0.8}\n )\n\n # Update item\n response = client.update_item(\n path_params={\"item_id\": 1},\n body={\"name\": \"Green Apple\", \"price\": 0.6},\n )\n\n # Delete item\n response = client.delete_item(\n path_params={\"item_id\": 1}\n )\n\nClient guarantees:\n- One callable per OpenAPI ``operationId``\n- No hardcoded URLs or HTTP methods in user code\n- Request and response payloads conform to Pydantic models\n- Invalid or incomplete OpenAPI specs fail at client construction time\n\n----------------------------------------------------------------------\nNon-Goals\n----------------------------------------------------------------------\n\nThis template is intentionally minimal and is NOT:\n- production-ready\n- persistent or concurrency-safe\n- a reference architecture for data storage\n\nIt exists solely as a copyable example for learning, testing, and\nbootstrapping OpenAPI-first services.\n\nThis package is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"members": {
|
||||||
|
"data": {
|
||||||
|
"name": "data",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.data",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "In-memory data store using Pydantic models.\n\nThis module is NOT thread-safe and is intended for demos and scaffolds only.\nThis module provides a minimal, process-local data store for the\nmodel-based CRUD example application. It stores and returns domain\nobjects defined using Pydantic models and is intended solely for\ndemonstration and scaffolding purposes.\n\nThe implementation intentionally avoids:\n- persistence\n- concurrency guarantees\n- transactional semantics\n- validation beyond what Pydantic provides\n\nIt is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"members": {
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"name": "Item",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.Item",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Item', 'models.Item')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.ItemCreate",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('ItemCreate', 'models.ItemCreate')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 34, 43)>",
|
||||||
|
"docstring": "Return all items in the data store.\n\nReturns\n-------\nlist[Item]\n A list of item domain objects."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 46, 65)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\nItem\n The requested item.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 68, 89)>",
|
||||||
|
"docstring": "Create a new item in the data store.\n\nA new identifier is assigned automatically. No additional validation\nis performed beyond Pydantic model validation.\n\nParameters\n----------\npayload : ItemCreate\n Data required to create a new item.\n\nReturns\n-------\nItem\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 92, 120)>",
|
||||||
|
"docstring": "Replace an existing item in the data store.\n\nThis function performs a full replacement of the stored item.\nPartial updates are not supported.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : ItemCreate\n New item data.\n\nReturns\n-------\nItem\n The updated item.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 123, 137)>",
|
||||||
|
"docstring": "Remove an item from the data store.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.main",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first model-based CRUD example service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, request/response schemas, and operation\nbindings are defined in the OpenAPI document referenced by\n``openapi_path``. Python callables defined in the ``routes`` module are\nbound to OpenAPI operations strictly via ``operationId``.\n\nThis module contains no routing logic, persistence concerns, or\nframework configuration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"members": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"models": {
|
||||||
|
"name": "models",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.models",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Pydantic domain models for the CRUD example.\n\nThis module defines Pydantic models that represent the domain entities\nused by the service. These models are referenced by the OpenAPI\nspecification for request and response schemas.\n\nThe models are declarative and framework-agnostic. They contain no\npersistence logic, validation beyond type constraints, or business\nbehavior.\n\nThis module is not part of the ``openapi_first`` library API surface.\nIt exists solely to support the example application template.",
|
||||||
|
"members": {
|
||||||
|
"BaseModel": {
|
||||||
|
"name": "BaseModel",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.models.BaseModel",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('BaseModel', 'pydantic.BaseModel')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemBase": {
|
||||||
|
"name": "ItemBase",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase",
|
||||||
|
"signature": "<bound method Class.signature of Class('ItemBase', 19, 27)>",
|
||||||
|
"docstring": "Base domain model for an item.\n\nDefines fields common to all item representations.",
|
||||||
|
"members": {
|
||||||
|
"name": {
|
||||||
|
"name": "name",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase.name",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"price": {
|
||||||
|
"name": "price",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase.price",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemCreate",
|
||||||
|
"signature": "<bound method Class.signature of Class('ItemCreate', 30, 39)>",
|
||||||
|
"docstring": "Domain model for item creation requests.\n\nThis model is used for request bodies when creating new items.\nIt intentionally excludes the ``id`` field, which is assigned\nby the service."
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"name": "Item",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.Item",
|
||||||
|
"signature": "<bound method Class.signature of Class('Item', 42, 50)>",
|
||||||
|
"docstring": "Domain model for a persisted item.\n\nThis model represents the full item state returned in responses,\nincluding the server-assigned identifier.",
|
||||||
|
"members": {
|
||||||
|
"id": {
|
||||||
|
"name": "id",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.Item.id",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.routes",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "CRUD route handlers bound via OpenAPI operationId.\n\nThis module defines OpenAPI-bound operation handlers for a model-based\nCRUD service. Functions in this module are bound to HTTP routes\nexclusively via OpenAPI ``operationId`` values.\n\nHandlers explicitly control HTTP response status codes to ensure runtime\nbehavior matches the OpenAPI contract. Domain models defined using\nPydantic are used for request and response payloads.\n\nNo routing decorators, path definitions, or implicit framework behavior\nappear in this module. All routing, HTTP methods, and schemas are defined\nin the OpenAPI specification.",
|
||||||
|
"members": {
|
||||||
|
"Response": {
|
||||||
|
"name": "Response",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.Response",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Response', 'fastapi.Response')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"HTTPException": {
|
||||||
|
"name": "HTTPException",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.HTTPException",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('HTTPException', 'fastapi.HTTPException')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.ItemCreate",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('ItemCreate', 'models.ItemCreate')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 29, 41)>",
|
||||||
|
"docstring": "List all items.\n\nImplements the OpenAPI operation identified by\n``operationId: list_items``.\n\nReturns\n-------\nlist[Item]\n A list of item domain objects."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 44, 69)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nImplements the OpenAPI operation identified by\n``operationId: get_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\nItem\n The requested item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 72, 93)>",
|
||||||
|
"docstring": "Create a new item.\n\nImplements the OpenAPI operation identified by\n``operationId: create_item``.\n\nParameters\n----------\npayload : ItemCreate\n Request body describing the item to create.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nItem\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 96, 123)>",
|
||||||
|
"docstring": "Update an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: update_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : ItemCreate\n New item data.\n\nReturns\n-------\nItem\n The updated item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 126, 156)>",
|
||||||
|
"docstring": "Delete an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: delete_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nNone\n No content.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"test_model_app": {
|
||||||
|
"name": "test_model_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "End-to-end tests for the OpenAPI-first model CRUD example app.\n\nThese tests validate that all CRUD operations behave correctly\nagainst the in-memory mock data store using Pydantic models.\n- OpenAPI specification loading\n- OperationId-driven route binding on the server\n- OperationId-driven client invocation\n- Pydantic model-based request and response handling\n\nAll CRUD operations are exercised against an in-memory mock data store\nbacked by Pydantic domain models.\n\nThe tests assume:\n- OpenAPI-first route binding\n- Pydantic model validation\n- In-memory storage (no persistence guarantees)\n- Deterministic behavior in a single process",
|
||||||
|
"members": {
|
||||||
|
"TestClient": {
|
||||||
|
"name": "TestClient",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.TestClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('TestClient', 'fastapi.testclient.TestClient')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.app",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('app', 'main.app')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIClient', 'openapi_first.client.OpenAPIClient')>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('spec', 'openapi_first.client.OpenAPIClient.spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.base_url",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('base_url', 'openapi_first.client.OpenAPIClient.base_url')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.client",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('client', 'openapi_first.client.OpenAPIClient.client')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('operations', 'openapi_first.client.OpenAPIClient.operations')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"test_list_items_initial": {
|
||||||
|
"name": "test_list_items_initial",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_list_items_initial",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_list_items_initial', 37, 48)>",
|
||||||
|
"docstring": "Initial items should be present."
|
||||||
|
},
|
||||||
|
"test_get_item": {
|
||||||
|
"name": "test_get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_get_item', 51, 61)>",
|
||||||
|
"docstring": "Existing item should be retrievable by ID."
|
||||||
|
},
|
||||||
|
"test_create_item": {
|
||||||
|
"name": "test_create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_create_item', 64, 84)>",
|
||||||
|
"docstring": "Creating a new item should return the created entity."
|
||||||
|
},
|
||||||
|
"test_update_item": {
|
||||||
|
"name": "test_update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_update_item', 87, 111)>",
|
||||||
|
"docstring": "Updating an item should replace its values."
|
||||||
|
},
|
||||||
|
"test_delete_item": {
|
||||||
|
"name": "test_delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_delete_item', 114, 124)>",
|
||||||
|
"docstring": "Deleting an item should remove it from the store."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
65
mcp_docs/modules/openapi_first.templates.model_app.data.json
Normal file
65
mcp_docs/modules/openapi_first.templates.model_app.data.json
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.data",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.model_app.data",
|
||||||
|
"docstring": "In-memory data store using Pydantic models.\n\nThis module is NOT thread-safe and is intended for demos and scaffolds only.\nThis module provides a minimal, process-local data store for the\nmodel-based CRUD example application. It stores and returns domain\nobjects defined using Pydantic models and is intended solely for\ndemonstration and scaffolding purposes.\n\nThe implementation intentionally avoids:\n- persistence\n- concurrency guarantees\n- transactional semantics\n- validation beyond what Pydantic provides\n\nIt is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"objects": {
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"name": "Item",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.Item",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Item', 'models.Item')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.ItemCreate",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('ItemCreate', 'models.ItemCreate')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 34, 43)>",
|
||||||
|
"docstring": "Return all items in the data store.\n\nReturns\n-------\nlist[Item]\n A list of item domain objects."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 46, 65)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\nItem\n The requested item.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 68, 89)>",
|
||||||
|
"docstring": "Create a new item in the data store.\n\nA new identifier is assigned automatically. No additional validation\nis performed beyond Pydantic model validation.\n\nParameters\n----------\npayload : ItemCreate\n Data required to create a new item.\n\nReturns\n-------\nItem\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 92, 120)>",
|
||||||
|
"docstring": "Replace an existing item in the data store.\n\nThis function performs a full replacement of the stored item.\nPartial updates are not supported.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : ItemCreate\n New item data.\n\nReturns\n-------\nItem\n The updated item.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 123, 137)>",
|
||||||
|
"docstring": "Remove an item from the data store.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
356
mcp_docs/modules/openapi_first.templates.model_app.json
Normal file
356
mcp_docs/modules/openapi_first.templates.model_app.json
Normal file
@@ -0,0 +1,356 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.model_app",
|
||||||
|
"docstring": "OpenAPI-first model-based CRUD application template.\n\nThis package contains a complete, minimal example of an OpenAPI-first\nCRUD service that uses explicit Pydantic domain models for request and\nresponse schemas.\n\nThe application is assembled exclusively from:\n- an OpenAPI specification (``openapi.yaml``)\n- a handler namespace implementing CRUD operations (``routes``)\n- Pydantic domain models (``models``)\n- an in-memory mock data store (``data``)\n\nAll HTTP routes, methods, schemas, and operation bindings are defined\nin the OpenAPI specification and enforced at application startup.\nNo decorator-driven routing or implicit framework behavior is used.\n\nThis template demonstrates:\n- operationId-driven server-side route binding\n- explicit request and response modeling with Pydantic\n- explicit HTTP status code control in handlers\n- operationId-driven client usage against the same OpenAPI contract\n- end-to-end validation using in-memory data and tests\n\n----------------------------------------------------------------------\nScaffolding via CLI\n----------------------------------------------------------------------\n\nCreate a new model-based CRUD example service using the bundled template:\n\n openapi-first model_app\n\nCreate the service in a custom directory:\n\n openapi-first model_app my-model-service\n\nList all available application templates:\n\n openapi-first --list\n\nThe CLI copies template files verbatim into the target directory.\nNo code is generated or modified beyond the copied scaffold.\n\n----------------------------------------------------------------------\nClient Usage Example\n----------------------------------------------------------------------\n\nThe same OpenAPI specification used by the server can be used to\nconstruct a strict, operationId-driven HTTP client.\n\nExample client calls for model-based CRUD operations:\n\n from openapi_first.loader import load_openapi\n from openapi_first.client import OpenAPIClient\n\n spec = load_openapi(\"openapi.yaml\")\n client = OpenAPIClient(spec)\n\n # List items\n response = client.list_items()\n\n # Get item by ID\n response = client.get_item(\n path_params={\"item_id\": 1}\n )\n\n # Create item\n response = client.create_item(\n body={\"name\": \"Orange\", \"price\": 0.8}\n )\n\n # Update item\n response = client.update_item(\n path_params={\"item_id\": 1},\n body={\"name\": \"Green Apple\", \"price\": 0.6},\n )\n\n # Delete item\n response = client.delete_item(\n path_params={\"item_id\": 1}\n )\n\nClient guarantees:\n- One callable per OpenAPI ``operationId``\n- No hardcoded URLs or HTTP methods in user code\n- Request and response payloads conform to Pydantic models\n- Invalid or incomplete OpenAPI specs fail at client construction time\n\n----------------------------------------------------------------------\nNon-Goals\n----------------------------------------------------------------------\n\nThis template is intentionally minimal and is NOT:\n- production-ready\n- persistent or concurrency-safe\n- a reference architecture for data storage\n\nIt exists solely as a copyable example for learning, testing, and\nbootstrapping OpenAPI-first services.\n\nThis package is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"objects": {
|
||||||
|
"data": {
|
||||||
|
"name": "data",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.data",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "In-memory data store using Pydantic models.\n\nThis module is NOT thread-safe and is intended for demos and scaffolds only.\nThis module provides a minimal, process-local data store for the\nmodel-based CRUD example application. It stores and returns domain\nobjects defined using Pydantic models and is intended solely for\ndemonstration and scaffolding purposes.\n\nThe implementation intentionally avoids:\n- persistence\n- concurrency guarantees\n- transactional semantics\n- validation beyond what Pydantic provides\n\nIt is not part of the ``openapi_first`` library API surface.",
|
||||||
|
"members": {
|
||||||
|
"Dict": {
|
||||||
|
"name": "Dict",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.Dict",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Dict', 'typing.Dict')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"name": "Item",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.Item",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Item', 'models.Item')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.data.ItemCreate",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('ItemCreate', 'models.ItemCreate')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 34, 43)>",
|
||||||
|
"docstring": "Return all items in the data store.\n\nReturns\n-------\nlist[Item]\n A list of item domain objects."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 46, 65)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\nItem\n The requested item.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 68, 89)>",
|
||||||
|
"docstring": "Create a new item in the data store.\n\nA new identifier is assigned automatically. No additional validation\nis performed beyond Pydantic model validation.\n\nParameters\n----------\npayload : ItemCreate\n Data required to create a new item.\n\nReturns\n-------\nItem\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 92, 120)>",
|
||||||
|
"docstring": "Replace an existing item in the data store.\n\nThis function performs a full replacement of the stored item.\nPartial updates are not supported.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : ItemCreate\n New item data.\n\nReturns\n-------\nItem\n The updated item.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.data.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 123, 137)>",
|
||||||
|
"docstring": "Remove an item from the data store.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\n\nRaises\n------\nKeyError\n If the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"main": {
|
||||||
|
"name": "main",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.main",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first model-based CRUD example service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, request/response schemas, and operation\nbindings are defined in the OpenAPI document referenced by\n``openapi_path``. Python callables defined in the ``routes`` module are\nbound to OpenAPI operations strictly via ``operationId``.\n\nThis module contains no routing logic, persistence concerns, or\nframework configuration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"members": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"models": {
|
||||||
|
"name": "models",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.models",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "Pydantic domain models for the CRUD example.\n\nThis module defines Pydantic models that represent the domain entities\nused by the service. These models are referenced by the OpenAPI\nspecification for request and response schemas.\n\nThe models are declarative and framework-agnostic. They contain no\npersistence logic, validation beyond type constraints, or business\nbehavior.\n\nThis module is not part of the ``openapi_first`` library API surface.\nIt exists solely to support the example application template.",
|
||||||
|
"members": {
|
||||||
|
"BaseModel": {
|
||||||
|
"name": "BaseModel",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.models.BaseModel",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('BaseModel', 'pydantic.BaseModel')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemBase": {
|
||||||
|
"name": "ItemBase",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase",
|
||||||
|
"signature": "<bound method Class.signature of Class('ItemBase', 19, 27)>",
|
||||||
|
"docstring": "Base domain model for an item.\n\nDefines fields common to all item representations.",
|
||||||
|
"members": {
|
||||||
|
"name": {
|
||||||
|
"name": "name",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase.name",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"price": {
|
||||||
|
"name": "price",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase.price",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemCreate",
|
||||||
|
"signature": "<bound method Class.signature of Class('ItemCreate', 30, 39)>",
|
||||||
|
"docstring": "Domain model for item creation requests.\n\nThis model is used for request bodies when creating new items.\nIt intentionally excludes the ``id`` field, which is assigned\nby the service."
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"name": "Item",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.Item",
|
||||||
|
"signature": "<bound method Class.signature of Class('Item', 42, 50)>",
|
||||||
|
"docstring": "Domain model for a persisted item.\n\nThis model represents the full item state returned in responses,\nincluding the server-assigned identifier.",
|
||||||
|
"members": {
|
||||||
|
"id": {
|
||||||
|
"name": "id",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.Item.id",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.routes",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "CRUD route handlers bound via OpenAPI operationId.\n\nThis module defines OpenAPI-bound operation handlers for a model-based\nCRUD service. Functions in this module are bound to HTTP routes\nexclusively via OpenAPI ``operationId`` values.\n\nHandlers explicitly control HTTP response status codes to ensure runtime\nbehavior matches the OpenAPI contract. Domain models defined using\nPydantic are used for request and response payloads.\n\nNo routing decorators, path definitions, or implicit framework behavior\nappear in this module. All routing, HTTP methods, and schemas are defined\nin the OpenAPI specification.",
|
||||||
|
"members": {
|
||||||
|
"Response": {
|
||||||
|
"name": "Response",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.Response",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Response', 'fastapi.Response')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"HTTPException": {
|
||||||
|
"name": "HTTPException",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.HTTPException",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('HTTPException', 'fastapi.HTTPException')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.ItemCreate",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('ItemCreate', 'models.ItemCreate')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 29, 41)>",
|
||||||
|
"docstring": "List all items.\n\nImplements the OpenAPI operation identified by\n``operationId: list_items``.\n\nReturns\n-------\nlist[Item]\n A list of item domain objects."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 44, 69)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nImplements the OpenAPI operation identified by\n``operationId: get_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\nItem\n The requested item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 72, 93)>",
|
||||||
|
"docstring": "Create a new item.\n\nImplements the OpenAPI operation identified by\n``operationId: create_item``.\n\nParameters\n----------\npayload : ItemCreate\n Request body describing the item to create.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nItem\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 96, 123)>",
|
||||||
|
"docstring": "Update an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: update_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : ItemCreate\n New item data.\n\nReturns\n-------\nItem\n The updated item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 126, 156)>",
|
||||||
|
"docstring": "Delete an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: delete_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nNone\n No content.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"test_model_app": {
|
||||||
|
"name": "test_model_app",
|
||||||
|
"kind": "module",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": "End-to-end tests for the OpenAPI-first model CRUD example app.\n\nThese tests validate that all CRUD operations behave correctly\nagainst the in-memory mock data store using Pydantic models.\n- OpenAPI specification loading\n- OperationId-driven route binding on the server\n- OperationId-driven client invocation\n- Pydantic model-based request and response handling\n\nAll CRUD operations are exercised against an in-memory mock data store\nbacked by Pydantic domain models.\n\nThe tests assume:\n- OpenAPI-first route binding\n- Pydantic model validation\n- In-memory storage (no persistence guarantees)\n- Deterministic behavior in a single process",
|
||||||
|
"members": {
|
||||||
|
"TestClient": {
|
||||||
|
"name": "TestClient",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.TestClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('TestClient', 'fastapi.testclient.TestClient')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.app",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('app', 'main.app')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIClient', 'openapi_first.client.OpenAPIClient')>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('spec', 'openapi_first.client.OpenAPIClient.spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.base_url",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('base_url', 'openapi_first.client.OpenAPIClient.base_url')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.client",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('client', 'openapi_first.client.OpenAPIClient.client')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('operations', 'openapi_first.client.OpenAPIClient.operations')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"test_list_items_initial": {
|
||||||
|
"name": "test_list_items_initial",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_list_items_initial",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_list_items_initial', 37, 48)>",
|
||||||
|
"docstring": "Initial items should be present."
|
||||||
|
},
|
||||||
|
"test_get_item": {
|
||||||
|
"name": "test_get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_get_item', 51, 61)>",
|
||||||
|
"docstring": "Existing item should be retrievable by ID."
|
||||||
|
},
|
||||||
|
"test_create_item": {
|
||||||
|
"name": "test_create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_create_item', 64, 84)>",
|
||||||
|
"docstring": "Creating a new item should return the created entity."
|
||||||
|
},
|
||||||
|
"test_update_item": {
|
||||||
|
"name": "test_update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_update_item', 87, 111)>",
|
||||||
|
"docstring": "Updating an item should replace its values."
|
||||||
|
},
|
||||||
|
"test_delete_item": {
|
||||||
|
"name": "test_delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_delete_item', 114, 124)>",
|
||||||
|
"docstring": "Deleting an item should remove it from the store."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
39
mcp_docs/modules/openapi_first.templates.model_app.main.json
Normal file
39
mcp_docs/modules/openapi_first.templates.model_app.main.json
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.main",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.model_app.main",
|
||||||
|
"docstring": "Application entry point for an OpenAPI-first model-based CRUD example service.\n\nThis module constructs a FastAPI application exclusively from an\nOpenAPI specification and a handler namespace, without using\ndecorator-driven routing.\n\nAll HTTP routes, methods, request/response schemas, and operation\nbindings are defined in the OpenAPI document referenced by\n``openapi_path``. Python callables defined in the ``routes`` module are\nbound to OpenAPI operations strictly via ``operationId``.\n\nThis module contains no routing logic, persistence concerns, or\nframework configuration beyond application assembly.\n\nDesign guarantees:\n- OpenAPI is the single source of truth\n- No undocumented routes can exist\n- Every OpenAPI operationId must resolve to exactly one handler\n- All contract violations fail at application startup\n\nThis file is intended to be used as the ASGI entry point.\n\nExample:\n uvicorn main:app",
|
||||||
|
"objects": {
|
||||||
|
"OpenAPIFirstApp": {
|
||||||
|
"name": "OpenAPIFirstApp",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.main.OpenAPIFirstApp",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIFirstApp', 'openapi_first.app.OpenAPIFirstApp')>",
|
||||||
|
"docstring": "FastAPI application enforcing OpenAPI-first design.\n\n`OpenAPIFirstApp` subclasses FastAPI and replaces manual route\nregistration with OpenAPI-driven binding. All routes are derived\nfrom the provided OpenAPI specification, and each operationId is\nmapped to a Python function in the supplied routes module.\n\nParameters\n----------\nopenapi_path : str\n Filesystem path to the OpenAPI 3.x specification file.\n This specification is treated as the authoritative API contract.\n\nroutes_module : module\n Python module containing handler functions whose names correspond\n exactly to OpenAPI operationId values.\n\n**fastapi_kwargs\n Additional keyword arguments passed directly to `fastapi.FastAPI`\n (e.g., title, version, middleware, lifespan handlers).\n\nRaises\n------\nOpenAPIFirstError\n If the OpenAPI specification is invalid, or if any declared\n operationId does not have a corresponding handler function.\n\nBehavior guarantees\n-------------------\n- No route can exist without an OpenAPI declaration.\n- No OpenAPI operation can exist without a handler.\n- Swagger UI and `/openapi.json` always reflect the provided spec.\n- Handler functions remain framework-agnostic and testable.\n\nExample\n-------\n>>> from openapi_first import OpenAPIFirstApp\n>>> import app.routes as routes\n>>>\n>>> app = OpenAPIFirstApp(\n... openapi_path=\"app/openapi.json\",\n... routes_module=routes,\n... title=\"Example Service\"\n... )",
|
||||||
|
"members": {
|
||||||
|
"openapi": {
|
||||||
|
"name": "openapi",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.main.OpenAPIFirstApp.openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('openapi', 'openapi_first.app.OpenAPIFirstApp.openapi')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"routes": {
|
||||||
|
"name": "routes",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.main.routes",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('routes', 'routes')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.main.app",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.models",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.model_app.models",
|
||||||
|
"docstring": "Pydantic domain models for the CRUD example.\n\nThis module defines Pydantic models that represent the domain entities\nused by the service. These models are referenced by the OpenAPI\nspecification for request and response schemas.\n\nThe models are declarative and framework-agnostic. They contain no\npersistence logic, validation beyond type constraints, or business\nbehavior.\n\nThis module is not part of the ``openapi_first`` library API surface.\nIt exists solely to support the example application template.",
|
||||||
|
"objects": {
|
||||||
|
"BaseModel": {
|
||||||
|
"name": "BaseModel",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.models.BaseModel",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('BaseModel', 'pydantic.BaseModel')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemBase": {
|
||||||
|
"name": "ItemBase",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase",
|
||||||
|
"signature": "<bound method Class.signature of Class('ItemBase', 19, 27)>",
|
||||||
|
"docstring": "Base domain model for an item.\n\nDefines fields common to all item representations.",
|
||||||
|
"members": {
|
||||||
|
"name": {
|
||||||
|
"name": "name",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase.name",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"price": {
|
||||||
|
"name": "price",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemBase.price",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.ItemCreate",
|
||||||
|
"signature": "<bound method Class.signature of Class('ItemCreate', 30, 39)>",
|
||||||
|
"docstring": "Domain model for item creation requests.\n\nThis model is used for request bodies when creating new items.\nIt intentionally excludes the ``id`` field, which is assigned\nby the service."
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"name": "Item",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.models.Item",
|
||||||
|
"signature": "<bound method Class.signature of Class('Item', 42, 50)>",
|
||||||
|
"docstring": "Domain model for a persisted item.\n\nThis model represents the full item state returned in responses,\nincluding the server-assigned identifier.",
|
||||||
|
"members": {
|
||||||
|
"id": {
|
||||||
|
"name": "id",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.models.Item.id",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.routes",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.model_app.routes",
|
||||||
|
"docstring": "CRUD route handlers bound via OpenAPI operationId.\n\nThis module defines OpenAPI-bound operation handlers for a model-based\nCRUD service. Functions in this module are bound to HTTP routes\nexclusively via OpenAPI ``operationId`` values.\n\nHandlers explicitly control HTTP response status codes to ensure runtime\nbehavior matches the OpenAPI contract. Domain models defined using\nPydantic are used for request and response payloads.\n\nNo routing decorators, path definitions, or implicit framework behavior\nappear in this module. All routing, HTTP methods, and schemas are defined\nin the OpenAPI specification.",
|
||||||
|
"objects": {
|
||||||
|
"Response": {
|
||||||
|
"name": "Response",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.Response",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('Response', 'fastapi.Response')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"HTTPException": {
|
||||||
|
"name": "HTTPException",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.HTTPException",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('HTTPException', 'fastapi.HTTPException')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"ItemCreate": {
|
||||||
|
"name": "ItemCreate",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.ItemCreate",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('ItemCreate', 'models.ItemCreate')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"list_items": {
|
||||||
|
"name": "list_items",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.list_items",
|
||||||
|
"signature": "<bound method Function.signature of Function('list_items', 29, 41)>",
|
||||||
|
"docstring": "List all items.\n\nImplements the OpenAPI operation identified by\n``operationId: list_items``.\n\nReturns\n-------\nlist[Item]\n A list of item domain objects."
|
||||||
|
},
|
||||||
|
"get_item": {
|
||||||
|
"name": "get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('get_item', 44, 69)>",
|
||||||
|
"docstring": "Retrieve a single item by ID.\n\nImplements the OpenAPI operation identified by\n``operationId: get_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to retrieve.\n\nReturns\n-------\nItem\n The requested item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"create_item": {
|
||||||
|
"name": "create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('create_item', 72, 93)>",
|
||||||
|
"docstring": "Create a new item.\n\nImplements the OpenAPI operation identified by\n``operationId: create_item``.\n\nParameters\n----------\npayload : ItemCreate\n Request body describing the item to create.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nItem\n The newly created item."
|
||||||
|
},
|
||||||
|
"update_item": {
|
||||||
|
"name": "update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('update_item', 96, 123)>",
|
||||||
|
"docstring": "Update an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: update_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to update.\npayload : ItemCreate\n New item data.\n\nReturns\n-------\nItem\n The updated item.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
},
|
||||||
|
"delete_item": {
|
||||||
|
"name": "delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.routes.delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('delete_item', 126, 156)>",
|
||||||
|
"docstring": "Delete an existing item.\n\nImplements the OpenAPI operation identified by\n``operationId: delete_item``.\n\nParameters\n----------\nitem_id : int\n Identifier of the item to delete.\nresponse : fastapi.Response\n Response object used to set the HTTP status code.\n\nReturns\n-------\nNone\n No content.\n\nRaises\n------\nHTTPException\n 404 if the item does not exist."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.test_model_app",
|
||||||
|
"content": {
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app",
|
||||||
|
"docstring": "End-to-end tests for the OpenAPI-first model CRUD example app.\n\nThese tests validate that all CRUD operations behave correctly\nagainst the in-memory mock data store using Pydantic models.\n- OpenAPI specification loading\n- OperationId-driven route binding on the server\n- OperationId-driven client invocation\n- Pydantic model-based request and response handling\n\nAll CRUD operations are exercised against an in-memory mock data store\nbacked by Pydantic domain models.\n\nThe tests assume:\n- OpenAPI-first route binding\n- Pydantic model validation\n- In-memory storage (no persistence guarantees)\n- Deterministic behavior in a single process",
|
||||||
|
"objects": {
|
||||||
|
"TestClient": {
|
||||||
|
"name": "TestClient",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.TestClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('TestClient', 'fastapi.testclient.TestClient')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"app": {
|
||||||
|
"name": "app",
|
||||||
|
"kind": "alias",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.app",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('app', 'main.app')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"load_openapi": {
|
||||||
|
"name": "load_openapi",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.load_openapi",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('load_openapi', 'openapi_first.loader.load_openapi')>",
|
||||||
|
"docstring": "Load and validate an OpenAPI 3.x specification from disk.\n\nThe specification is parsed based on file extension and validated\nusing a strict OpenAPI schema validator. Any error results in an\nimmediate exception, preventing application startup.\n\nParameters\n----------\npath : str or pathlib.Path\n Filesystem path to an OpenAPI specification file.\n Supported extensions:\n - `.json`\n - `.yaml`\n - `.yml`\n\nReturns\n-------\ndict\n Parsed and validated OpenAPI specification.\n\nRaises\n------\nOpenAPISpecLoadError\n If the file does not exist, cannot be parsed, or fails\n OpenAPI schema validation."
|
||||||
|
},
|
||||||
|
"OpenAPIClient": {
|
||||||
|
"name": "OpenAPIClient",
|
||||||
|
"kind": "class",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('OpenAPIClient', 'openapi_first.client.OpenAPIClient')>",
|
||||||
|
"docstring": "OpenAPI-first HTTP client (httpx-based).\n\n- One callable per operationId\n- Explicit parameters (path, query, headers, body)\n- No implicit schema inference or mutation",
|
||||||
|
"members": {
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.spec",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('spec', 'openapi_first.client.OpenAPIClient.spec')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"base_url": {
|
||||||
|
"name": "base_url",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.base_url",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('base_url', 'openapi_first.client.OpenAPIClient.base_url')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.client",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('client', 'openapi_first.client.OpenAPIClient.client')>",
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"operations": {
|
||||||
|
"name": "operations",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.OpenAPIClient.operations",
|
||||||
|
"signature": "<bound method Alias.signature of Alias('operations', 'openapi_first.client.OpenAPIClient.operations')>",
|
||||||
|
"docstring": null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"name": "client",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.client",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"name": "spec",
|
||||||
|
"kind": "attribute",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.spec",
|
||||||
|
"signature": null,
|
||||||
|
"docstring": null
|
||||||
|
},
|
||||||
|
"test_list_items_initial": {
|
||||||
|
"name": "test_list_items_initial",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_list_items_initial",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_list_items_initial', 37, 48)>",
|
||||||
|
"docstring": "Initial items should be present."
|
||||||
|
},
|
||||||
|
"test_get_item": {
|
||||||
|
"name": "test_get_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_get_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_get_item', 51, 61)>",
|
||||||
|
"docstring": "Existing item should be retrievable by ID."
|
||||||
|
},
|
||||||
|
"test_create_item": {
|
||||||
|
"name": "test_create_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_create_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_create_item', 64, 84)>",
|
||||||
|
"docstring": "Creating a new item should return the created entity."
|
||||||
|
},
|
||||||
|
"test_update_item": {
|
||||||
|
"name": "test_update_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_update_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_update_item', 87, 111)>",
|
||||||
|
"docstring": "Updating an item should replace its values."
|
||||||
|
},
|
||||||
|
"test_delete_item": {
|
||||||
|
"name": "test_delete_item",
|
||||||
|
"kind": "function",
|
||||||
|
"path": "openapi_first.templates.model_app.test_model_app.test_delete_item",
|
||||||
|
"signature": "<bound method Function.signature of Function('test_delete_item', 114, 124)>",
|
||||||
|
"docstring": "Deleting an item should remove it from the store."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
90
mcp_docs/nav.json
Normal file
90
mcp_docs/nav.json
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"module": "openapi_first",
|
||||||
|
"resource": "doc://modules/openapi_first"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.app",
|
||||||
|
"resource": "doc://modules/openapi_first.app"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.binder",
|
||||||
|
"resource": "doc://modules/openapi_first.binder"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.cli",
|
||||||
|
"resource": "doc://modules/openapi_first.cli"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.client",
|
||||||
|
"resource": "doc://modules/openapi_first.client"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.errors",
|
||||||
|
"resource": "doc://modules/openapi_first.errors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.loader",
|
||||||
|
"resource": "doc://modules/openapi_first.loader"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates",
|
||||||
|
"resource": "doc://modules/openapi_first.templates"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.crud_app"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.data",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.crud_app.data"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.main",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.crud_app.main"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.routes",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.crud_app.routes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.crud_app.test_crud_app",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.crud_app.test_crud_app"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.health_app",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.health_app"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.health_app.main",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.health_app.main"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.health_app.routes",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.health_app.routes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.model_app"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.data",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.model_app.data"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.main",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.model_app.main"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.models",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.model_app.models"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.routes",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.model_app.routes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"module": "openapi_first.templates.model_app.test_model_app",
|
||||||
|
"resource": "doc://modules/openapi_first.templates.model_app.test_model_app"
|
||||||
|
}
|
||||||
|
]
|
||||||
82
mkdocs.yml
82
mkdocs.yml
@@ -1,57 +1,47 @@
|
|||||||
site_name: Aetoskia Mail Intake
|
site_name: Aetoskia OpenAPI First
|
||||||
site_description: Format-agnostic document reading, parsing, and scraping framework
|
site_description: Contract-first FastAPI application bootstrap and specification-driven HTTP client.
|
||||||
|
|
||||||
theme:
|
theme:
|
||||||
name: material
|
name: material
|
||||||
palette:
|
palette:
|
||||||
- scheme: slate
|
- scheme: slate
|
||||||
primary: deep purple
|
primary: deep purple
|
||||||
accent: cyan
|
accent: cyan
|
||||||
font:
|
font:
|
||||||
text: Inter
|
text: Inter
|
||||||
code: JetBrains Mono
|
code: JetBrains Mono
|
||||||
features:
|
features:
|
||||||
- navigation.tabs
|
- navigation.tabs
|
||||||
- navigation.expand
|
- navigation.expand
|
||||||
- navigation.top
|
- navigation.top
|
||||||
- navigation.instant
|
- navigation.instant
|
||||||
- content.code.copy
|
- content.code.copy
|
||||||
- content.code.annotate
|
- content.code.annotate
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- search
|
- search
|
||||||
- mkdocstrings:
|
- mkdocstrings:
|
||||||
handlers:
|
handlers:
|
||||||
python:
|
python:
|
||||||
paths: ["."]
|
paths:
|
||||||
options:
|
- .
|
||||||
docstring_style: google
|
options:
|
||||||
show_source: false
|
docstring_style: google
|
||||||
show_signature_annotations: true
|
show_source: false
|
||||||
separate_signature: true
|
show_signature_annotations: true
|
||||||
merge_init_into_class: true
|
separate_signature: true
|
||||||
inherited_members: true
|
merge_init_into_class: true
|
||||||
annotations_path: brief
|
inherited_members: true
|
||||||
show_root_heading: true
|
annotations_path: brief
|
||||||
group_by_category: true
|
show_root_heading: true
|
||||||
|
group_by_category: true
|
||||||
|
|
||||||
nav:
|
nav:
|
||||||
- Home: openapi_first/index.md
|
- Home: openapi_first/index.md
|
||||||
|
- Application Bootstrap:
|
||||||
- Core:
|
- openapi_first/app.md
|
||||||
- OpenAPI-First App: openapi_first/app.md
|
- openapi_first/binder.md
|
||||||
- Route Binder: openapi_first/binder.md
|
- Core Utilities:
|
||||||
- Spec Loaders: openapi_first/loader.md
|
- openapi_first/loader.md
|
||||||
- Client: openapi_first/client.md
|
- openapi_first/errors.md
|
||||||
|
- OpenAPI Client:
|
||||||
- CLI:
|
- openapi_first/client.md
|
||||||
- Home: openapi_first/cli.md
|
|
||||||
|
|
||||||
- Templates:
|
|
||||||
- Home: openapi_first/templates/index.md
|
|
||||||
- Health App: openapi_first/templates/health_app/index.md
|
|
||||||
- CRUD App: openapi_first/templates/crud_app/index.md
|
|
||||||
- Model App: openapi_first/templates/model_app/index.md
|
|
||||||
|
|
||||||
- Errors:
|
|
||||||
- Error Hierarchy: openapi_first/errors.md
|
|
||||||
|
|||||||
@@ -205,6 +205,27 @@ Design Guarantees
|
|||||||
|
|
||||||
FastAPI OpenAPI First favors correctness, explicitness, and contract
|
FastAPI OpenAPI First favors correctness, explicitness, and contract
|
||||||
enforcement over convenience shortcuts.
|
enforcement over convenience shortcuts.
|
||||||
|
|
||||||
|
## Core Philosophy
|
||||||
|
|
||||||
|
`FastAPI OpenAPI First` operates on the **Contract-as-Code** principle:
|
||||||
|
|
||||||
|
1. **Spec-Driven Routing**: The OpenAPI document *is* the router. Code only exists to fulfill established contracts.
|
||||||
|
2. **Startup Fail-Fast**: Binding mismatches (missing handlers or extra operations) are detected during app initialization, not at runtime.
|
||||||
|
3. **Decoupled Symmetry**: The same specification drives both the FastAPI server and the `httpx`-based client, ensuring type-safe communication.
|
||||||
|
|
||||||
|
## Documentation Design
|
||||||
|
|
||||||
|
Follow these "AI-Native" docstring principles to maximize developer and agent productivity:
|
||||||
|
|
||||||
|
### For Humans
|
||||||
|
- **Logical Grouping**: Document the Loader, Binder, and Client as distinct infrastructure layers.
|
||||||
|
- **Spec Snippets**: Always include the corresponding OpenAPI YAML/JSON snippet alongside Python examples.
|
||||||
|
|
||||||
|
### For LLMs
|
||||||
|
- **Full Path Linking**: Refer to cross-module dependencies using their full dotted paths (e.g., `openapi_first.loader.load_openapi`).
|
||||||
|
- **Complete Stubs**: Maintain high-fidelity `.pyi` stubs for all public interfaces to provide an optimized machine-context.
|
||||||
|
- **Traceable Errors**: Use specific `: description` pairs in `Raises` blocks to allow agents to accurately map errors to spec violations.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from . import app
|
from . import app
|
||||||
|
|||||||
7
openapi_first/__init__.pyi
Normal file
7
openapi_first/__init__.pyi
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
from . import app as app
|
||||||
|
from . import binder as binder
|
||||||
|
from . import loader as loader
|
||||||
|
from . import client as client
|
||||||
|
from . import errors as errors
|
||||||
|
|
||||||
|
__all__ = ["app", "binder", "loader", "client", "errors"]
|
||||||
5
openapi_first/app.pyi
Normal file
5
openapi_first/app.pyi
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
from fastapi import FastAPI
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
class OpenAPIFirstApp(FastAPI):
|
||||||
|
def __init__(self, *, openapi_path: str, routes_module: Any, **fastapi_kwargs: Any) -> None: ...
|
||||||
4
openapi_first/binder.pyi
Normal file
4
openapi_first/binder.pyi
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
from typing import Any, Dict
|
||||||
|
from fastapi import FastAPI
|
||||||
|
|
||||||
|
def bind_routes(app: FastAPI, spec: Dict[str, Any], routes_module: Any) -> None: ...
|
||||||
13
openapi_first/client.pyi
Normal file
13
openapi_first/client.pyi
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
from typing import Any, Callable, Dict, Optional
|
||||||
|
import httpx
|
||||||
|
from .errors import OpenAPIFirstError
|
||||||
|
|
||||||
|
class OpenAPIClientError(OpenAPIFirstError): ...
|
||||||
|
|
||||||
|
class OpenAPIClient:
|
||||||
|
spec: Dict[str, Any]
|
||||||
|
base_url: str
|
||||||
|
client: httpx.Client
|
||||||
|
def __init__(self, spec: Dict[str, Any], base_url: Optional[str] = ..., client: Optional[httpx.Client] = ...) -> None: ...
|
||||||
|
def __getattr__(self, name: str) -> Callable[..., httpx.Response]: ...
|
||||||
|
def operations(self) -> Dict[str, Callable[..., httpx.Response]]: ...
|
||||||
6
openapi_first/errors.pyi
Normal file
6
openapi_first/errors.pyi
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
from typing import Optional
|
||||||
|
|
||||||
|
class OpenAPIFirstError(Exception): ...
|
||||||
|
|
||||||
|
class MissingOperationHandler(OpenAPIFirstError):
|
||||||
|
def __init__(self, *, path: str, method: str, operation_id: Optional[str] = ...) -> None: ...
|
||||||
8
openapi_first/loader.pyi
Normal file
8
openapi_first/loader.pyi
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
from typing import Any, Dict, Union
|
||||||
|
|
||||||
|
from .errors import OpenAPIFirstError
|
||||||
|
|
||||||
|
class OpenAPISpecLoadError(OpenAPIFirstError): ...
|
||||||
|
|
||||||
|
def load_openapi(path: Union[str, Path]) -> Dict[str, Any]: ...
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
fastapi==0.128.0,
|
|
||||||
openapi-spec-validator==0.7.2
|
|
||||||
pyyaml==6.0.3
|
|
||||||
uvicorn==0.40.0
|
|
||||||
pydantic==2.12.5
|
|
||||||
httpx==0.28.1
|
|
||||||
|
|
||||||
# Test Packages
|
|
||||||
pytest==7.4.0
|
|
||||||
pytest-asyncio==0.21.0
|
|
||||||
pytest-cov==4.1.0
|
|
||||||
|
|
||||||
# Doc Packages
|
|
||||||
mkdocs==1.6.1
|
|
||||||
mkdocs-material==9.6.23
|
|
||||||
neoteroi-mkdocs==1.1.3
|
|
||||||
pymdown-extensions==10.16.1
|
|
||||||
mkdocstrings==1.0.0
|
|
||||||
mkdocstrings-python==2.0.1
|
|
||||||
Reference in New Issue
Block a user