Nexom 1.0.2__tar.gz → 1.0.3__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 (68) hide show
  1. {nexom-1.0.2/src/Nexom.egg-info → nexom-1.0.3}/PKG-INFO +1 -2
  2. {nexom-1.0.2 → nexom-1.0.3}/pyproject.toml +1 -5
  3. {nexom-1.0.2 → nexom-1.0.3/src/Nexom.egg-info}/PKG-INFO +1 -2
  4. {nexom-1.0.2 → nexom-1.0.3}/src/Nexom.egg-info/SOURCES.txt +0 -1
  5. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/auth.py +3 -2
  6. nexom-1.0.2/src/Nexom.egg-info/requires.txt +0 -3
  7. {nexom-1.0.2 → nexom-1.0.3}/LICENSE +0 -0
  8. {nexom-1.0.2 → nexom-1.0.3}/README.md +0 -0
  9. {nexom-1.0.2 → nexom-1.0.3}/setup.cfg +0 -0
  10. {nexom-1.0.2 → nexom-1.0.3}/src/Nexom.egg-info/dependency_links.txt +0 -0
  11. {nexom-1.0.2 → nexom-1.0.3}/src/Nexom.egg-info/entry_points.txt +0 -0
  12. {nexom-1.0.2 → nexom-1.0.3}/src/Nexom.egg-info/top_level.txt +0 -0
  13. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/__init__.py +0 -0
  14. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/__main__.py +0 -0
  15. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/__init__.py +0 -0
  16. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/cookie.py +0 -0
  17. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/db.py +0 -0
  18. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/http_status_codes.py +0 -0
  19. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/middleware.py +0 -0
  20. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/path.py +0 -0
  21. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/request.py +0 -0
  22. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/response.py +0 -0
  23. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/template.py +0 -0
  24. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/app/user.py +0 -0
  25. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/__init__.py +0 -0
  26. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/__pycache__/__init__.cpython-313.pyc +0 -0
  27. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/config.py +0 -0
  28. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/gunicorn.conf.py +0 -0
  29. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/pages/__init__.py +0 -0
  30. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/pages/__pycache__/__init__.cpython-313.pyc +0 -0
  31. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/pages/_templates.py +0 -0
  32. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/pages/default.py +0 -0
  33. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/pages/document.py +0 -0
  34. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/router.py +0 -0
  35. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/static/dog.jpeg +0 -0
  36. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/static/style.css +0 -0
  37. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/templates/base.html +0 -0
  38. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/templates/default.html +0 -0
  39. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/templates/document.html +0 -0
  40. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/templates/footer.html +0 -0
  41. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/templates/header.html +0 -0
  42. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/app/wsgi.py +0 -0
  43. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth/__init__.py +0 -0
  44. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth/__pycache__/__init__.cpython-313.pyc +0 -0
  45. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth/config.py +0 -0
  46. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth/gunicorn.conf.py +0 -0
  47. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth/wsgi.py +0 -0
  48. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth_page/login.html +0 -0
  49. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/auth_page/signup.html +0 -0
  50. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/error_page/error.html +0 -0
  51. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/gateway/apache_app.conf +0 -0
  52. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/assets/gateway/nginx_app.conf +0 -0
  53. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/buildTools/__init__.py +0 -0
  54. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/buildTools/build.py +0 -0
  55. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/buildTools/run.py +0 -0
  56. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/core/__init__.py +0 -0
  57. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/core/error.py +0 -0
  58. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/core/log.py +0 -0
  59. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/core/object_html_render.py +0 -0
  60. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/templates/__init__.py +0 -0
  61. {nexom-1.0.2 → nexom-1.0.3}/src/nexom/templates/auth.py +0 -0
  62. {nexom-1.0.2 → nexom-1.0.3}/tests/test_buildtools.py +0 -0
  63. {nexom-1.0.2 → nexom-1.0.3}/tests/test_http_status_codes.py +0 -0
  64. {nexom-1.0.2 → nexom-1.0.3}/tests/test_middleware.py +0 -0
  65. {nexom-1.0.2 → nexom-1.0.3}/tests/test_path_routing.py +0 -0
  66. {nexom-1.0.2 → nexom-1.0.3}/tests/test_request.py +0 -0
  67. {nexom-1.0.2 → nexom-1.0.3}/tests/test_response.py +0 -0
  68. {nexom-1.0.2 → nexom-1.0.3}/tests/test_static.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Nexom
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Lightweight Python Web Framework (WSGI)
5
5
  Author: TouriAida
6
6
  License: MIT License
@@ -32,7 +32,6 @@ Keywords: wsgi,web,framework
32
32
  Requires-Python: >=3.10
33
33
  Description-Content-Type: text/markdown
34
34
  License-File: LICENSE
35
- Requires-Dist: typing-extensions; python_version < "3.12"
36
35
  Dynamic: license-file
37
36
 
38
37
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "Nexom"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "Lightweight Python Web Framework (WSGI)"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -12,10 +12,6 @@ license = { file = "LICENSE" }
12
12
  authors = [{ name = "TouriAida" }]
13
13
  keywords = ["wsgi", "web", "framework"]
14
14
 
15
- # ★ 追加
16
- dependencies = [
17
- "typing-extensions; python_version < '3.12'",
18
- ]
19
15
 
20
16
  [project.urls]
21
17
  Homepage = "https://nexom.ceez7.com"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Nexom
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Lightweight Python Web Framework (WSGI)
5
5
  Author: TouriAida
6
6
  License: MIT License
@@ -32,7 +32,6 @@ Keywords: wsgi,web,framework
32
32
  Requires-Python: >=3.10
33
33
  Description-Content-Type: text/markdown
34
34
  License-File: LICENSE
35
- Requires-Dist: typing-extensions; python_version < "3.12"
36
35
  Dynamic: license-file
37
36
 
38
37
 
@@ -5,7 +5,6 @@ src/Nexom.egg-info/PKG-INFO
5
5
  src/Nexom.egg-info/SOURCES.txt
6
6
  src/Nexom.egg-info/dependency_links.txt
7
7
  src/Nexom.egg-info/entry_points.txt
8
- src/Nexom.egg-info/requires.txt
9
8
  src/Nexom.egg-info/top_level.txt
10
9
  src/nexom/__init__.py
11
10
  src/nexom/__main__.py
@@ -2,7 +2,7 @@
2
2
  from __future__ import annotations
3
3
 
4
4
  from dataclasses import dataclass
5
- from typing import Optional, override
5
+ from typing import Optional
6
6
  import secrets
7
7
  import time
8
8
  import hashlib
@@ -210,7 +210,8 @@ class AuthClient:
210
210
  # --------------------
211
211
 
212
212
  class AuthDBM(DatabaseManager):
213
- @override
213
+
214
+ # override
214
215
  def _init(self) -> None:
215
216
  self.execute_many(
216
217
  [
@@ -1,3 +0,0 @@
1
-
2
- [:python_version < "3.12"]
3
- typing-extensions
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
File without changes
File without changes