js-api 0.2.63__tar.gz → 0.2.64__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.
- {js_api-0.2.63/src/js_api.egg-info → js_api-0.2.64}/PKG-INFO +2 -2
- {js_api-0.2.63 → js_api-0.2.64}/pyproject.toml +2 -2
- {js_api-0.2.63 → js_api-0.2.64/src/js_api.egg-info}/PKG-INFO +2 -2
- {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/requires.txt +1 -1
- {js_api-0.2.63 → js_api-0.2.64}/LICENSE +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/README.md +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/setup.cfg +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/__init__.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/api.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/controllers/__init__.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/controllers/docker.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/controllers/health_check.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/controllers/ip.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/controllers/valentines_day.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/database.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/SOURCES.txt +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/dependency_links.txt +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/top_level.txt +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/models.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/util/__init__.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/util/auth.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/util/docker.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/util/healthcheck.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/src/util/logging.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/tests/test_docker.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/tests/test_health_check.py +0 -0
- {js_api-0.2.63 → js_api-0.2.64}/tests/test_ip.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: js-api
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.64
|
|
4
4
|
Summary: Custom API written in Python using FastAPI
|
|
5
5
|
Author-email: Jack Stockley <jack@jstockley.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/jnstockley/api
|
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Requires-Python: <4.0,>=3.14
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: fastapi[standard]==0.135.
|
|
14
|
+
Requires-Dist: fastapi[standard]==0.135.2
|
|
15
15
|
Requires-Dist: sqlalchemy==2.0.48
|
|
16
16
|
Requires-Dist: sqlmodel==0.0.37
|
|
17
17
|
Requires-Dist: python-dotenv==1.2.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "js-api"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.64"
|
|
4
4
|
description = "Custom API written in Python using FastAPI"
|
|
5
5
|
authors = [
|
|
6
6
|
{name = "Jack Stockley", email = "jack@jstockley.com"}
|
|
@@ -8,7 +8,7 @@ authors = [
|
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.14, <4.0"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"fastapi[standard]==0.135.
|
|
11
|
+
"fastapi[standard]==0.135.2",
|
|
12
12
|
"sqlalchemy==2.0.48",
|
|
13
13
|
"sqlmodel==0.0.37",
|
|
14
14
|
"python-dotenv==1.2.2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: js-api
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.64
|
|
4
4
|
Summary: Custom API written in Python using FastAPI
|
|
5
5
|
Author-email: Jack Stockley <jack@jstockley.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/jnstockley/api
|
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Requires-Python: <4.0,>=3.14
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: fastapi[standard]==0.135.
|
|
14
|
+
Requires-Dist: fastapi[standard]==0.135.2
|
|
15
15
|
Requires-Dist: sqlalchemy==2.0.48
|
|
16
16
|
Requires-Dist: sqlmodel==0.0.37
|
|
17
17
|
Requires-Dist: python-dotenv==1.2.2
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|