tina4-python 0.2.99__tar.gz → 0.2.100__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 (48) hide show
  1. {tina4_python-0.2.99 → tina4_python-0.2.100}/.gitignore +33 -33
  2. {tina4_python-0.2.99 → tina4_python-0.2.100}/PKG-INFO +1 -1
  3. {tina4_python-0.2.99 → tina4_python-0.2.100}/README.md +446 -446
  4. {tina4_python-0.2.99 → tina4_python-0.2.100}/pyproject.toml +44 -44
  5. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Auth.py +222 -222
  6. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Constant.py +42 -42
  7. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Database.py +588 -588
  8. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/DatabaseResult.py +107 -107
  9. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/DatabaseTypes.py +15 -15
  10. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Debug.py +91 -91
  11. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Env.py +37 -37
  12. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Localization.py +42 -42
  13. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Messages.py +30 -30
  14. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/MiddleWare.py +75 -75
  15. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Migration.py +107 -107
  16. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/ORM.py +602 -602
  17. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Queue.py +611 -611
  18. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Request.py +19 -19
  19. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Response.py +110 -110
  20. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Router.py +387 -387
  21. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Session.py +258 -258
  22. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/ShellColors.py +20 -20
  23. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Swagger.py +228 -228
  24. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Template.py +105 -105
  25. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Webserver.py +410 -410
  26. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Websocket.py +49 -49
  27. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/__init__.py +387 -387
  28. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/messages.pot +83 -83
  29. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/js/reconnecting-websocket.js +365 -365
  30. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/js/tina4helper.js +397 -397
  31. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/swagger/index.html +90 -90
  32. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/swagger/oauth2-redirect.html +63 -63
  33. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/errors/403.twig +10 -10
  34. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/errors/404.twig +10 -10
  35. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/errors/500.twig +11 -11
  36. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/en/LC_MESSAGES/messages.po +80 -80
  37. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/fr/LC_MESSAGES/messages.po +84 -84
  38. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/css/readme.md +0 -0
  39. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/favicon.ico +0 -0
  40. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/403.png +0 -0
  41. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/404.png +0 -0
  42. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/500.png +0 -0
  43. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/logo.png +0 -0
  44. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/readme.md +0 -0
  45. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/js/readme.md +0 -0
  46. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/readme.md +0 -0
  47. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/en/LC_MESSAGES/messages.mo +0 -0
  48. {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/fr/LC_MESSAGES/messages.mo +0 -0
@@ -1,33 +1,33 @@
1
- /.idea/
2
- /venv/
3
- /dist/
4
- /src/public/
5
- /.pypirc
6
- /src/templates/index.twig
7
- /secrets/
8
- /.env
9
- /public/css/test.css
10
- /sessions/
11
- /tests/secrets/domain.cert
12
- /tests/secrets/private.key
13
- /tests/secrets/public.key
14
- /tests/src/public/css/readme.md
15
- /tests/src/public/images/403.png
16
- /tests/src/public/images/404.png
17
- /tests/src/public/images/logo.png
18
- /tests/src/public/images/readme.md
19
- /tests/src/public/js/readme.md
20
- /tests/src/public/swagger/index.html
21
- /tests/src/public/swagger/oauth2-redirect.html
22
- /tests/src/public/favicon.ico
23
- /tests/src/templates/errors/403.twig
24
- /tests/src/templates/errors/404.twig
25
- /tests/src/templates/readme.md
26
- /tests/src/__init__.py
27
- /tests/.env
28
- /tests/app.py
29
- /test.db
30
- /logs/
31
- /migrations/__test_user.sql
32
- /migrations/__test_user_item.sql
33
- /tina4_python.egg-info/
1
+ /.idea/
2
+ /venv/
3
+ /dist/
4
+ /src/public/
5
+ /.pypirc
6
+ /src/templates/index.twig
7
+ /secrets/
8
+ /.env
9
+ /public/css/test.css
10
+ /sessions/
11
+ /tests/secrets/domain.cert
12
+ /tests/secrets/private.key
13
+ /tests/secrets/public.key
14
+ /tests/src/public/css/readme.md
15
+ /tests/src/public/images/403.png
16
+ /tests/src/public/images/404.png
17
+ /tests/src/public/images/logo.png
18
+ /tests/src/public/images/readme.md
19
+ /tests/src/public/js/readme.md
20
+ /tests/src/public/swagger/index.html
21
+ /tests/src/public/swagger/oauth2-redirect.html
22
+ /tests/src/public/favicon.ico
23
+ /tests/src/templates/errors/403.twig
24
+ /tests/src/templates/errors/404.twig
25
+ /tests/src/templates/readme.md
26
+ /tests/src/__init__.py
27
+ /tests/.env
28
+ /tests/app.py
29
+ /test.db
30
+ /logs/
31
+ /migrations/__test_user.sql
32
+ /migrations/__test_user_item.sql
33
+ /tina4_python.egg-info/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tina4-python
3
- Version: 0.2.99
3
+ Version: 0.2.100
4
4
  Summary: Tina4Python - This is not another framework for Python
5
5
  Author-email: Andre van Zuydam <andrevanzuydam@gmail.com>
6
6
  Requires-Python: <4.0,>=3.12