finalsa-common-http-client 0.1.5__tar.gz → 0.1.6__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.
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/PKG-INFO +1 -1
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/_shared.py +2 -2
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/pyproject.toml +1 -1
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/.gitignore +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/LICENSE.md +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/README.md +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/__init__.py +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/async_client/__init__.py +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/async_client/base.py +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/sync_client/__init__.py +0 -0
- {finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/sync_client/base.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: finalsa-common-http-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: HTTP client library for common data types used in business applications
|
|
5
5
|
Project-URL: Homepage, https://github.com/finalsa/finalsa-http-client
|
|
6
6
|
Project-URL: Documentation, https://github.com/finalsa/finalsa-http-client#readme
|
{finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/_shared.py
RENAMED
|
@@ -77,9 +77,9 @@ def parse_params(params: Mapping[str, Any] | None ) -> dict[str, str | int | flo
|
|
|
77
77
|
if value is not None:
|
|
78
78
|
result[key] = value
|
|
79
79
|
if isinstance(value, dict):
|
|
80
|
-
result[key] = dumps(value)
|
|
80
|
+
result[key] = dumps(value).decode('utf-8')
|
|
81
81
|
if isinstance(value, list):
|
|
82
|
-
result[key] = dumps(value)
|
|
82
|
+
result[key] = dumps(value).decode('utf-8')
|
|
83
83
|
return result
|
|
84
84
|
|
|
85
85
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{finalsa_common_http_client-0.1.5 → finalsa_common_http_client-0.1.6}/finalsa/http/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|