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.
- {tina4_python-0.2.99 → tina4_python-0.2.100}/.gitignore +33 -33
- {tina4_python-0.2.99 → tina4_python-0.2.100}/PKG-INFO +1 -1
- {tina4_python-0.2.99 → tina4_python-0.2.100}/README.md +446 -446
- {tina4_python-0.2.99 → tina4_python-0.2.100}/pyproject.toml +44 -44
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Auth.py +222 -222
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Constant.py +42 -42
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Database.py +588 -588
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/DatabaseResult.py +107 -107
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/DatabaseTypes.py +15 -15
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Debug.py +91 -91
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Env.py +37 -37
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Localization.py +42 -42
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Messages.py +30 -30
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/MiddleWare.py +75 -75
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Migration.py +107 -107
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/ORM.py +602 -602
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Queue.py +611 -611
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Request.py +19 -19
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Response.py +110 -110
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Router.py +387 -387
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Session.py +258 -258
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/ShellColors.py +20 -20
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Swagger.py +228 -228
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Template.py +105 -105
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Webserver.py +410 -410
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/Websocket.py +49 -49
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/__init__.py +387 -387
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/messages.pot +83 -83
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/js/reconnecting-websocket.js +365 -365
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/js/tina4helper.js +397 -397
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/swagger/index.html +90 -90
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/swagger/oauth2-redirect.html +63 -63
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/errors/403.twig +10 -10
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/errors/404.twig +10 -10
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/errors/500.twig +11 -11
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/en/LC_MESSAGES/messages.po +80 -80
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/fr/LC_MESSAGES/messages.po +84 -84
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/css/readme.md +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/favicon.ico +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/403.png +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/404.png +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/500.png +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/logo.png +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/images/readme.md +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/public/js/readme.md +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/templates/readme.md +0 -0
- {tina4_python-0.2.99 → tina4_python-0.2.100}/tina4_python/translations/en/LC_MESSAGES/messages.mo +0 -0
- {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/
|