fastapi-extended-query-method 0.0.31__tar.gz → 0.0.32__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_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32}/PKG-INFO +4 -16
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32}/README.md +2 -2
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32}/setup.py +12 -32
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32/src}/fastapi_extended_query_method.egg-info/PKG-INFO +4 -16
- fastapi_extended_query_method-0.0.32/src/fastapi_extended_query_method.egg-info/SOURCES.txt +9 -0
- fastapi_extended_query_method-0.0.32/src/fastapi_extended_query_method.egg-info/top_level.txt +1 -0
- fastapi_extended_query_method-0.0.31/fastapi_extended_query_method.egg-info/SOURCES.txt +0 -10
- fastapi_extended_query_method-0.0.31/fastapi_extended_query_method.egg-info/top_level.txt +0 -1
- fastapi_extended_query_method-0.0.31/src/__init__.py +0 -0
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32}/LICENSE +0 -0
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32}/setup.cfg +0 -0
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32/src}/fastapi_extended_query_method.egg-info/dependency_links.txt +0 -0
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32/src}/fastapi_extended_query_method.egg-info/requires.txt +0 -0
- {fastapi_extended_query_method-0.0.31 → fastapi_extended_query_method-0.0.32}/src/fastapi_extended_query_method.py +0 -0
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-extended-query-method
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.32
|
|
4
4
|
Summary: Native HTTP QUERY method support for FastAPI with automatic cache control and Swagger compatibility.
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/JorgeCardona/fastapi-extended-query-method
|
|
6
6
|
Author: Jorge Cardona
|
|
7
|
-
|
|
8
|
-
Classifier: Development Status :: 4 - Beta
|
|
9
|
-
Classifier: Framework :: FastAPI
|
|
10
|
-
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
9
|
Classifier: Operating System :: OS Independent
|
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Topic :: Internet :: WWW/HTTP
|
|
19
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
10
|
Requires-Python: >=3.10
|
|
22
11
|
Description-Content-Type: text/markdown
|
|
23
12
|
License-File: LICENSE
|
|
@@ -31,7 +20,6 @@ Dynamic: classifier
|
|
|
31
20
|
Dynamic: description
|
|
32
21
|
Dynamic: description-content-type
|
|
33
22
|
Dynamic: home-page
|
|
34
|
-
Dynamic: keywords
|
|
35
23
|
Dynamic: license-file
|
|
36
24
|
Dynamic: requires-dist
|
|
37
25
|
Dynamic: requires-python
|
|
@@ -55,7 +43,7 @@ pip install fastapi-extended-query-method
|
|
|
55
43
|
## Quick Start
|
|
56
44
|
|
|
57
45
|
``` python
|
|
58
|
-
from
|
|
46
|
+
from fastapi_extended_query_method import FastAPIWithQueryHttpMethod
|
|
59
47
|
|
|
60
48
|
app = FastAPIWithQueryHttpMethod(query_saving_cache=True)
|
|
61
49
|
```
|
|
@@ -16,7 +16,7 @@ pip install fastapi-extended-query-method
|
|
|
16
16
|
## Quick Start
|
|
17
17
|
|
|
18
18
|
``` python
|
|
19
|
-
from
|
|
19
|
+
from fastapi_extended_query_method import FastAPIWithQueryHttpMethod
|
|
20
20
|
|
|
21
21
|
app = FastAPIWithQueryHttpMethod(query_saving_cache=True)
|
|
22
22
|
```
|
|
@@ -80,4 +80,4 @@ python validate_data/test_cache_comparison.py
|
|
|
80
80
|
|
|
81
81
|
## License
|
|
82
82
|
|
|
83
|
-
MIT
|
|
83
|
+
MIT
|
|
@@ -5,18 +5,24 @@ with open("README.md", "r", encoding="utf-8") as file:
|
|
|
5
5
|
long_description = file.read()
|
|
6
6
|
|
|
7
7
|
# Get version from environment variable or fallback to a default value
|
|
8
|
-
version = os.getenv("PACKAGE_VERSION", "0.0.1") # Default to '0.0.
|
|
8
|
+
version = os.getenv("PACKAGE_VERSION", "0.0.1") # Default to '0.0.1' if not provided
|
|
9
9
|
|
|
10
10
|
setuptools.setup(
|
|
11
11
|
name="fastapi-extended-query-method",
|
|
12
|
-
version=version,
|
|
12
|
+
version=version,
|
|
13
13
|
author="Jorge Cardona",
|
|
14
14
|
description="Native HTTP QUERY method support for FastAPI with automatic cache control and Swagger compatibility.",
|
|
15
15
|
long_description=long_description,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
17
|
-
url="https://github.com/
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
url="https://github.com/JorgeCardona/fastapi-extended-query-method",
|
|
18
|
+
package_dir={"": "src"},
|
|
19
|
+
py_modules=["fastapi_extended_query_method"],
|
|
20
|
+
classifiers=[
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Operating System :: OS Independent",
|
|
24
|
+
],
|
|
25
|
+
python_requires=">=3.10",
|
|
20
26
|
install_requires=[
|
|
21
27
|
"fastapi>=0.139.0",
|
|
22
28
|
"uvicorn>=0.5.1",
|
|
@@ -24,30 +30,4 @@ setuptools.setup(
|
|
|
24
30
|
"requests-cache>=1.3.3",
|
|
25
31
|
"tabulate>=0.10.0",
|
|
26
32
|
],
|
|
27
|
-
|
|
28
|
-
"Development Status :: 4 - Beta",
|
|
29
|
-
"Framework :: FastAPI",
|
|
30
|
-
"Intended Audience :: Developers",
|
|
31
|
-
"License :: OSI Approved :: MIT License",
|
|
32
|
-
"Operating System :: OS Independent",
|
|
33
|
-
"Programming Language :: Python :: 3",
|
|
34
|
-
"Programming Language :: Python :: 3 :: Only",
|
|
35
|
-
"Programming Language :: Python :: 3.10",
|
|
36
|
-
"Programming Language :: Python :: 3.11",
|
|
37
|
-
"Programming Language :: Python :: 3.12",
|
|
38
|
-
"Topic :: Internet :: WWW/HTTP",
|
|
39
|
-
"Topic :: Software Development :: Libraries",
|
|
40
|
-
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
41
|
-
],
|
|
42
|
-
keywords=[
|
|
43
|
-
"fastapi",
|
|
44
|
-
"query",
|
|
45
|
-
"http-query",
|
|
46
|
-
"openapi",
|
|
47
|
-
"swagger",
|
|
48
|
-
"rest",
|
|
49
|
-
"api",
|
|
50
|
-
"middleware",
|
|
51
|
-
],
|
|
52
|
-
python_requires=">=3.10",
|
|
53
|
-
)
|
|
33
|
+
)
|
|
@@ -1,23 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-extended-query-method
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.32
|
|
4
4
|
Summary: Native HTTP QUERY method support for FastAPI with automatic cache control and Swagger compatibility.
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/JorgeCardona/fastapi-extended-query-method
|
|
6
6
|
Author: Jorge Cardona
|
|
7
|
-
|
|
8
|
-
Classifier: Development Status :: 4 - Beta
|
|
9
|
-
Classifier: Framework :: FastAPI
|
|
10
|
-
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
9
|
Classifier: Operating System :: OS Independent
|
|
13
|
-
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Topic :: Internet :: WWW/HTTP
|
|
19
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
10
|
Requires-Python: >=3.10
|
|
22
11
|
Description-Content-Type: text/markdown
|
|
23
12
|
License-File: LICENSE
|
|
@@ -31,7 +20,6 @@ Dynamic: classifier
|
|
|
31
20
|
Dynamic: description
|
|
32
21
|
Dynamic: description-content-type
|
|
33
22
|
Dynamic: home-page
|
|
34
|
-
Dynamic: keywords
|
|
35
23
|
Dynamic: license-file
|
|
36
24
|
Dynamic: requires-dist
|
|
37
25
|
Dynamic: requires-python
|
|
@@ -55,7 +43,7 @@ pip install fastapi-extended-query-method
|
|
|
55
43
|
## Quick Start
|
|
56
44
|
|
|
57
45
|
``` python
|
|
58
|
-
from
|
|
46
|
+
from fastapi_extended_query_method import FastAPIWithQueryHttpMethod
|
|
59
47
|
|
|
60
48
|
app = FastAPIWithQueryHttpMethod(query_saving_cache=True)
|
|
61
49
|
```
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
setup.py
|
|
4
|
+
src/fastapi_extended_query_method.py
|
|
5
|
+
src/fastapi_extended_query_method.egg-info/PKG-INFO
|
|
6
|
+
src/fastapi_extended_query_method.egg-info/SOURCES.txt
|
|
7
|
+
src/fastapi_extended_query_method.egg-info/dependency_links.txt
|
|
8
|
+
src/fastapi_extended_query_method.egg-info/requires.txt
|
|
9
|
+
src/fastapi_extended_query_method.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fastapi_extended_query_method
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
LICENSE
|
|
2
|
-
README.md
|
|
3
|
-
setup.py
|
|
4
|
-
fastapi_extended_query_method.egg-info/PKG-INFO
|
|
5
|
-
fastapi_extended_query_method.egg-info/SOURCES.txt
|
|
6
|
-
fastapi_extended_query_method.egg-info/dependency_links.txt
|
|
7
|
-
fastapi_extended_query_method.egg-info/requires.txt
|
|
8
|
-
fastapi_extended_query_method.egg-info/top_level.txt
|
|
9
|
-
src/__init__.py
|
|
10
|
-
src/fastapi_extended_query_method.py
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
src
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|