tina4-python 0.1.76__tar.gz → 0.1.78__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.1.76 → tina4_python-0.1.78}/PKG-INFO +1 -1
- {tina4_python-0.1.76 → tina4_python-0.1.78}/pyproject.toml +1 -1
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Swagger.py +11 -9
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Webserver.py +2 -2
- {tina4_python-0.1.76 → tina4_python-0.1.78}/README.md +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Auth.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Constant.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Database.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/DatabaseResult.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Debug.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Env.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Localization.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Messages.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Migration.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Request.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Response.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Router.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Session.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/ShellColors.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/Template.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/__init__.py +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/messages.pot +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/css/readme.md +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/favicon.ico +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/images/403.png +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/images/404.png +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/images/logo.png +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/images/readme.md +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/js/readme.md +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/swagger/index.html +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/swagger/oauth2-redirect.html +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/templates/errors/403.twig +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/templates/errors/404.twig +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/templates/readme.md +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/en/LC_MESSAGES/messages.mo +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/en/LC_MESSAGES/messages.po +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/fr/LC_MESSAGES/messages.mo +0 -0
- {tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/fr/LC_MESSAGES/messages.po +0 -0
|
@@ -46,16 +46,18 @@ class Swagger:
|
|
|
46
46
|
def get_path_inputs(route_path):
|
|
47
47
|
url_segments = route_path.strip('/').split('/')
|
|
48
48
|
route_segments = route_path.strip('/').split('/')
|
|
49
|
+
try:
|
|
50
|
+
variables = {}
|
|
51
|
+
for i, segment in enumerate(route_segments):
|
|
52
|
+
if '{' in segment and '}' in segment: # parameter part
|
|
53
|
+
param_name = re.search(r'{(.*?)}', segment).group(1)
|
|
54
|
+
variables[param_name] = url_segments[i]
|
|
49
55
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
params = []
|
|
57
|
-
for variable in variables:
|
|
58
|
-
params.append({"name": variable, "in": "path", "type": "string"})
|
|
56
|
+
params = []
|
|
57
|
+
for variable in variables:
|
|
58
|
+
params.append({"name": variable, "in": "path", "type": "string"})
|
|
59
|
+
except Exception as e:
|
|
60
|
+
return []
|
|
59
61
|
|
|
60
62
|
return params
|
|
61
63
|
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
import asyncio
|
|
8
8
|
import json
|
|
9
9
|
import os
|
|
10
|
-
from urllib.parse import
|
|
10
|
+
from urllib.parse import unquote_plus
|
|
11
11
|
from urllib.parse import urlparse, parse_qsl
|
|
12
12
|
import tina4_python
|
|
13
13
|
from tina4_python.Debug import Debug
|
|
@@ -40,7 +40,7 @@ class Webserver:
|
|
|
40
40
|
for variable in variables:
|
|
41
41
|
variable_value = variable.split("=", 1) # hello=1,2,3,4=50505
|
|
42
42
|
if len(variable) > 1:
|
|
43
|
-
body[variable_value[0]] =
|
|
43
|
+
body[variable_value[0]] = unquote_plus(variable_value[1])
|
|
44
44
|
else:
|
|
45
45
|
body[variable] = None
|
|
46
46
|
|
|
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
|
|
File without changes
|
{tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/public/swagger/oauth2-redirect.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/en/LC_MESSAGES/messages.mo
RENAMED
|
File without changes
|
{tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/en/LC_MESSAGES/messages.po
RENAMED
|
File without changes
|
{tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/fr/LC_MESSAGES/messages.mo
RENAMED
|
File without changes
|
{tina4_python-0.1.76 → tina4_python-0.1.78}/tina4_python/translations/fr/LC_MESSAGES/messages.po
RENAMED
|
File without changes
|