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.
Files changed (27) hide show
  1. {js_api-0.2.63/src/js_api.egg-info → js_api-0.2.64}/PKG-INFO +2 -2
  2. {js_api-0.2.63 → js_api-0.2.64}/pyproject.toml +2 -2
  3. {js_api-0.2.63 → js_api-0.2.64/src/js_api.egg-info}/PKG-INFO +2 -2
  4. {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/requires.txt +1 -1
  5. {js_api-0.2.63 → js_api-0.2.64}/LICENSE +0 -0
  6. {js_api-0.2.63 → js_api-0.2.64}/README.md +0 -0
  7. {js_api-0.2.63 → js_api-0.2.64}/setup.cfg +0 -0
  8. {js_api-0.2.63 → js_api-0.2.64}/src/__init__.py +0 -0
  9. {js_api-0.2.63 → js_api-0.2.64}/src/api.py +0 -0
  10. {js_api-0.2.63 → js_api-0.2.64}/src/controllers/__init__.py +0 -0
  11. {js_api-0.2.63 → js_api-0.2.64}/src/controllers/docker.py +0 -0
  12. {js_api-0.2.63 → js_api-0.2.64}/src/controllers/health_check.py +0 -0
  13. {js_api-0.2.63 → js_api-0.2.64}/src/controllers/ip.py +0 -0
  14. {js_api-0.2.63 → js_api-0.2.64}/src/controllers/valentines_day.py +0 -0
  15. {js_api-0.2.63 → js_api-0.2.64}/src/database.py +0 -0
  16. {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/SOURCES.txt +0 -0
  17. {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/dependency_links.txt +0 -0
  18. {js_api-0.2.63 → js_api-0.2.64}/src/js_api.egg-info/top_level.txt +0 -0
  19. {js_api-0.2.63 → js_api-0.2.64}/src/models.py +0 -0
  20. {js_api-0.2.63 → js_api-0.2.64}/src/util/__init__.py +0 -0
  21. {js_api-0.2.63 → js_api-0.2.64}/src/util/auth.py +0 -0
  22. {js_api-0.2.63 → js_api-0.2.64}/src/util/docker.py +0 -0
  23. {js_api-0.2.63 → js_api-0.2.64}/src/util/healthcheck.py +0 -0
  24. {js_api-0.2.63 → js_api-0.2.64}/src/util/logging.py +0 -0
  25. {js_api-0.2.63 → js_api-0.2.64}/tests/test_docker.py +0 -0
  26. {js_api-0.2.63 → js_api-0.2.64}/tests/test_health_check.py +0 -0
  27. {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.63
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.1
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.63"
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.1",
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.63
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.1
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,4 +1,4 @@
1
- fastapi[standard]==0.135.1
1
+ fastapi[standard]==0.135.2
2
2
  sqlalchemy==2.0.48
3
3
  sqlmodel==0.0.37
4
4
  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