fastbrick 0.1__py3-none-any.whl → 0.3__py3-none-any.whl
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.
- fastbrick-0.3.dist-info/METADATA +59 -0
- fastbrick-0.3.dist-info/RECORD +6 -0
- {fastbrick-0.1.dist-info → fastbrick-0.3.dist-info}/WHEEL +1 -1
- {fastbrick-0.1.dist-info → fastbrick-0.3.dist-info}/entry_points.txt +1 -0
- fastbrick-0.1.dist-info/METADATA +0 -25
- fastbrick-0.1.dist-info/RECORD +0 -6
- {fastbrick-0.1.dist-info → fastbrick-0.3.dist-info}/LICENSE +0 -0
- {fastbrick-0.1.dist-info → fastbrick-0.3.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,59 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: fastbrick
|
3
|
+
Version: 0.3
|
4
|
+
Summary: A CLI tool for generating FastAPI projects and apps
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: Sandeep Singh Negi
|
7
|
+
Author-email: sandeepnegi1710@gmail.com
|
8
|
+
License: UNKNOWN
|
9
|
+
Platform: UNKNOWN
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Requires-Python: >=3.7
|
14
|
+
Description-Content-Type: text/plain
|
15
|
+
License-File: LICENSE
|
16
|
+
Requires-Dist: click
|
17
|
+
Requires-Dist: fastapi
|
18
|
+
Requires-Dist: jinja2
|
19
|
+
|
20
|
+
# FastBrick 🚀
|
21
|
+
|
22
|
+
A simple CLI tool to generate FastAPI project structures.
|
23
|
+
|
24
|
+
## Installation
|
25
|
+
|
26
|
+
Install FastBrick using:
|
27
|
+
```sh
|
28
|
+
pip install fastbrick
|
29
|
+
```
|
30
|
+
|
31
|
+
## Run Server
|
32
|
+
|
33
|
+
Start the FastAPI server with:
|
34
|
+
```sh
|
35
|
+
uvicorn main:app --reload
|
36
|
+
```
|
37
|
+
|
38
|
+
## Project Structure
|
39
|
+
|
40
|
+
```
|
41
|
+
myproject/
|
42
|
+
│── main.py # Entry point for FastAPI app
|
43
|
+
│── routes.py # Contains 'custom_routes'
|
44
|
+
│── alembic.ini
|
45
|
+
│── models.py
|
46
|
+
│── schemas.py
|
47
|
+
│── middlewares/
|
48
|
+
│ ├── middleware.py # Global middleware logic
|
49
|
+
│── routers/ # API route modules
|
50
|
+
│── settings/
|
51
|
+
│ ├── database.py # Database configuration
|
52
|
+
│ ├── routing.py # Router configurations
|
53
|
+
│── alembic/
|
54
|
+
```
|
55
|
+
|
56
|
+
This structure ensures modularity and scalability for your FastAPI project. Adjust the folders and files as needed based on your project requirements.
|
57
|
+
|
58
|
+
|
59
|
+
|
@@ -0,0 +1,6 @@
|
|
1
|
+
fastbrick-0.3.dist-info/LICENSE,sha256=VueWmlho5XxqjRpByo5KlMuWT7T-_AjQOVeiXRad66o,244
|
2
|
+
fastbrick-0.3.dist-info/METADATA,sha256=RKVDqXq5lqM6ht-Ugqku-WSulBpW_peq9JcZOEFX1bA,1406
|
3
|
+
fastbrick-0.3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
4
|
+
fastbrick-0.3.dist-info/entry_points.txt,sha256=PdmQx7gBRECxTrnA3YwBPlXsiGKDsiJOaZCaJQo_HPE,47
|
5
|
+
fastbrick-0.3.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
6
|
+
fastbrick-0.3.dist-info/RECORD,,
|
fastbrick-0.1.dist-info/METADATA
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.2
|
2
|
-
Name: fastbrick
|
3
|
-
Version: 0.1
|
4
|
-
Summary: A CLI tool for generating FastAPI projects and apps
|
5
|
-
Author: Sandeep Singh Negi
|
6
|
-
Author-email: sandeepnegi1710@gmail.com
|
7
|
-
Classifier: Programming Language :: Python :: 3
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
9
|
-
Classifier: Operating System :: OS Independent
|
10
|
-
Requires-Python: >=3.7
|
11
|
-
Description-Content-Type: text/plain
|
12
|
-
License-File: LICENSE
|
13
|
-
Requires-Dist: fastapi
|
14
|
-
Requires-Dist: click
|
15
|
-
Requires-Dist: jinja2
|
16
|
-
Dynamic: author
|
17
|
-
Dynamic: author-email
|
18
|
-
Dynamic: classifier
|
19
|
-
Dynamic: description
|
20
|
-
Dynamic: description-content-type
|
21
|
-
Dynamic: requires-dist
|
22
|
-
Dynamic: requires-python
|
23
|
-
Dynamic: summary
|
24
|
-
|
25
|
-
FastAPI-CLI created by Sandeep Singh Negi on 2025-02-19.
|
fastbrick-0.1.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
fastbrick-0.1.dist-info/LICENSE,sha256=VueWmlho5XxqjRpByo5KlMuWT7T-_AjQOVeiXRad66o,244
|
2
|
-
fastbrick-0.1.dist-info/METADATA,sha256=0CbM_AwskHfss29sLIk4mNwpixxr44Q2e9rGH82bqRI,709
|
3
|
-
fastbrick-0.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
4
|
-
fastbrick-0.1.dist-info/entry_points.txt,sha256=q8aYJsbtSyhanBgpEVXAdXWi2xgiQ_TBCdLy6PO3ztE,46
|
5
|
-
fastbrick-0.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
6
|
-
fastbrick-0.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|