python3-commons 0.15.20__tar.gz → 0.16.0__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.
- {python3_commons-0.15.20 → python3_commons-0.16.0}/PKG-INFO +4 -4
- {python3_commons-0.15.20 → python3_commons-0.16.0}/pyproject.toml +3 -3
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/audit.py +1 -3
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/object_storage.py +33 -15
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/PKG-INFO +4 -4
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/requires.txt +3 -3
- {python3_commons-0.15.20 → python3_commons-0.16.0}/uv.lock +56 -56
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.coveragerc +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.env_template +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.gitignore +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.pre-commit-config.yaml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/.python-version +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/AUTHORS.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/CHANGELOG.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/LICENSE +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/README.md +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/README.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/Makefile +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/_static/.gitignore +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/authors.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/changelog.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/conf.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/index.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/docs/license.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/setup.cfg +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/integration/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/conftest.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.16.0}/tests/unit/test_msgspec.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: Re-usable Python3 code
|
|
5
5
|
Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
@@ -12,14 +12,14 @@ Requires-Python: <3.15.0,>=3.14.4
|
|
|
12
12
|
Description-Content-Type: text/x-rst
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
License-File: AUTHORS.rst
|
|
15
|
-
Requires-Dist: aiobotocore~=3.
|
|
15
|
+
Requires-Dist: aiobotocore~=3.5.0
|
|
16
16
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.13.5
|
|
17
17
|
Requires-Dist: asyncpg~=0.31.0
|
|
18
18
|
Requires-Dist: lxml~=6.1.0
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.21.1
|
|
21
|
-
Requires-Dist: object-storage-client==0.0.
|
|
22
|
-
Requires-Dist: pydantic-settings~=2.
|
|
21
|
+
Requires-Dist: object-storage-client==0.0.22
|
|
22
|
+
Requires-Dist: pydantic-settings~=2.14.0
|
|
23
23
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.49
|
|
24
24
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
25
25
|
Requires-Dist: zeep~=4.3.2
|
|
@@ -18,14 +18,14 @@ classifiers = [
|
|
|
18
18
|
keywords = []
|
|
19
19
|
requires-python = ">=3.14.4,<3.15.0"
|
|
20
20
|
dependencies = [
|
|
21
|
-
"aiobotocore~=3.
|
|
21
|
+
"aiobotocore~=3.5.0",
|
|
22
22
|
"aiohttp[speedups]>=3.13.5,<3.15.0",
|
|
23
23
|
"asyncpg~=0.31.0",
|
|
24
24
|
"lxml~=6.1.0",
|
|
25
25
|
"msgpack~=1.1.2",
|
|
26
26
|
"msgspec==0.21.1",
|
|
27
|
-
"object-storage-client==0.0.
|
|
28
|
-
"pydantic-settings~=2.
|
|
27
|
+
"object-storage-client==0.0.22",
|
|
28
|
+
"pydantic-settings~=2.14.0",
|
|
29
29
|
"SQLAlchemy[asyncio]~=2.0.49",
|
|
30
30
|
"valkey[libvalkey]~=6.1.1",
|
|
31
31
|
"zeep~=4.3.2"
|
|
@@ -20,9 +20,7 @@ logger = logging.getLogger(__name__)
|
|
|
20
20
|
async def write_audit_data(settings: S3Settings, key: str, data: bytes) -> None:
|
|
21
21
|
if settings.aws_secret_access_key:
|
|
22
22
|
try:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
await object_storage.put_object(settings.s3_bucket, absolute_path, io.BytesIO(data), len(data))
|
|
23
|
+
await object_storage.put_object(settings.s3_bucket, f'audit/{key}', io.BytesIO(data), len(data))
|
|
26
24
|
except Exception:
|
|
27
25
|
logger.exception('Failed storing object in storage.')
|
|
28
26
|
else:
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
import logging
|
|
4
|
+
import threading
|
|
4
5
|
from contextlib import asynccontextmanager
|
|
5
6
|
from typing import TYPE_CHECKING
|
|
6
7
|
|
|
7
8
|
import aiobotocore.session
|
|
8
9
|
from botocore.config import Config
|
|
10
|
+
from object_storage_client import ObjectStorageClient
|
|
9
11
|
|
|
10
12
|
if TYPE_CHECKING:
|
|
11
13
|
import io
|
|
@@ -19,6 +21,22 @@ from python3_commons.conf import S3Settings, s3_settings
|
|
|
19
21
|
from python3_commons.helpers import SingletonMeta
|
|
20
22
|
|
|
21
23
|
logger = logging.getLogger(__name__)
|
|
24
|
+
_CLIENT: ObjectStorageClient | None = None
|
|
25
|
+
_CLIENT_LOCK = threading.Lock()
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def get_client() -> ObjectStorageClient:
|
|
29
|
+
global _CLIENT # noqa: PLW0603
|
|
30
|
+
|
|
31
|
+
if not _CLIENT:
|
|
32
|
+
with _CLIENT_LOCK:
|
|
33
|
+
if not _CLIENT:
|
|
34
|
+
client = ObjectStorageClient()
|
|
35
|
+
_CLIENT = client
|
|
36
|
+
else:
|
|
37
|
+
client = _CLIENT
|
|
38
|
+
|
|
39
|
+
return client
|
|
22
40
|
|
|
23
41
|
|
|
24
42
|
class ObjectStorage(metaclass=SingletonMeta):
|
|
@@ -58,21 +76,21 @@ def get_absolute_path(path: str) -> str:
|
|
|
58
76
|
|
|
59
77
|
|
|
60
78
|
async def put_object(bucket_name: str, path: str, data: io.BytesIO, length: int, part_size: int = 0) -> str | None:
|
|
61
|
-
|
|
79
|
+
try:
|
|
80
|
+
client = get_client()
|
|
81
|
+
data.seek(0)
|
|
82
|
+
absolute_path = get_absolute_path(path)
|
|
83
|
+
url = f's3://{bucket_name}/{absolute_path}'
|
|
62
84
|
|
|
63
|
-
|
|
64
|
-
try:
|
|
65
|
-
data.seek(0)
|
|
85
|
+
await client.put_object(url, data.getvalue())
|
|
66
86
|
|
|
67
|
-
|
|
87
|
+
logger.debug('Stored object into object storage: %s:%s', bucket_name, path)
|
|
88
|
+
except Exception as e:
|
|
89
|
+
logger.exception('Failed to put object to object storage: %s:%s', bucket_name, path, exc_info=e)
|
|
68
90
|
|
|
69
|
-
|
|
70
|
-
except Exception as e:
|
|
71
|
-
logger.exception('Failed to put object to object storage: %s:%s', bucket_name, path, exc_info=e)
|
|
72
|
-
|
|
73
|
-
raise
|
|
91
|
+
raise
|
|
74
92
|
|
|
75
|
-
|
|
93
|
+
return f's3://{bucket_name}/{path}'
|
|
76
94
|
|
|
77
95
|
|
|
78
96
|
@asynccontextmanager
|
|
@@ -117,7 +135,7 @@ async def list_objects(bucket_name: str, prefix: str, *, recursive: bool = True)
|
|
|
117
135
|
|
|
118
136
|
|
|
119
137
|
async def get_object_streams(
|
|
120
|
-
|
|
138
|
+
bucket_name: str, path: str, *, recursive: bool = True
|
|
121
139
|
) -> AsyncGenerator[tuple[str, datetime, StreamingBody]]:
|
|
122
140
|
async for obj in list_objects(bucket_name, path, recursive=recursive):
|
|
123
141
|
object_name = obj['Key']
|
|
@@ -128,7 +146,7 @@ async def get_object_streams(
|
|
|
128
146
|
|
|
129
147
|
|
|
130
148
|
async def get_objects(
|
|
131
|
-
|
|
149
|
+
bucket_name: str, path: str, *, recursive: bool = True
|
|
132
150
|
) -> AsyncGenerator[tuple[str, datetime, bytes]]:
|
|
133
151
|
async for object_name, last_modified, stream in get_object_streams(bucket_name, path, recursive=recursive):
|
|
134
152
|
data = await stream.read()
|
|
@@ -150,7 +168,7 @@ async def remove_object(bucket_name: str, object_name: str) -> None:
|
|
|
150
168
|
|
|
151
169
|
|
|
152
170
|
async def remove_objects(
|
|
153
|
-
|
|
171
|
+
bucket_name: str, prefix: str | None = None, object_names: Iterable[str] | None = None
|
|
154
172
|
) -> Sequence[Mapping] | None:
|
|
155
173
|
storage = ObjectStorage(s3_settings)
|
|
156
174
|
|
|
@@ -173,7 +191,7 @@ async def remove_objects(
|
|
|
173
191
|
chunk_size = 1000
|
|
174
192
|
|
|
175
193
|
for i in range(0, len(objects_to_delete), chunk_size):
|
|
176
|
-
chunk = objects_to_delete[i
|
|
194
|
+
chunk = objects_to_delete[i: i + chunk_size]
|
|
177
195
|
|
|
178
196
|
response = await s3_client.delete_objects(Bucket=bucket_name, Delete={'Objects': chunk})
|
|
179
197
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: Re-usable Python3 code
|
|
5
5
|
Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
@@ -12,14 +12,14 @@ Requires-Python: <3.15.0,>=3.14.4
|
|
|
12
12
|
Description-Content-Type: text/x-rst
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
License-File: AUTHORS.rst
|
|
15
|
-
Requires-Dist: aiobotocore~=3.
|
|
15
|
+
Requires-Dist: aiobotocore~=3.5.0
|
|
16
16
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.13.5
|
|
17
17
|
Requires-Dist: asyncpg~=0.31.0
|
|
18
18
|
Requires-Dist: lxml~=6.1.0
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.21.1
|
|
21
|
-
Requires-Dist: object-storage-client==0.0.
|
|
22
|
-
Requires-Dist: pydantic-settings~=2.
|
|
21
|
+
Requires-Dist: object-storage-client==0.0.22
|
|
22
|
+
Requires-Dist: pydantic-settings~=2.14.0
|
|
23
23
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.49
|
|
24
24
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
25
25
|
Requires-Dist: zeep~=4.3.2
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/requires.txt
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
aiobotocore~=3.
|
|
1
|
+
aiobotocore~=3.5.0
|
|
2
2
|
aiohttp[speedups]<3.15.0,>=3.13.5
|
|
3
3
|
asyncpg~=0.31.0
|
|
4
4
|
lxml~=6.1.0
|
|
5
5
|
msgpack~=1.1.2
|
|
6
6
|
msgspec==0.21.1
|
|
7
|
-
object-storage-client==0.0.
|
|
8
|
-
pydantic-settings~=2.
|
|
7
|
+
object-storage-client==0.0.22
|
|
8
|
+
pydantic-settings~=2.14.0
|
|
9
9
|
SQLAlchemy[asyncio]~=2.0.49
|
|
10
10
|
valkey[libvalkey]~=6.1.1
|
|
11
11
|
zeep~=4.3.2
|
|
@@ -4,7 +4,7 @@ requires-python = ">=3.14.4, <3.15.0"
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aiobotocore"
|
|
7
|
-
version = "3.
|
|
7
|
+
version = "3.5.0"
|
|
8
8
|
source = { registry = "https://pypi.org/simple" }
|
|
9
9
|
dependencies = [
|
|
10
10
|
{ name = "aiohttp" },
|
|
@@ -15,9 +15,9 @@ dependencies = [
|
|
|
15
15
|
{ name = "python-dateutil" },
|
|
16
16
|
{ name = "wrapt" },
|
|
17
17
|
]
|
|
18
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
18
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e6/89/9533b377e9412013cc43a539d81bc5f8feeb4b6830643821ad612f78b09b/aiobotocore-3.5.0.tar.gz", hash = "sha256:d45d1c4659ad0e48b694a5aa4ff18829100386f7de96c8d146ec7757a6f12918", size = 123061, upload-time = "2026-04-21T07:25:26.993Z" }
|
|
19
19
|
wheels = [
|
|
20
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
20
|
+
{ url = "https://files.pythonhosted.org/packages/2d/05/6eeeadef45c24630af0ceae4d038b883e9a394786300529286ba8cc1e62d/aiobotocore-3.5.0-py3-none-any.whl", hash = "sha256:49ce35bb8b96b85d3251c2cbbb2ed7a028dc0cb0d0d0801f9ccca1ccd0d41ded", size = 88281, upload-time = "2026-04-21T07:25:25.258Z" },
|
|
21
21
|
]
|
|
22
22
|
|
|
23
23
|
[[package]]
|
|
@@ -164,16 +164,16 @@ wheels = [
|
|
|
164
164
|
|
|
165
165
|
[[package]]
|
|
166
166
|
name = "botocore"
|
|
167
|
-
version = "1.42.
|
|
167
|
+
version = "1.42.91"
|
|
168
168
|
source = { registry = "https://pypi.org/simple" }
|
|
169
169
|
dependencies = [
|
|
170
170
|
{ name = "jmespath" },
|
|
171
171
|
{ name = "python-dateutil" },
|
|
172
172
|
{ name = "urllib3" },
|
|
173
173
|
]
|
|
174
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
174
|
+
sdist = { url = "https://files.pythonhosted.org/packages/21/bc/a4b7c46471c2e789ad8c4c7acfd7f302fdb481d93ff870f441249b924ae6/botocore-1.42.91.tar.gz", hash = "sha256:d252e27bc454afdbf5ed3dc617aa423f2c855c081e98b7963093399483ecc698", size = 15213010, upload-time = "2026-04-17T19:30:50.793Z" }
|
|
175
175
|
wheels = [
|
|
176
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
176
|
+
{ url = "https://files.pythonhosted.org/packages/b1/fc/24cc0a47c824f13933e210e9ad034b4fba22f7185b8d904c0fbf5a3b2be8/botocore-1.42.91-py3-none-any.whl", hash = "sha256:7a28c3cc6bfab5724ad18899d52402b776a0de7d87fa20c3c5270bcaaf199ce8", size = 14897344, upload-time = "2026-04-17T19:30:44.245Z" },
|
|
177
177
|
]
|
|
178
178
|
|
|
179
179
|
[[package]]
|
|
@@ -478,11 +478,11 @@ wheels = [
|
|
|
478
478
|
|
|
479
479
|
[[package]]
|
|
480
480
|
name = "idna"
|
|
481
|
-
version = "3.
|
|
481
|
+
version = "3.12"
|
|
482
482
|
source = { registry = "https://pypi.org/simple" }
|
|
483
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
483
|
+
sdist = { url = "https://files.pythonhosted.org/packages/22/12/2948fbe5513d062169bd91f7d7b1cd97bc8894f32946b71fa39f6e63ca0c/idna-3.12.tar.gz", hash = "sha256:724e9952cc9e2bd7550ea784adb098d837ab5267ef67a1ab9cf7846bdbdd8254", size = 194350, upload-time = "2026-04-21T13:32:48.916Z" }
|
|
484
484
|
wheels = [
|
|
485
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
485
|
+
{ url = "https://files.pythonhosted.org/packages/53/b2/acc33950394b3becb2b664741a0c0889c7ef9f9ffbfa8d47eddb53a50abd/idna-3.12-py3-none-any.whl", hash = "sha256:60ffaa1858fac94c9c124728c24fcde8160f3fb4a7f79aa8cdd33a9d1af60a67", size = 68634, upload-time = "2026-04-21T13:32:47.403Z" },
|
|
486
486
|
]
|
|
487
487
|
|
|
488
488
|
[[package]]
|
|
@@ -668,13 +668,13 @@ wheels = [
|
|
|
668
668
|
|
|
669
669
|
[[package]]
|
|
670
670
|
name = "object-storage-client"
|
|
671
|
-
version = "0.0.
|
|
671
|
+
version = "0.0.22"
|
|
672
672
|
source = { registry = "https://pypi.org/simple" }
|
|
673
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
673
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1a/49/9af56487b380cef1132c1aa718702095a0ab3ddb3e82bb4eab9593dde316/object_storage_client-0.0.22.tar.gz", hash = "sha256:00535617e1f50c0dab066e7dc6bdc9d1690e989febcfaacc27737988dd5a4101", size = 40622, upload-time = "2026-04-21T12:36:41.782Z" }
|
|
674
674
|
wheels = [
|
|
675
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
676
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
677
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
675
|
+
{ url = "https://files.pythonhosted.org/packages/e3/0b/c9a4dc7ae9bc8f67877190d97c0efb94a0a9e7aef6423feaa45d93232215/object_storage_client-0.0.22-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:db7d843f11e1d281ba16533bc573343ec9e0a8d2cf779cd43464df6adca0a5a8", size = 1922610, upload-time = "2026-04-21T12:36:40.278Z" },
|
|
676
|
+
{ url = "https://files.pythonhosted.org/packages/7e/f3/3e34cc1e70e9f48ad0be5d7af1771d864a3ee618c07aad43978e2d3a131c/object_storage_client-0.0.22-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d7c92c2ca19f9d734be99162df7dc573535e7022e5a9b5c1dce121a102a85ae", size = 2114290, upload-time = "2026-04-21T12:36:37.82Z" },
|
|
677
|
+
{ url = "https://files.pythonhosted.org/packages/ee/73/4af6bf9dc086e9c0a69988d2258d2f6f5d02d00ef891d9df3d6d08c3355a/object_storage_client-0.0.22-cp314-cp314-win_amd64.whl", hash = "sha256:df863a2a3f8f1c77d06bdc547d674b321878dca7cb7db94606b763cb9cc7e508", size = 2095414, upload-time = "2026-04-21T12:36:38.966Z" },
|
|
678
678
|
]
|
|
679
679
|
|
|
680
680
|
[[package]]
|
|
@@ -814,7 +814,7 @@ wheels = [
|
|
|
814
814
|
|
|
815
815
|
[[package]]
|
|
816
816
|
name = "pydantic"
|
|
817
|
-
version = "2.13.
|
|
817
|
+
version = "2.13.3"
|
|
818
818
|
source = { registry = "https://pypi.org/simple" }
|
|
819
819
|
dependencies = [
|
|
820
820
|
{ name = "annotated-types" },
|
|
@@ -822,64 +822,64 @@ dependencies = [
|
|
|
822
822
|
{ name = "typing-extensions" },
|
|
823
823
|
{ name = "typing-inspection" },
|
|
824
824
|
]
|
|
825
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
825
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d9/e4/40d09941a2cebcb20609b86a559817d5b9291c49dd6f8c87e5feffbe703a/pydantic-2.13.3.tar.gz", hash = "sha256:af09e9d1d09f4e7fe37145c1f577e1d61ceb9a41924bf0094a36506285d0a84d", size = 844068, upload-time = "2026-04-20T14:46:43.632Z" }
|
|
826
826
|
wheels = [
|
|
827
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
827
|
+
{ url = "https://files.pythonhosted.org/packages/f3/0a/fd7d723f8f8153418fb40cf9c940e82004fce7e987026b08a68a36dd3fe7/pydantic-2.13.3-py3-none-any.whl", hash = "sha256:6db14ac8dfc9a1e57f87ea2c0de670c251240f43cb0c30a5130e9720dc612927", size = 471981, upload-time = "2026-04-20T14:46:41.402Z" },
|
|
828
828
|
]
|
|
829
829
|
|
|
830
830
|
[[package]]
|
|
831
831
|
name = "pydantic-core"
|
|
832
|
-
version = "2.46.
|
|
832
|
+
version = "2.46.3"
|
|
833
833
|
source = { registry = "https://pypi.org/simple" }
|
|
834
834
|
dependencies = [
|
|
835
835
|
{ name = "typing-extensions" },
|
|
836
836
|
]
|
|
837
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
838
|
-
wheels = [
|
|
839
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
840
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
841
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
842
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
843
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
844
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
845
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
846
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
847
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
848
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
849
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
850
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
851
|
-
{ url = "https://files.pythonhosted.org/packages/51/
|
|
852
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
853
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
854
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
855
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
856
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
857
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
858
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
859
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
860
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
861
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
862
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
863
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
864
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
865
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
866
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
867
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
868
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
837
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2a/ef/f7abb56c49382a246fd2ce9c799691e3c3e7175ec74b14d99e798bcddb1a/pydantic_core-2.46.3.tar.gz", hash = "sha256:41c178f65b8c29807239d47e6050262eb6bf84eb695e41101e62e38df4a5bc2c", size = 471412, upload-time = "2026-04-20T14:40:56.672Z" }
|
|
838
|
+
wheels = [
|
|
839
|
+
{ url = "https://files.pythonhosted.org/packages/7f/db/a7bcb4940183fda36022cd18ba8dd12f2dff40740ec7b58ce7457befa416/pydantic_core-2.46.3-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:afa3aa644f74e290cdede48a7b0bee37d1c35e71b05105f6b340d484af536d9b", size = 2097614, upload-time = "2026-04-20T14:44:38.374Z" },
|
|
840
|
+
{ url = "https://files.pythonhosted.org/packages/24/35/e4066358a22e3e99519db370494c7528f5a2aa1367370e80e27e20283543/pydantic_core-2.46.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ced3310e51aa425f7f77da8bbbb5212616655bedbe82c70944320bc1dbe5e018", size = 1951896, upload-time = "2026-04-20T14:40:53.996Z" },
|
|
841
|
+
{ url = "https://files.pythonhosted.org/packages/87/92/37cf4049d1636996e4b888c05a501f40a43ff218983a551d57f9d5e14f0d/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e29908922ce9da1a30b4da490bd1d3d82c01dcfdf864d2a74aacee674d0bfa34", size = 1979314, upload-time = "2026-04-20T14:41:49.446Z" },
|
|
842
|
+
{ url = "https://files.pythonhosted.org/packages/d8/36/9ff4d676dfbdfb2d591cf43f3d90ded01e15b1404fd101180ed2d62a2fd3/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c9ff69140423eea8ed2d5477df3ba037f671f5e897d206d921bc9fdc39613e7", size = 2056133, upload-time = "2026-04-20T14:42:23.574Z" },
|
|
843
|
+
{ url = "https://files.pythonhosted.org/packages/bc/f0/405b442a4d7ba855b06eec8b2bf9c617d43b8432d099dfdc7bf999293495/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b675ab0a0d5b1c8fdb81195dc5bcefea3f3c240871cdd7ff9a2de8aa50772eb2", size = 2228726, upload-time = "2026-04-20T14:44:22.816Z" },
|
|
844
|
+
{ url = "https://files.pythonhosted.org/packages/e7/f8/65cd92dd5a0bd89ba277a98ecbfaf6fc36bbd3300973c7a4b826d6ab1391/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0087084960f209a9a4af50ecd1fb063d9ad3658c07bb81a7a53f452dacbfb2ba", size = 2301214, upload-time = "2026-04-20T14:44:48.792Z" },
|
|
845
|
+
{ url = "https://files.pythonhosted.org/packages/fd/86/ef96a4c6e79e7a2d0410826a68fbc0eccc0fd44aa733be199d5fcac3bb87/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed42e6cc8e1b0e2b9b96e2276bad70ae625d10d6d524aed0c93de974ae029f9f", size = 2099927, upload-time = "2026-04-20T14:41:40.196Z" },
|
|
846
|
+
{ url = "https://files.pythonhosted.org/packages/6d/53/269caf30e0096e0a8a8f929d1982a27b3879872cca2d917d17c2f9fdf4fe/pydantic_core-2.46.3-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:f1771ce258afb3e4201e67d154edbbae712a76a6081079fe247c2f53c6322c22", size = 2128789, upload-time = "2026-04-20T14:41:15.868Z" },
|
|
847
|
+
{ url = "https://files.pythonhosted.org/packages/00/b0/1a6d9b6a587e118482910c244a1c5acf4d192604174132efd12bf0ac486f/pydantic_core-2.46.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a7610b6a5242a6c736d8ad47fd5fff87fcfe8f833b281b1c409c3d6835d9227f", size = 2173815, upload-time = "2026-04-20T14:44:25.152Z" },
|
|
848
|
+
{ url = "https://files.pythonhosted.org/packages/87/56/e7e00d4041a7e62b5a40815590114db3b535bf3ca0bf4dca9f16cef25246/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:ff5e7783bcc5476e1db448bf268f11cb257b1c276d3e89f00b5727be86dd0127", size = 2181608, upload-time = "2026-04-20T14:41:28.933Z" },
|
|
849
|
+
{ url = "https://files.pythonhosted.org/packages/e8/22/4bd23c3d41f7c185d60808a1de83c76cf5aeabf792f6c636a55c3b1ec7f9/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:9d2e32edcc143bc01e95300671915d9ca052d4f745aa0a49c48d4803f8a85f2c", size = 2326968, upload-time = "2026-04-20T14:42:03.962Z" },
|
|
850
|
+
{ url = "https://files.pythonhosted.org/packages/24/ac/66cd45129e3915e5ade3b292cb3bc7fd537f58f8f8dbdaba6170f7cabb74/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:6e42d83d1c6b87fa56b521479cff237e626a292f3b31b6345c15a99121b454c1", size = 2369842, upload-time = "2026-04-20T14:41:35.52Z" },
|
|
851
|
+
{ url = "https://files.pythonhosted.org/packages/a2/51/dd4248abb84113615473aa20d5545b7c4cd73c8644003b5259686f93996c/pydantic_core-2.46.3-cp314-cp314-win32.whl", hash = "sha256:07bc6d2a28c3adb4f7c6ae46aa4f2d2929af127f587ed44057af50bf1ce0f505", size = 1959661, upload-time = "2026-04-20T14:41:00.042Z" },
|
|
852
|
+
{ url = "https://files.pythonhosted.org/packages/20/eb/59980e5f1ae54a3b86372bd9f0fa373ea2d402e8cdcd3459334430f91e91/pydantic_core-2.46.3-cp314-cp314-win_amd64.whl", hash = "sha256:8940562319bc621da30714617e6a7eaa6b98c84e8c685bcdc02d7ed5e7c7c44e", size = 2071686, upload-time = "2026-04-20T14:43:16.471Z" },
|
|
853
|
+
{ url = "https://files.pythonhosted.org/packages/8c/db/1cf77e5247047dfee34bc01fa9bca134854f528c8eb053e144298893d370/pydantic_core-2.46.3-cp314-cp314-win_arm64.whl", hash = "sha256:5dcbbcf4d22210ced8f837c96db941bdb078f419543472aca5d9a0bb7cddc7df", size = 2026907, upload-time = "2026-04-20T14:43:31.732Z" },
|
|
854
|
+
{ url = "https://files.pythonhosted.org/packages/57/c0/b3df9f6a543276eadba0a48487b082ca1f201745329d97dbfa287034a230/pydantic_core-2.46.3-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:d0fe3dce1e836e418f912c1ad91c73357d03e556a4d286f441bf34fed2dbeecf", size = 2095047, upload-time = "2026-04-20T14:42:37.982Z" },
|
|
855
|
+
{ url = "https://files.pythonhosted.org/packages/66/57/886a938073b97556c168fd99e1a7305bb363cd30a6d2c76086bf0587b32a/pydantic_core-2.46.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:9ce92e58abc722dac1bf835a6798a60b294e48eb0e625ec9fd994b932ac5feee", size = 1934329, upload-time = "2026-04-20T14:43:49.655Z" },
|
|
856
|
+
{ url = "https://files.pythonhosted.org/packages/0b/7c/b42eaa5c34b13b07ecb51da21761297a9b8eb43044c864a035999998f328/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a03e6467f0f5ab796a486146d1b887b2dc5e5f9b3288898c1b1c3ad974e53e4a", size = 1974847, upload-time = "2026-04-20T14:42:10.737Z" },
|
|
857
|
+
{ url = "https://files.pythonhosted.org/packages/e6/9b/92b42db6543e7de4f99ae977101a2967b63122d4b6cf7773812da2d7d5b5/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2798b6ba041b9d70acfb9071a2ea13c8456dd1e6a5555798e41ba7b0790e329c", size = 2041742, upload-time = "2026-04-20T14:40:44.262Z" },
|
|
858
|
+
{ url = "https://files.pythonhosted.org/packages/0f/19/46fbe1efabb5aa2834b43b9454e70f9a83ad9c338c1291e48bdc4fecf167/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9be3e221bdc6d69abf294dcf7aff6af19c31a5cdcc8f0aa3b14be29df4bd03b1", size = 2236235, upload-time = "2026-04-20T14:41:27.307Z" },
|
|
859
|
+
{ url = "https://files.pythonhosted.org/packages/77/da/b3f95bc009ad60ec53120f5d16c6faa8cabdbe8a20d83849a1f2b8728148/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f13936129ce841f2a5ddf6f126fea3c43cd128807b5a59588c37cf10178c2e64", size = 2282633, upload-time = "2026-04-20T14:44:33.271Z" },
|
|
860
|
+
{ url = "https://files.pythonhosted.org/packages/cc/6e/401336117722e28f32fb8220df676769d28ebdf08f2f4469646d404c43a3/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28b5f2ef03416facccb1c6ef744c69793175fd27e44ef15669201601cf423acb", size = 2109679, upload-time = "2026-04-20T14:44:41.065Z" },
|
|
861
|
+
{ url = "https://files.pythonhosted.org/packages/fc/53/b289f9bc8756a32fe718c46f55afaeaf8d489ee18d1a1e7be1db73f42cc4/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:830d1247d77ad23852314f069e9d7ddafeec5f684baf9d7e7065ed46a049c4e6", size = 2108342, upload-time = "2026-04-20T14:42:50.144Z" },
|
|
862
|
+
{ url = "https://files.pythonhosted.org/packages/10/5b/8292fc7c1f9111f1b2b7c1b0dcf1179edcd014fc3ea4517499f50b829d71/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0793c90c1a3c74966e7975eaef3ed30ebdff3260a0f815a62a22adc17e4c01c", size = 2157208, upload-time = "2026-04-20T14:42:08.133Z" },
|
|
863
|
+
{ url = "https://files.pythonhosted.org/packages/2b/9e/f80044e9ec07580f057a89fc131f78dda7a58751ddf52bbe05eaf31db50f/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:d2d0aead851b66f5245ec0c4fb2612ef457f8bbafefdf65a2bf9d6bac6140f47", size = 2167237, upload-time = "2026-04-20T14:42:25.412Z" },
|
|
864
|
+
{ url = "https://files.pythonhosted.org/packages/f8/84/6781a1b037f3b96be9227edbd1101f6d3946746056231bf4ac48cdff1a8d/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:2f40e4246676beb31c5ce77c38a55ca4e465c6b38d11ea1bd935420568e0b1ab", size = 2312540, upload-time = "2026-04-20T14:40:40.313Z" },
|
|
865
|
+
{ url = "https://files.pythonhosted.org/packages/3e/db/19c0839feeb728e7df03255581f198dfdf1c2aeb1e174a8420b63c5252e5/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:cf489cf8986c543939aeee17a09c04d6ffb43bfef8ca16fcbcc5cfdcbed24dba", size = 2369556, upload-time = "2026-04-20T14:41:09.427Z" },
|
|
866
|
+
{ url = "https://files.pythonhosted.org/packages/e0/15/3228774cb7cd45f5f721ddf1b2242747f4eb834d0c491f0c02d606f09fed/pydantic_core-2.46.3-cp314-cp314t-win32.whl", hash = "sha256:ffe0883b56cfc05798bf994164d2b2ff03efe2d22022a2bb080f3b626176dd56", size = 1949756, upload-time = "2026-04-20T14:41:25.717Z" },
|
|
867
|
+
{ url = "https://files.pythonhosted.org/packages/b8/2a/c79cf53fd91e5a87e30d481809f52f9a60dd221e39de66455cf04deaad37/pydantic_core-2.46.3-cp314-cp314t-win_amd64.whl", hash = "sha256:706d9d0ce9cf4593d07270d8e9f53b161f90c57d315aeec4fb4fd7a8b10240d8", size = 2051305, upload-time = "2026-04-20T14:43:18.627Z" },
|
|
868
|
+
{ url = "https://files.pythonhosted.org/packages/0b/db/d8182a7f1d9343a032265aae186eb063fe26ca4c40f256b21e8da4498e89/pydantic_core-2.46.3-cp314-cp314t-win_arm64.whl", hash = "sha256:77706aeb41df6a76568434701e0917da10692da28cb69d5fb6919ce5fdb07374", size = 2026310, upload-time = "2026-04-20T14:41:01.778Z" },
|
|
869
869
|
]
|
|
870
870
|
|
|
871
871
|
[[package]]
|
|
872
872
|
name = "pydantic-settings"
|
|
873
|
-
version = "2.
|
|
873
|
+
version = "2.14.0"
|
|
874
874
|
source = { registry = "https://pypi.org/simple" }
|
|
875
875
|
dependencies = [
|
|
876
876
|
{ name = "pydantic" },
|
|
877
877
|
{ name = "python-dotenv" },
|
|
878
878
|
{ name = "typing-inspection" },
|
|
879
879
|
]
|
|
880
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
880
|
+
sdist = { url = "https://files.pythonhosted.org/packages/42/98/c8345dccdc31de4228c039a98f6467a941e39558da41c1744fbe29fa5666/pydantic_settings-2.14.0.tar.gz", hash = "sha256:24285fd4b0e0c06507dd9fdfd331ee23794305352aaec8fc4eb92d4047aeb67d", size = 235709, upload-time = "2026-04-20T13:37:40.293Z" }
|
|
881
881
|
wheels = [
|
|
882
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
882
|
+
{ url = "https://files.pythonhosted.org/packages/01/dd/bebff3040138f00ae8a102d426b27349b9a49acc310fcae7f92112d867e3/pydantic_settings-2.14.0-py3-none-any.whl", hash = "sha256:fc8d5d692eb7092e43c8647c1c35a3ecd00e040fcf02ed86f4cb5458ca62182e", size = 60940, upload-time = "2026-04-20T13:37:38.586Z" },
|
|
883
883
|
]
|
|
884
884
|
|
|
885
885
|
[[package]]
|
|
@@ -1024,14 +1024,14 @@ testing = [
|
|
|
1024
1024
|
|
|
1025
1025
|
[package.metadata]
|
|
1026
1026
|
requires-dist = [
|
|
1027
|
-
{ name = "aiobotocore", specifier = "~=3.
|
|
1027
|
+
{ name = "aiobotocore", specifier = "~=3.5.0" },
|
|
1028
1028
|
{ name = "aiohttp", extras = ["speedups"], specifier = ">=3.13.5,<3.15.0" },
|
|
1029
1029
|
{ name = "asyncpg", specifier = "~=0.31.0" },
|
|
1030
1030
|
{ name = "lxml", specifier = "~=6.1.0" },
|
|
1031
1031
|
{ name = "msgpack", specifier = "~=1.1.2" },
|
|
1032
1032
|
{ name = "msgspec", specifier = "==0.21.1" },
|
|
1033
|
-
{ name = "object-storage-client", specifier = "==0.0.
|
|
1034
|
-
{ name = "pydantic-settings", specifier = "~=2.
|
|
1033
|
+
{ name = "object-storage-client", specifier = "==0.0.22" },
|
|
1034
|
+
{ name = "pydantic-settings", specifier = "~=2.14.0" },
|
|
1035
1035
|
{ name = "sqlalchemy", extras = ["asyncio"], specifier = "~=2.0.49" },
|
|
1036
1036
|
{ name = "valkey", extras = ["libvalkey"], specifier = "~=6.1.1" },
|
|
1037
1037
|
{ name = "zeep", specifier = "~=4.3.2" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/.github/workflows/release-on-tag-push.yml
RENAMED
|
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
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/db/models/__init__.py
RENAMED
|
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
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.16.0}/src/python3_commons.egg-info/top_level.txt
RENAMED
|
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
|