fastapi-boot 3.0__tar.gz → 3.0.2__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_boot-3.0 → fastapi_boot-3.0.2}/PKG-INFO +6 -6
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/README.md +4 -4
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot.egg-info/PKG-INFO +6 -6
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/setup.py +2 -2
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/LICENSE +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/DI.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/__init__.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/const.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/helper.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/model.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/routing.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot/util.py +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot.egg-info/SOURCES.txt +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot.egg-info/dependency_links.txt +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot.egg-info/requires.txt +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/fastapi_boot.egg-info/top_level.txt +0 -0
- {fastapi_boot-3.0 → fastapi_boot-3.0.2}/setup.cfg +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastapi_boot
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: FastAPI development toolkit
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/hfdy0935/fastapi_boot
|
|
6
6
|
Author: hfdy0935
|
|
7
7
|
Author-email:
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -28,7 +28,7 @@ Requires-Dist: typing-extensions>=4.8.0
|
|
|
28
28
|
## Getting Started
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
pip install
|
|
31
|
+
pip install fatsapi_boot
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## USAGE
|
|
@@ -36,7 +36,7 @@ pip install fatsapI_boot
|
|
|
36
36
|
1. FBV(function based view)
|
|
37
37
|
|
|
38
38
|
```py
|
|
39
|
-
#
|
|
39
|
+
# FooController.py
|
|
40
40
|
from fastapi_boot import Controller
|
|
41
41
|
|
|
42
42
|
|
|
@@ -46,7 +46,7 @@ def _():
|
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
```py
|
|
49
|
-
#
|
|
49
|
+
# main.py
|
|
50
50
|
import uvicorn
|
|
51
51
|
from fastapi import FastAPI
|
|
52
52
|
from fastapi_boot import provide_app
|
|
@@ -94,7 +94,7 @@ class FirstController:
|
|
|
94
94
|
return dict(**baz.model_dump(), **asdict(baz1))
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
click <a href='https://github.com/hfdy0935/fastapi_boot/tree/main/exmaples' target=
|
|
97
|
+
click <a href='https://github.com/hfdy0935/fastapi_boot/tree/main/exmaples' target="_blank">here</a> to get more examples.
|
|
98
98
|
|
|
99
99
|
## APIS
|
|
100
100
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
## Getting Started
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
pip install
|
|
15
|
+
pip install fatsapi_boot
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## USAGE
|
|
@@ -20,7 +20,7 @@ pip install fatsapI_boot
|
|
|
20
20
|
1. FBV(function based view)
|
|
21
21
|
|
|
22
22
|
```py
|
|
23
|
-
#
|
|
23
|
+
# FooController.py
|
|
24
24
|
from fastapi_boot import Controller
|
|
25
25
|
|
|
26
26
|
|
|
@@ -30,7 +30,7 @@ def _():
|
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
```py
|
|
33
|
-
#
|
|
33
|
+
# main.py
|
|
34
34
|
import uvicorn
|
|
35
35
|
from fastapi import FastAPI
|
|
36
36
|
from fastapi_boot import provide_app
|
|
@@ -78,7 +78,7 @@ class FirstController:
|
|
|
78
78
|
return dict(**baz.model_dump(), **asdict(baz1))
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
click <a href='https://github.com/hfdy0935/fastapi_boot/tree/main/exmaples' target=
|
|
81
|
+
click <a href='https://github.com/hfdy0935/fastapi_boot/tree/main/exmaples' target="_blank">here</a> to get more examples.
|
|
82
82
|
|
|
83
83
|
## APIS
|
|
84
84
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastapi_boot
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.0.2
|
|
4
4
|
Summary: FastAPI development toolkit
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/hfdy0935/fastapi_boot
|
|
6
6
|
Author: hfdy0935
|
|
7
7
|
Author-email:
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -28,7 +28,7 @@ Requires-Dist: typing-extensions>=4.8.0
|
|
|
28
28
|
## Getting Started
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
pip install
|
|
31
|
+
pip install fatsapi_boot
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## USAGE
|
|
@@ -36,7 +36,7 @@ pip install fatsapI_boot
|
|
|
36
36
|
1. FBV(function based view)
|
|
37
37
|
|
|
38
38
|
```py
|
|
39
|
-
#
|
|
39
|
+
# FooController.py
|
|
40
40
|
from fastapi_boot import Controller
|
|
41
41
|
|
|
42
42
|
|
|
@@ -46,7 +46,7 @@ def _():
|
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
```py
|
|
49
|
-
#
|
|
49
|
+
# main.py
|
|
50
50
|
import uvicorn
|
|
51
51
|
from fastapi import FastAPI
|
|
52
52
|
from fastapi_boot import provide_app
|
|
@@ -94,7 +94,7 @@ class FirstController:
|
|
|
94
94
|
return dict(**baz.model_dump(), **asdict(baz1))
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
click <a href='https://github.com/hfdy0935/fastapi_boot/tree/main/exmaples' target=
|
|
97
|
+
click <a href='https://github.com/hfdy0935/fastapi_boot/tree/main/exmaples' target="_blank">here</a> to get more examples.
|
|
98
98
|
|
|
99
99
|
## APIS
|
|
100
100
|
|
|
@@ -5,13 +5,13 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="fastapi_boot",
|
|
8
|
-
version="3.0",
|
|
8
|
+
version="3.0.2",
|
|
9
9
|
author="hfdy0935",
|
|
10
10
|
author_email="",
|
|
11
11
|
description="FastAPI development toolkit",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
14
|
-
url="https://github.com/
|
|
14
|
+
url="https://github.com/hfdy0935/fastapi_boot",
|
|
15
15
|
packages=setuptools.find_packages(),
|
|
16
16
|
install_requires=[
|
|
17
17
|
"starlette>=0.40.0,<0.42.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|