{"id":13424661,"url":"https://github.com/koxudaxi/fastapi-code-generator","last_synced_at":"2025-05-13T23:06:09.271Z","repository":{"id":37542445,"uuid":"272182431","full_name":"koxudaxi/fastapi-code-generator","owner":"koxudaxi","description":"This code generator creates FastAPI app from an openapi file.","archived":false,"fork":false,"pushed_at":"2025-04-29T07:15:31.000Z","size":4783,"stargazers_count":1178,"open_issues_count":72,"forks_count":125,"subscribers_count":21,"default_branch":"master","last_synced_at":"2025-04-29T08:26:14.636Z","etag":null,"topics":["fastapi","generator","openapi","pydantic","python"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koxudaxi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["koxudaxi"]}},"created_at":"2020-06-14T10:49:14.000Z","updated_at":"2025-04-29T07:15:14.000Z","dependencies_parsed_at":"2022-07-10T15:48:01.099Z","dependency_job_id":"0f93b2f7-6599-4a27-947d-ce604c724f46","html_url":"https://github.com/koxudaxi/fastapi-code-generator","commit_stats":{"total_commits":319,"total_committers":28,"mean_commits":"11.392857142857142","dds":0.6144200626959248,"last_synced_commit":"06f0d2b1ac6e85e6a43a9be82835a524602818b6"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koxudaxi%2Ffastapi-code-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koxudaxi%2Ffastapi-code-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koxudaxi%2Ffastapi-code-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koxudaxi%2Ffastapi-code-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koxudaxi","download_url":"https://codeload.github.com/koxudaxi/fastapi-code-generator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254040771,"owners_count":22004611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastapi","generator","openapi","pydantic","python"],"created_at":"2024-07-31T00:00:57.485Z","updated_at":"2025-05-13T23:06:04.251Z","avatar_url":"https://github.com/koxudaxi.png","language":"Python","funding_links":["https://github.com/sponsors/koxudaxi"],"categories":["Third-Party Extensions","HarmonyOS","Python","FastAPI Utilities"],"sub_categories":["Developer Tools","Windows Manager"],"readme":"# fastapi-code-generator\n\nThis code generator creates a FastAPI app from an openapi file.\n\n[![PyPI version](https://badge.fury.io/py/fastapi-code-generator.svg)](https://pypi.python.org/pypi/fastapi-code-generator)\n[![Downloads](https://pepy.tech/badge/fastapi-code-generator/month)](https://pepy.tech/project/fastapi-code-generator)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/fastapi-code-generator)](https://pypi.python.org/pypi/fastapi-code-generator)\n[![codecov](https://codecov.io/gh/koxudaxi/fastapi-code-generator/branch/master/graph/badge.svg)](https://codecov.io/gh/koxudaxi/fastapi-code-generator)\n![license](https://img.shields.io/github/license/koxudaxi/fastapi-code-generator.svg)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n\n## This project is in experimental phase.\n\nfastapi-code-generator uses [datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator) to generate pydantic models\n\n## Help\nSee [documentation](https://koxudaxi.github.io/fastapi-code-generator) for more details.\n\n\n## Installation\n\nTo install `fastapi-code-generator`:\n```sh\n$ pip install fastapi-code-generator\n```\n\n## Usage\n\nThe `fastapi-code-generator` command:\n```\nUsage: fastapi-codegen [OPTIONS]\n\nOptions:\n  -i, --input FILENAME     [required]\n  -o, --output PATH        [required]\n  -t, --template-dir PATH\n  -m, --model-file         Specify generated model file path + name, if not default to models.py\n  -r, --generate-routers   Generate modular api with multiple routers using RouterAPI (for bigger applications).\n  --specify-tags           Use along with --generate-routers to generate specific routers from given list of tags.\n  -c, --custom-visitors    PATH - A custom visitor that adds variables to the template.\n  -d, --output-model-type  Specify a Pydantic base model to use (see [datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator); default is `pydantic.BaseModel`).\n  -p, --python-version     Specify a Python version to target (default is `3.8`).\n  --install-completion     Install completion for the current shell.\n  --show-completion        Show completion for the current shell, to copy it\n                           or customize the installation.\n  --help                   Show this message and exit.\n```\n\n### Pydantic 2 support\n\nSpecify the Pydantic 2 `BaseModel` version in the command line, for example:\n\n```sh\n$ fastapi-codegen --input api.yaml --output app --output-model-type pydantic_v2.BaseModel\n```\n\n## Example\n### OpenAPI\n```sh\n$ fastapi-codegen --input api.yaml --output app\n```\n\n\u003cdetails\u003e\n\u003csummary\u003eapi.yaml\u003c/summary\u003e\n\u003cpre\u003e\n\u003ccode\u003e\nopenapi: \"3.0.0\"\ninfo:\n  version: 1.0.0\n  title: Swagger Petstore\n  license:\n    name: MIT\nservers:\n  - url: http://petstore.swagger.io/v1\npaths:\n  /pets:\n    get:\n      summary: List all pets\n      operationId: listPets\n      tags:\n        - pets\n      parameters:\n        - name: limit\n          in: query\n          description: How many items to return at one time (max 100)\n          required: false\n          schema:\n            type: integer\n            format: int32\n      responses:\n        '200':\n          description: A paged array of pets\n          headers:\n            x-next:\n              description: A link to the next page of responses\n              schema:\n                type: string\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Pets\"\n        default:\n          description: unexpected error\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Error\"\n                x-amazon-apigateway-integration:\n                  uri:\n                    Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${PythonVersionFunction.Arn}/invocations\n                  passthroughBehavior: when_no_templates\n                  httpMethod: POST\n                  type: aws_proxy\n    post:\n      summary: Create a pet\n      operationId: createPets\n      tags:\n        - pets\n      responses:\n        '201':\n          description: Null response\n        default:\n          description: unexpected error\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Error\"\n                x-amazon-apigateway-integration:\n                  uri:\n                    Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${PythonVersionFunction.Arn}/invocations\n                  passthroughBehavior: when_no_templates\n                  httpMethod: POST\n                  type: aws_proxy\n  /pets/{petId}:\n    get:\n      summary: Info for a specific pet\n      operationId: showPetById\n      tags:\n        - pets\n      parameters:\n        - name: petId\n          in: path\n          required: true\n          description: The id of the pet to retrieve\n          schema:\n            type: string\n      responses:\n        '200':\n          description: Expected response to a valid request\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Pets\"\n        default:\n          description: unexpected error\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Error\"\n    x-amazon-apigateway-integration:\n      uri:\n        Fn::Sub: arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${PythonVersionFunction.Arn}/invocations\n      passthroughBehavior: when_no_templates\n      httpMethod: POST\n      type: aws_proxy\ncomponents:\n  schemas:\n    Pet:\n      required:\n        - id\n        - name\n      properties:\n        id:\n          type: integer\n          format: int64\n        name:\n          type: string\n        tag:\n          type: string\n    Pets:\n      type: array\n      description: list of pet\n      items:\n        $ref: \"#/components/schemas/Pet\"\n    Error:\n      required:\n        - code\n        - message\n      properties:\n        code:\n          type: integer\n          format: int32\n        message:\n          type: string\n\u003c/code\u003e\n\u003c/pre\u003e\n\u003c/details\u003e\n\n\n`app/main.py`:\n```python\n# generated by fastapi-codegen:\n#   filename:  api.yaml\n#   timestamp: 2020-06-14T10:45:22+00:00\n\nfrom __future__ import annotations\n\nfrom typing import Optional\n\nfrom fastapi import FastAPI, Query\n\nfrom .models import Pets\n\napp = FastAPI(version=\"1.0.0\", title=\"Swagger Petstore\", license=\"{'name': 'MIT'}\",)\n\n\n@app.get('/pets', response_model=Pets)\ndef list_pets(limit: Optional[int] = None) -\u003e Pets:\n    \"\"\"\n    List all pets\n    \"\"\"\n    pass\n\n\n@app.post('/pets', response_model=None)\ndef create_pets() -\u003e None:\n    \"\"\"\n    Create a pet\n    \"\"\"\n    pass\n\n\n@app.get('/pets/{pet_id}', response_model=Pets)\ndef show_pet_by_id(pet_id: str = Query(..., alias='petId')) -\u003e Pets:\n    \"\"\"\n    Info for a specific pet\n    \"\"\"\n    pass\n\n```\n\n`app/models.py`:\n```python\n# generated by datamodel-codegen:\n#   filename:  api.yaml\n#   timestamp: 2020-06-14T10:45:22+00:00\n\nfrom typing import List, Optional\n\nfrom pydantic import BaseModel, Field\n\n\nclass Pet(BaseModel):\n    id: int\n    name: str\n    tag: Optional[str] = None\n\n\nclass Pets(BaseModel):\n    __root__: List[Pet] = Field(..., description='list of pet')\n\n\nclass Error(BaseModel):\n    code: int\n    message: str\n```\n\n## Custom Template\nIf you want to generate custom `*.py` files then you can give a custom template directory to fastapi-code-generator with `-t` or `--template-dir` options of the command.\n\nfastapi-code-generator will search for [jinja2](https://jinja.palletsprojects.com/) template files in given template directory, for example `some_jinja_templates/list_pets.py`.\n\n```bash\nfastapi-code-generator --template-dir some_jinja_templates --output app --input api.yaml\n```\n\nThese files will be rendered and written to the output directory. Also, the generated file names will be created with the template name and extension of `*.py`, for example `app/list_pets.py` will be a separate file generated from the jinja template alongside the default `app/main.py`\n\n### Variables\nYou can use the following variables in the jinja2 templates\n\n- `imports`  all imports statements\n- `info`  all info statements\n- `operations` `operations` is list of `operation`\n  - `operation.type` HTTP METHOD\n  - `operation.path` Path\n  - `operation.snake_case_path` Snake-cased Path\n  - `operation.response` response object\n  - `operation.function_name` function name is created `operationId` or `METHOD` + `Path` \n  - `operation.snake_case_arguments` Snake-cased function arguments\n  - `operation.security` [Security](https://swagger.io/docs/specification/authentication/)\n  - `operation.summary` a summary\n  - `operation.tags` [Tags](https://swagger.io/docs/specification/grouping-operations-with-tags/)\n\n### default template \n`main.jinja2`\n```jinja2\nfrom __future__ import annotations\n\nfrom fastapi import FastAPI\n\n{{imports}}\n\napp = FastAPI(\n    {% if info %}\n    {% for key,value in info.items() %}\n    {{ key }} = \"{{ value }}\",\n    {% endfor %}\n    {% endif %}\n    )\n\n\n{% for operation in operations %}\n@app.{{operation.type}}('{{operation.snake_case_path}}', response_model={{operation.response}})\ndef {{operation.function_name}}({{operation.snake_case_arguments}}) -\u003e {{operation.response}}:\n    {%- if operation.summary %}\n    \"\"\"\n    {{ operation.summary }}\n    \"\"\"\n    {%- endif %}\n    pass\n{% endfor %}\n\n```\n\n### modular template\n`modular_template/main.jinja2`:\n```jinja\nfrom __future__ import annotations\n\nfrom fastapi import FastAPI\n\nfrom .routers import {{ routers | join(\", \") }}\n\napp = FastAPI(\n    {% if info %}\n    {% for key,value in info.items() %}\n    {% set info_value= value.__repr__() %}\n    {{ key }} = {{info_value}},\n    {% endfor %}\n    {% endif %}\n    )\n\n{% for router in routers -%}\napp.include_router({{router}}.router)\n{% endfor -%}\n\n@app.get(\"/\")\nasync def root():\n    return {\"message\": \"Gateway of the App\"}\n```\n\n`modular_template/routers.jinja2`:\n```jinja\nfrom __future__ import annotations\n\nfrom fastapi import APIRouter\nfrom fastapi import FastAPI\n\nfrom ..dependencies import *\n\nrouter = APIRouter(\n    tags=['{{tag}}']\n    )\n\n{% for operation in operations %}\n{% if operation.tags[0] == tag %}\n@router.{{operation.type}}('{{operation.snake_case_path}}', response_model={{operation.response}}\n    {% if operation.additional_responses %}\n        , responses={\n            {% for status_code, models in operation.additional_responses.items() %}\n                '{{ status_code }}': {\n                {% for key, model in models.items() %}\n                    '{{ key }}': {{ model }}{% if not loop.last %},{% endif %}\n                {% endfor %}\n                }{% if not loop.last %},{% endif %}\n            {% endfor %}\n        }\n    {% endif %}\n    {% if operation.tags%}\n    , tags={{operation.tags}}\n    {% endif %})\ndef {{operation.function_name}}({{operation.snake_case_arguments}}) -\u003e {{operation.return_type}}:\n    {%- if operation.summary %}\n    \"\"\"\n    {{ operation.summary }}\n    \"\"\"\n    {%- endif %}\n    pass\n{% endif %}\n{% endfor %}\n```\n\n`modular_template/dependencies.jinja2`:\n```jinja\n{{imports}}\n```\n\n## Custom Visitors\n\nCustom visitors allow you to pass custom variables to your custom templates.\n\nE.g.\n\n### custom template\n`custom-template.jinja2`\n```jinja2\n#{ % custom_header %}\nfrom __future__ import annotations\n\nfrom fastapi import FastAPI\n\n...\n```\n\n### custom visitor\n`custom-visitor.py`\n```python\nfrom typing import Dict, Optional\n\nfrom fastapi_code_generator.parser import OpenAPIParser\nfrom fastapi_code_generator.visitor import Visitor\n\n\ndef custom_visitor(parser: OpenAPIParser, model_path: Path) -\u003e Dict[str, object]:\n    return {'custom_header': 'My header'}\n\n\nvisit: Visitor = custom_visitor\n```\n\n### Multiple Files using APIRouter (For Bigger Applications)\n\n```\n├── app                      # \"app\" is a Root directory      \n│   ├── main.py              # \"main\" module\n│   ├── models.py            # \"models\" of the application\n│   ├── dependencies.py      # \"dependencies\" module, e.g. import app.dependencies\n│   └── routers              # \"routers\" is a \"app subpackage\"\n│       ├── fat_cats.py      # \"fat_cats\" submodule, e.g. import app.routers.fat_cats\n│       ├── slim_dogs.py     # \"slim_dogs\" submodule, e.g. import app.routers.slim_dogs\n│       └── wild_boars.py    # \"wild_boars\" submodule, e.g. import app.routers.wild_boars\n```\n\nSee [documentation](https://fastapi.tiangolo.com/tutorial/bigger-applications/) of APIRouter OpenAPI for more details.\n\n**_Generate main aside with all of its routers_**:\n```bash\n$ fastapi-codegen --input swagger.yaml --output app --generate-routers\n```\n\n**_Regenerate specific routers_**:\n```bash\n$ fastapi-codegen --input swagger.yaml --output app --generate-routers --specify-tags \"Wild Boars, Fat Cats\"\n```\n\n\n\u003cdetails\u003e\n\u003csummary\u003eswagger.yaml\u003c/summary\u003e\n\u003cpre\u003e\n\u003ccode\u003e\nopenapi: \"3.0.0\"\ninfo:\n  version: 1.0.0\n  title: Swagger Petstore\n  license:\n    name: MIT\nservers:\n  - url: /\n  - url: http://petstore.swagger.io/v1\n  - url: http://localhost:8080/\npaths:\n  /boars:\n    get:\n      summary: List All Wild Boars\n      operationId: listWildBoars\n      tags:\n        - Wild Boars\n      parameters:\n        - name: limit\n          in: query\n          description: How many items to return at one time (max 100)\n          required: false\n          schema:\n            type: integer\n      responses:\n        '200':\n          description: An array of wild boars\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/WildBoars\"\n    post:\n      summary: Create a Wild Boar\n      operationId: createWildBoars\n      tags:\n        - Wild Boars\n      responses:\n        '201':\n          description: Null response\n  /boars/{boarId}:\n    get:\n      summary: Info For a Specific Boar\n      operationId: showBoarById\n      tags:\n        - Wild Boars\n      parameters:\n        - name: boarId\n          in: path\n          required: true\n          description: The id of the boar to retrieve\n          schema:\n            type: string\n      responses:\n        '200':\n          description: Expected response to a valid request\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Pet\"\n  /cats:\n    get:\n      summary: List All Fat Cats\n      operationId: listFatCats\n      tags:\n        - Fat Cats\n      parameters:\n        - name: limit\n          in: query\n          description: How many items to return at one time (max 100)\n          required: false\n          schema:\n            type: integer\n      responses:\n        '200':\n          description: An array of fat cats\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/FatCats\"\n    post:\n      summary: Create a Fat Cat\n      operationId: createFatCats\n      tags:\n        - Fat Cats\n      responses:\n        '201':\n          description: Null response\n  /cats/{catId}:\n    get:\n      summary: Info For a Specific Cat\n      operationId: showCatById\n      tags:\n        - Fat Cats\n      parameters:\n        - name: catId\n          in: path\n          required: true\n          description: The id of the cat to retrieve\n          schema:\n            type: string\n      responses:\n        '200':\n          description: Expected response to a valid request\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Pet\"\n  /dogs:\n    get:\n      summary: List All Slim Dogs\n      operationId: listSlimDogs\n      tags:\n        - Slim Dogs\n      parameters:\n        - name: limit\n          in: query\n          description: How many items to return at one time (max 100)\n          required: false\n          schema:\n            type: integer\n      responses:\n        '200':\n          description: An array of slim dogs\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/SlimDogs\"\n    post:\n      summary: Create a Slim Dog\n      operationId: createSlimDogs\n      tags:\n        - Slim Dogs\n      responses:\n        '201':\n          description: Null response\n  /dogs/{dogId}:\n    get:\n      summary: Info For a Specific Dog\n      operationId: showDogById\n      tags:\n        - Slim Dogs\n      parameters:\n        - name: dogId\n          in: path\n          required: true\n          description: The id of the dog to retrieve\n          schema:\n            type: string\n      responses:\n        '200':\n          description: Expected response to a valid request\n          content:\n            application/json:\n              schema:\n                $ref: \"#/components/schemas/Pet\"\ncomponents:\n  schemas:\n    Pet:\n      required:\n        - id\n        - name\n      properties:\n        id:\n          type: integer\n        name:\n          type: string\n        tag:\n          type: string\n    FatCats:\n      type: array\n      description: list of fat cats\n      items:\n        $ref: \"#/components/schemas/Pet\"\n    SlimDogs:\n      type: array\n      description: list of slim dogs\n      items:\n        $ref: \"#/components/schemas/Pet\"\n    WildBoars:\n      type: array\n      description: list of wild boars\n      items:\n        $ref: \"#/components/schemas/Pet\"\n\u003c/code\u003e\n\u003c/pre\u003e\n\u003c/details\u003e\n\n`app/main.py`:\n\n```python\n# generated by fastapi-codegen:\n#   filename:  swagger.yaml\n#   timestamp: 2023-04-04T12:06:16+00:00\n\nfrom __future__ import annotations\n\nfrom fastapi import FastAPI\n\nfrom .routers import fat_cats, slim_dogs, wild_boars\n\napp = FastAPI(\n    version='1.0.0',\n    title='Swagger Petstore',\n    license={'name': 'MIT'},\n    servers=[\n        {'url': '/'},\n        {'url': 'http://petstore.swagger.io/v1'},\n        {'url': 'http://localhost:8080/'},\n    ],\n)\n\napp.include_router(fat_cats.router)\napp.include_router(slim_dogs.router)\napp.include_router(wild_boars.router)\n\n\n@app.get(\"/\")\nasync def root():\n    return {\"message\": \"Gateway of the App\"}\n```\n\n`app/models.py`:\n\n```python\n# generated by fastapi-codegen:\n#   filename:  swagger.yaml\n#   timestamp: 2023-04-04T12:06:16+00:00\n\nfrom __future__ import annotations\n\nfrom typing import List, Optional\n\nfrom pydantic import BaseModel, Field\n\n\nclass Pet(BaseModel):\n    id: int\n    name: str\n    tag: Optional[str] = None\n\n\nclass FatCats(BaseModel):\n    __root__: List[Pet] = Field(..., description='list of fat cats')\n\n\nclass SlimDogs(BaseModel):\n    __root__: List[Pet] = Field(..., description='list of slim dogs')\n\n\nclass WildBoars(BaseModel):\n    __root__: List[Pet] = Field(..., description='list of wild boars')\n```\n\n`app/routers/fat_cats.py`:\n\n```python\n# generated by fastapi-codegen:\n#   filename:  swagger.yaml\n#   timestamp: 2023-04-04T12:06:16+00:00\n\nfrom __future__ import annotations\n\nfrom fastapi import APIRouter\n\nfrom ..dependencies import *\n\nrouter = APIRouter(tags=['Fat Cats'])\n\n\n@router.get('/cats', response_model=FatCats, tags=['Fat Cats'])\ndef list_fat_cats(limit: Optional[int] = None) -\u003e FatCats:\n    \"\"\"\n    List All Fat Cats\n    \"\"\"\n    pass\n\n\n@router.post('/cats', response_model=None, tags=['Fat Cats'])\ndef create_fat_cats() -\u003e None:\n    \"\"\"\n    Create a Fat Cat\n    \"\"\"\n    pass\n\n\n@router.get('/cats/{cat_id}', response_model=Pet, tags=['Fat Cats'])\ndef show_cat_by_id(cat_id: str = Path(..., alias='catId')) -\u003e Pet:\n    \"\"\"\n    Info For a Specific Cat\n    \"\"\"\n    pass\n```\n\n`app/routers/slim_dogs.py`:\n\n```python\n# generated by fastapi-codegen:\n#   filename:  swagger.yaml\n#   timestamp: 2023-04-04T12:06:16+00:00\n\nfrom __future__ import annotations\n\nfrom fastapi import APIRouter\n\nfrom ..dependencies import *\n\nrouter = APIRouter(tags=['Slim Dogs'])\n\n\n@router.get('/dogs', response_model=SlimDogs, tags=['Slim Dogs'])\ndef list_slim_dogs(limit: Optional[int] = None) -\u003e SlimDogs:\n    \"\"\"\n    List All Slim Dogs\n    \"\"\"\n    pass\n\n\n@router.post('/dogs', response_model=None, tags=['Slim Dogs'])\ndef create_slim_dogs() -\u003e None:\n    \"\"\"\n    Create a Slim Dog\n    \"\"\"\n    pass\n\n\n@router.get('/dogs/{dog_id}', response_model=Pet, tags=['Slim Dogs'])\ndef show_dog_by_id(dog_id: str = Path(..., alias='dogId')) -\u003e Pet:\n    \"\"\"\n    Info For a Specific Dog\n    \"\"\"\n    pass\n```\n\n`app/routers/wild_boars.py`:\n\n```python\n# generated by fastapi-codegen:\n#   filename:  swagger.yaml\n#   timestamp: 2023-04-04T12:06:16+00:00\n\nfrom __future__ import annotations\n\nfrom fastapi import APIRouter\n\nfrom ..dependencies import *\n\nrouter = APIRouter(tags=['Wild Boars'])\n\n\n@router.get('/boars', response_model=WildBoars, tags=['Wild Boars'])\ndef list_wild_boars(limit: Optional[int] = None) -\u003e WildBoars:\n    \"\"\"\n    List All Wild Boars\n    \"\"\"\n    pass\n\n\n@router.post('/boars', response_model=None, tags=['Wild Boars'])\ndef create_wild_boars() -\u003e None:\n    \"\"\"\n    Create a Wild Boar\n    \"\"\"\n    pass\n\n\n@router.get('/boars/{boar_id}', response_model=Pet, tags=['Wild Boars'])\ndef show_boar_by_id(boar_id: str = Path(..., alias='boarId')) -\u003e Pet:\n    \"\"\"\n    Info For a Specific Boar\n    \"\"\"\n    pass\n```\n\n`app/dependencies.py`:\n\n```python\n# generated by fastapi-codegen:\n#   filename:  swagger.yaml\n#   timestamp: 2023-04-04T12:06:16+00:00\n\nfrom __future__ import annotations\n\nfrom typing import Optional\n\nfrom fastapi import Path\n\nfrom .models import FatCats, Pet, SlimDogs, WildBoars\n```\n## PyPi \n\n[https://pypi.org/project/fastapi-code-generator](https://pypi.org/project/fastapi-code-generator)\n\n## License\n\nfastapi-code-generator is released under the MIT License. http://www.opensource.org/licenses/mit-license\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoxudaxi%2Ffastapi-code-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoxudaxi%2Ffastapi-code-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoxudaxi%2Ffastapi-code-generator/lists"}