fastapi-cachex 0.1.0__tar.gz → 0.1.1__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.
Potentially problematic release.
This version of fastapi-cachex might be problematic. Click here for more details.
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/PKG-INFO +22 -4
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex.egg-info/PKG-INFO +22 -4
- fastapi_cachex-0.1.1/fastapi_cachex.egg-info/requires.txt +2 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/pyproject.toml +28 -4
- fastapi_cachex-0.1.0/fastapi_cachex.egg-info/requires.txt +0 -2
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/LICENSE +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/README.md +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/__init__.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/backends/__init__.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/backends/base.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/backends/memory.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/cache.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/directives.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/exceptions.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/proxy.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex/types.py +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex.egg-info/SOURCES.txt +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex.egg-info/dependency_links.txt +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/fastapi_cachex.egg-info/top_level.txt +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/setup.cfg +0 -0
- {fastapi_cachex-0.1.0 → fastapi_cachex-0.1.1}/tests/test_cache.py +0 -0
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-cachex
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A caching library for FastAPI with support for Cache-Control, ETag, and multiple backends.
|
|
5
|
+
Author-email: Allen <s96016641@gmail.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/allen0099/FastAPI-CacheX
|
|
8
|
+
Project-URL: Repository, https://github.com/allen0099/FastAPI-CacheX.git
|
|
9
|
+
Project-URL: Issues, https://github.com/allen0099/FastAPI-CacheX/issues
|
|
10
|
+
Keywords: fastapi,cache,etag,cache-control,redis,memcached,in-memory
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Framework :: FastAPI
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
5
23
|
Requires-Python: >=3.10
|
|
6
24
|
Description-Content-Type: text/markdown
|
|
7
25
|
License-File: LICENSE
|
|
8
|
-
Requires-Dist: fastapi
|
|
9
|
-
Requires-Dist: httpx
|
|
26
|
+
Requires-Dist: fastapi
|
|
27
|
+
Requires-Dist: httpx
|
|
10
28
|
Dynamic: license-file
|
|
11
29
|
|
|
12
30
|
# FastAPI-Cache X
|
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-cachex
|
|
3
|
-
Version: 0.1.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A caching library for FastAPI with support for Cache-Control, ETag, and multiple backends.
|
|
5
|
+
Author-email: Allen <s96016641@gmail.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://github.com/allen0099/FastAPI-CacheX
|
|
8
|
+
Project-URL: Repository, https://github.com/allen0099/FastAPI-CacheX.git
|
|
9
|
+
Project-URL: Issues, https://github.com/allen0099/FastAPI-CacheX/issues
|
|
10
|
+
Keywords: fastapi,cache,etag,cache-control,redis,memcached,in-memory
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
20
|
+
Classifier: Framework :: FastAPI
|
|
21
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
5
23
|
Requires-Python: >=3.10
|
|
6
24
|
Description-Content-Type: text/markdown
|
|
7
25
|
License-File: LICENSE
|
|
8
|
-
Requires-Dist: fastapi
|
|
9
|
-
Requires-Dist: httpx
|
|
26
|
+
Requires-Dist: fastapi
|
|
27
|
+
Requires-Dist: httpx
|
|
10
28
|
Dynamic: license-file
|
|
11
29
|
|
|
12
30
|
# FastAPI-Cache X
|
|
@@ -1,14 +1,38 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "fastapi-cachex"
|
|
3
|
-
version = "0.1.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.1.1" # Initial release version
|
|
4
|
+
description = "A caching library for FastAPI with support for Cache-Control, ETag, and multiple backends."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
7
|
+
license = "Apache-2.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Allen", email = "s96016641@gmail.com" }
|
|
10
|
+
]
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Development Status :: 3 - Alpha",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"Programming Language :: Python",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Programming Language :: Python :: 3.10",
|
|
17
|
+
"Programming Language :: Python :: 3.11",
|
|
18
|
+
"Programming Language :: Python :: 3.12",
|
|
19
|
+
"Programming Language :: Python :: 3.13",
|
|
20
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
21
|
+
"Framework :: FastAPI",
|
|
22
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
23
|
+
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
24
|
+
]
|
|
25
|
+
keywords = ["fastapi", "cache", "etag", "cache-control", "redis", "memcached", "in-memory"]
|
|
7
26
|
dependencies = [
|
|
8
|
-
"fastapi
|
|
9
|
-
"httpx
|
|
27
|
+
"fastapi",
|
|
28
|
+
"httpx",
|
|
10
29
|
]
|
|
11
30
|
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/allen0099/FastAPI-CacheX"
|
|
33
|
+
Repository = "https://github.com/allen0099/FastAPI-CacheX.git"
|
|
34
|
+
Issues = "https://github.com/allen0099/FastAPI-CacheX/issues"
|
|
35
|
+
|
|
12
36
|
[dependency-groups]
|
|
13
37
|
dev = [
|
|
14
38
|
"coverage>=7.8.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|