fastapi-initializer 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastapi_initializer-1.0.0/.gitignore +13 -0
- fastapi_initializer-1.0.0/.python-version +1 -0
- fastapi_initializer-1.0.0/LICENSE +21 -0
- fastapi_initializer-1.0.0/PKG-INFO +225 -0
- fastapi_initializer-1.0.0/README.md +195 -0
- fastapi_initializer-1.0.0/main.py +1017 -0
- fastapi_initializer-1.0.0/pyproject.toml +54 -0
- fastapi_initializer-1.0.0/uv.lock +158 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.13
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Dasun Nethsara
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fastapi-initializer
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: An interactive CLI tool that scaffolds production-ready FastAPI projects with sensible defaults.
|
|
5
|
+
Project-URL: Homepage, https://github.com/DasunNethsara-04/fastapi-initializer
|
|
6
|
+
Project-URL: Repository, https://github.com/DasunNethsara-04/fastapi-initializer
|
|
7
|
+
Project-URL: Issues, https://github.com/DasunNethsara-04/fastapi-initializer/issues
|
|
8
|
+
Author-email: Dasun Nethsara <dasunnethsara04@gmail.com>
|
|
9
|
+
License: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: boilerplate,cli,fastapi,initializer,project-generator,scaffold,template
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Framework :: FastAPI
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
24
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
25
|
+
Classifier: Typing :: Typed
|
|
26
|
+
Requires-Python: >=3.10
|
|
27
|
+
Requires-Dist: inquirerpy>=0.3.4
|
|
28
|
+
Requires-Dist: typer>=0.9.0
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
|
|
31
|
+
# FastAPI Initializer
|
|
32
|
+
|
|
33
|
+
[](https://pypi.org/project/fastapi-initializer/)
|
|
34
|
+
[](https://pypi.org/project/fastapi-initializer/)
|
|
35
|
+
[](https://opensource.org/licenses/MIT)
|
|
36
|
+
|
|
37
|
+
An interactive CLI tool that scaffolds **production-ready FastAPI projects** with sensible defaults โ so you can skip the boilerplate and start building right away.
|
|
38
|
+
|
|
39
|
+

|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## โจ What Does It Do?
|
|
44
|
+
|
|
45
|
+
Run a single command, answer a few prompts, and get a fully structured FastAPI project with:
|
|
46
|
+
|
|
47
|
+
- ๐๏ธ **Clean project layout** - `api/`, `core/`, `models/`, `schemas/`, `services/`
|
|
48
|
+
- ๐๏ธ **Database support** - SQLite, MySQL, or PostgreSQL
|
|
49
|
+
- ๐ง **ORM of your choice** - SQLAlchemy or SQLModel
|
|
50
|
+
- ๐งช **Testing setup** - pytest / pytest-asyncio with httpx, ready to go
|
|
51
|
+
- ๐งน **Linter config** - Black or Ruff
|
|
52
|
+
- ๐ณ **Docker ready** - optional `Dockerfile` & `docker-compose.yml`
|
|
53
|
+
- โ๏ธ **Environment config** - pydantic-settings with `.env` support
|
|
54
|
+
- ๐ **Documentation** - every folder gets a README explaining its purpose
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## ๐ฆ Installation
|
|
59
|
+
|
|
60
|
+
### Install from PyPI
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
pip install fastapi-initializer
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
Or with [uv](https://docs.astral.sh/uv/):
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
uv pip install fastapi-initializer
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
### Install from Source (for development)
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
# Clone the repository
|
|
76
|
+
git clone https://github.com/DasunNethsara-04/fastapi-initializer.git
|
|
77
|
+
cd fastapi-initializer
|
|
78
|
+
|
|
79
|
+
# Create a virtual environment and install dependencies
|
|
80
|
+
uv sync
|
|
81
|
+
|
|
82
|
+
# Run the CLI directly
|
|
83
|
+
uv run fastapi-init my-project
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
---
|
|
87
|
+
|
|
88
|
+
## ๐ Usage
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
fastapi-init my-project
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
You'll be guided through interactive prompts:
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
โฏ FastAPI Initializer
|
|
98
|
+
Creating project: my-project
|
|
99
|
+
|
|
100
|
+
โฏ What kind of database do you want to use?
|
|
101
|
+
> SQLite / MySQL / PostgreSQL / None
|
|
102
|
+
|
|
103
|
+
โฏ Which ORM do you want to use?
|
|
104
|
+
> SQLAlchemy / SQLModel / None
|
|
105
|
+
|
|
106
|
+
โฏ What linter do you want to use?
|
|
107
|
+
> Ruff / Black / None
|
|
108
|
+
|
|
109
|
+
โฏ What testing framework do you like to use?
|
|
110
|
+
> PyTest / pytest-async-io / None
|
|
111
|
+
|
|
112
|
+
โฏ Do you want to create a Docker file for this project?
|
|
113
|
+
> Yes / No
|
|
114
|
+
|
|
115
|
+
โ FastAPI project 'my-project' created successfully!
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
Then get started in seconds:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
cd my-project
|
|
122
|
+
uv sync
|
|
123
|
+
uv run uvicorn app.main:app --reload
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Open **http://127.0.0.1:8000/docs** to see the interactive API docs.
|
|
127
|
+
|
|
128
|
+
---
|
|
129
|
+
|
|
130
|
+
## ๐ Generated Project Structure
|
|
131
|
+
|
|
132
|
+
The generated project follows a modular, production-style layout:
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
my-project/
|
|
136
|
+
โโโ app/
|
|
137
|
+
โ โโโ api/
|
|
138
|
+
โ โ โโโ v1/
|
|
139
|
+
โ โ โ โโโ users.py # User endpoints
|
|
140
|
+
โ โ โโโ __init__.py # Mounts versioned routers
|
|
141
|
+
โ โ โโโ deps.py # Shared dependencies (e.g. auth)
|
|
142
|
+
โ โโโ core/
|
|
143
|
+
โ โ โโโ config.py # App settings via pydantic-settings
|
|
144
|
+
โ โ โโโ security.py # OAuth2 / auth utilities
|
|
145
|
+
โ โโโ models/
|
|
146
|
+
โ โ โโโ user.py # ORM model (SQLAlchemy / SQLModel)
|
|
147
|
+
โ โโโ schemas/
|
|
148
|
+
โ โ โโโ user.py # Pydantic request / response models
|
|
149
|
+
โ โโโ services/
|
|
150
|
+
โ โ โโโ user_service.py # Business logic layer
|
|
151
|
+
โ โโโ db/
|
|
152
|
+
โ โ โโโ base.py # ORM Base class
|
|
153
|
+
โ โ โโโ session.py # Engine & get_session() dependency
|
|
154
|
+
โ โโโ main.py # FastAPI app entry-point
|
|
155
|
+
โโโ tests/
|
|
156
|
+
โ โโโ test_users.py # Smoke test with httpx
|
|
157
|
+
โโโ .env # Environment variables
|
|
158
|
+
โโโ .gitignore
|
|
159
|
+
โโโ pyproject.toml
|
|
160
|
+
โโโ Dockerfile # (optional)
|
|
161
|
+
โโโ docker-compose.yml # (optional)
|
|
162
|
+
โโโ README.md # Auto-generated project docs
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
> **Note:** Folders like `models/`, `db/`, `tests/`, and Docker files are only generated when you select the corresponding options.
|
|
166
|
+
|
|
167
|
+
### What Each Folder Does
|
|
168
|
+
|
|
169
|
+
| Folder | Purpose |
|
|
170
|
+
|--------|---------|
|
|
171
|
+
| `app/api/` | HTTP route definitions, versioned (`v1/`, `v2/`, โฆ). |
|
|
172
|
+
| `app/core/` | App-wide settings (`Settings` class) and security helpers. |
|
|
173
|
+
| `app/models/` | ORM model classes mapped to database tables. |
|
|
174
|
+
| `app/schemas/` | Pydantic models for request validation and response serialisation. |
|
|
175
|
+
| `app/services/` | Business-logic layer โ keeps route handlers thin and testable. |
|
|
176
|
+
| `app/db/` | Database engine, session factory, and `get_session()` dependency. |
|
|
177
|
+
| `tests/` | Automated test suite using pytest + httpx. |
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## ๐ ๏ธ Configuration Options
|
|
182
|
+
|
|
183
|
+
| Prompt | Choices | What It Generates |
|
|
184
|
+
|--------|---------|-------------------|
|
|
185
|
+
| **Database** | SQLite, MySQL, PostgreSQL, None | `app/db/session.py` with connection URL and driver dependency |
|
|
186
|
+
| **ORM** | SQLAlchemy, SQLModel, None | `app/models/` with model classes and `app/db/base.py` |
|
|
187
|
+
| **Linter** | Ruff, Black, None | Adds the linter to `pyproject.toml` dependencies |
|
|
188
|
+
| **Test framework** | pytest, pytest-asyncio, None | `tests/` directory with async smoke test |
|
|
189
|
+
| **Docker** | Yes, No | `Dockerfile`, `docker-compose.yml`, `.dockerignore` |
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## ๐ค Contributing
|
|
194
|
+
|
|
195
|
+
Contributions are welcome! Here's how to get started:
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
# 1. Fork and clone
|
|
199
|
+
git clone https://github.com/DasunNethsara-04/fastapi-initializer.git
|
|
200
|
+
cd fastapi-initializer
|
|
201
|
+
|
|
202
|
+
# 2. Install dependencies
|
|
203
|
+
uv sync
|
|
204
|
+
|
|
205
|
+
# 3. Make your changes, then test
|
|
206
|
+
uv run fastapi-init test-project
|
|
207
|
+
|
|
208
|
+
# 4. Submit a pull request
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
---
|
|
212
|
+
|
|
213
|
+
## ๐ License
|
|
214
|
+
|
|
215
|
+
This project is licensed under the [MIT License](LICENSE).
|
|
216
|
+
|
|
217
|
+
---
|
|
218
|
+
|
|
219
|
+
## ๐ Acknowledgements
|
|
220
|
+
|
|
221
|
+
Built with:
|
|
222
|
+
|
|
223
|
+
- [FastAPI](https://fastapi.tiangolo.com/) โ the framework this tool scaffolds
|
|
224
|
+
- [Typer](https://typer.tiangolo.com/) โ CLI framework
|
|
225
|
+
- [InquirerPy](https://inquirerpy.readthedocs.io/) โ interactive prompts
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
# FastAPI Initializer
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/fastapi-initializer/)
|
|
4
|
+
[](https://pypi.org/project/fastapi-initializer/)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
7
|
+
An interactive CLI tool that scaffolds **production-ready FastAPI projects** with sensible defaults โ so you can skip the boilerplate and start building right away.
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## โจ What Does It Do?
|
|
14
|
+
|
|
15
|
+
Run a single command, answer a few prompts, and get a fully structured FastAPI project with:
|
|
16
|
+
|
|
17
|
+
- ๐๏ธ **Clean project layout** - `api/`, `core/`, `models/`, `schemas/`, `services/`
|
|
18
|
+
- ๐๏ธ **Database support** - SQLite, MySQL, or PostgreSQL
|
|
19
|
+
- ๐ง **ORM of your choice** - SQLAlchemy or SQLModel
|
|
20
|
+
- ๐งช **Testing setup** - pytest / pytest-asyncio with httpx, ready to go
|
|
21
|
+
- ๐งน **Linter config** - Black or Ruff
|
|
22
|
+
- ๐ณ **Docker ready** - optional `Dockerfile` & `docker-compose.yml`
|
|
23
|
+
- โ๏ธ **Environment config** - pydantic-settings with `.env` support
|
|
24
|
+
- ๐ **Documentation** - every folder gets a README explaining its purpose
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## ๐ฆ Installation
|
|
29
|
+
|
|
30
|
+
### Install from PyPI
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install fastapi-initializer
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Or with [uv](https://docs.astral.sh/uv/):
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
uv pip install fastapi-initializer
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Install from Source (for development)
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# Clone the repository
|
|
46
|
+
git clone https://github.com/DasunNethsara-04/fastapi-initializer.git
|
|
47
|
+
cd fastapi-initializer
|
|
48
|
+
|
|
49
|
+
# Create a virtual environment and install dependencies
|
|
50
|
+
uv sync
|
|
51
|
+
|
|
52
|
+
# Run the CLI directly
|
|
53
|
+
uv run fastapi-init my-project
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## ๐ Usage
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
fastapi-init my-project
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
You'll be guided through interactive prompts:
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
โฏ FastAPI Initializer
|
|
68
|
+
Creating project: my-project
|
|
69
|
+
|
|
70
|
+
โฏ What kind of database do you want to use?
|
|
71
|
+
> SQLite / MySQL / PostgreSQL / None
|
|
72
|
+
|
|
73
|
+
โฏ Which ORM do you want to use?
|
|
74
|
+
> SQLAlchemy / SQLModel / None
|
|
75
|
+
|
|
76
|
+
โฏ What linter do you want to use?
|
|
77
|
+
> Ruff / Black / None
|
|
78
|
+
|
|
79
|
+
โฏ What testing framework do you like to use?
|
|
80
|
+
> PyTest / pytest-async-io / None
|
|
81
|
+
|
|
82
|
+
โฏ Do you want to create a Docker file for this project?
|
|
83
|
+
> Yes / No
|
|
84
|
+
|
|
85
|
+
โ FastAPI project 'my-project' created successfully!
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Then get started in seconds:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
cd my-project
|
|
92
|
+
uv sync
|
|
93
|
+
uv run uvicorn app.main:app --reload
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Open **http://127.0.0.1:8000/docs** to see the interactive API docs.
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## ๐ Generated Project Structure
|
|
101
|
+
|
|
102
|
+
The generated project follows a modular, production-style layout:
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
my-project/
|
|
106
|
+
โโโ app/
|
|
107
|
+
โ โโโ api/
|
|
108
|
+
โ โ โโโ v1/
|
|
109
|
+
โ โ โ โโโ users.py # User endpoints
|
|
110
|
+
โ โ โโโ __init__.py # Mounts versioned routers
|
|
111
|
+
โ โ โโโ deps.py # Shared dependencies (e.g. auth)
|
|
112
|
+
โ โโโ core/
|
|
113
|
+
โ โ โโโ config.py # App settings via pydantic-settings
|
|
114
|
+
โ โ โโโ security.py # OAuth2 / auth utilities
|
|
115
|
+
โ โโโ models/
|
|
116
|
+
โ โ โโโ user.py # ORM model (SQLAlchemy / SQLModel)
|
|
117
|
+
โ โโโ schemas/
|
|
118
|
+
โ โ โโโ user.py # Pydantic request / response models
|
|
119
|
+
โ โโโ services/
|
|
120
|
+
โ โ โโโ user_service.py # Business logic layer
|
|
121
|
+
โ โโโ db/
|
|
122
|
+
โ โ โโโ base.py # ORM Base class
|
|
123
|
+
โ โ โโโ session.py # Engine & get_session() dependency
|
|
124
|
+
โ โโโ main.py # FastAPI app entry-point
|
|
125
|
+
โโโ tests/
|
|
126
|
+
โ โโโ test_users.py # Smoke test with httpx
|
|
127
|
+
โโโ .env # Environment variables
|
|
128
|
+
โโโ .gitignore
|
|
129
|
+
โโโ pyproject.toml
|
|
130
|
+
โโโ Dockerfile # (optional)
|
|
131
|
+
โโโ docker-compose.yml # (optional)
|
|
132
|
+
โโโ README.md # Auto-generated project docs
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
> **Note:** Folders like `models/`, `db/`, `tests/`, and Docker files are only generated when you select the corresponding options.
|
|
136
|
+
|
|
137
|
+
### What Each Folder Does
|
|
138
|
+
|
|
139
|
+
| Folder | Purpose |
|
|
140
|
+
|--------|---------|
|
|
141
|
+
| `app/api/` | HTTP route definitions, versioned (`v1/`, `v2/`, โฆ). |
|
|
142
|
+
| `app/core/` | App-wide settings (`Settings` class) and security helpers. |
|
|
143
|
+
| `app/models/` | ORM model classes mapped to database tables. |
|
|
144
|
+
| `app/schemas/` | Pydantic models for request validation and response serialisation. |
|
|
145
|
+
| `app/services/` | Business-logic layer โ keeps route handlers thin and testable. |
|
|
146
|
+
| `app/db/` | Database engine, session factory, and `get_session()` dependency. |
|
|
147
|
+
| `tests/` | Automated test suite using pytest + httpx. |
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## ๐ ๏ธ Configuration Options
|
|
152
|
+
|
|
153
|
+
| Prompt | Choices | What It Generates |
|
|
154
|
+
|--------|---------|-------------------|
|
|
155
|
+
| **Database** | SQLite, MySQL, PostgreSQL, None | `app/db/session.py` with connection URL and driver dependency |
|
|
156
|
+
| **ORM** | SQLAlchemy, SQLModel, None | `app/models/` with model classes and `app/db/base.py` |
|
|
157
|
+
| **Linter** | Ruff, Black, None | Adds the linter to `pyproject.toml` dependencies |
|
|
158
|
+
| **Test framework** | pytest, pytest-asyncio, None | `tests/` directory with async smoke test |
|
|
159
|
+
| **Docker** | Yes, No | `Dockerfile`, `docker-compose.yml`, `.dockerignore` |
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## ๐ค Contributing
|
|
164
|
+
|
|
165
|
+
Contributions are welcome! Here's how to get started:
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
# 1. Fork and clone
|
|
169
|
+
git clone https://github.com/DasunNethsara-04/fastapi-initializer.git
|
|
170
|
+
cd fastapi-initializer
|
|
171
|
+
|
|
172
|
+
# 2. Install dependencies
|
|
173
|
+
uv sync
|
|
174
|
+
|
|
175
|
+
# 3. Make your changes, then test
|
|
176
|
+
uv run fastapi-init test-project
|
|
177
|
+
|
|
178
|
+
# 4. Submit a pull request
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## ๐ License
|
|
184
|
+
|
|
185
|
+
This project is licensed under the [MIT License](LICENSE).
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
## ๐ Acknowledgements
|
|
190
|
+
|
|
191
|
+
Built with:
|
|
192
|
+
|
|
193
|
+
- [FastAPI](https://fastapi.tiangolo.com/) โ the framework this tool scaffolds
|
|
194
|
+
- [Typer](https://typer.tiangolo.com/) โ CLI framework
|
|
195
|
+
- [InquirerPy](https://inquirerpy.readthedocs.io/) โ interactive prompts
|