├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── README.rst ├── fastapi_blueprint ├── __init__.py ├── cli.py ├── tests │ ├── __init__.py │ └── cli_test.py └── utils │ ├── __init__.py │ ├── component.py │ ├── constants.py │ └── project_structure.py └── setup.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/README.rst -------------------------------------------------------------------------------- /fastapi_blueprint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastapi_blueprint/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/fastapi_blueprint/cli.py -------------------------------------------------------------------------------- /fastapi_blueprint/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastapi_blueprint/tests/cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/fastapi_blueprint/tests/cli_test.py -------------------------------------------------------------------------------- /fastapi_blueprint/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastapi_blueprint/utils/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/fastapi_blueprint/utils/component.py -------------------------------------------------------------------------------- /fastapi_blueprint/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/fastapi_blueprint/utils/constants.py -------------------------------------------------------------------------------- /fastapi_blueprint/utils/project_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/fastapi_blueprint/utils/project_structure.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dataak/fastapi-blueprint/HEAD/setup.py --------------------------------------------------------------------------------