python3-commons 0.24.0__tar.gz → 0.24.2__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.24.0 → python3_commons-0.24.2}/.pre-commit-config.yaml +2 -2
- python3_commons-0.24.2/.python-version +1 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/PKG-INFO +4 -4
- {python3_commons-0.24.0 → python3_commons-0.24.2}/pyproject.toml +3 -4
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/PKG-INFO +4 -4
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/requires.txt +3 -3
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/scm_file_list.json +59 -59
- python3_commons-0.24.2/src/python3_commons.egg-info/scm_version.json +8 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/uv.lock +165 -215
- python3_commons-0.24.0/.python-version +0 -1
- python3_commons-0.24.0/src/python3_commons.egg-info/scm_version.json +0 -8
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.coveragerc +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.env_template +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/.gitignore +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/AUTHORS.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/CHANGELOG.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/LICENSE +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/README.md +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/README.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/Makefile +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/_static/.gitignore +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/authors.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/changelog.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/conf.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/index.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/docs/license.rst +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/setup.cfg +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/integration/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/integration/conftest.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/conftest.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/test_auth.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.24.0 → python3_commons-0.24.2}/tests/unit/test_msgspec.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
3
|
-
rev: 0.
|
|
3
|
+
rev: 0.12.3
|
|
4
4
|
hooks:
|
|
5
5
|
- id: uv-lock
|
|
6
6
|
# - id: uv-export
|
|
7
7
|
|
|
8
8
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
9
|
-
rev: v0.16.
|
|
9
|
+
rev: v0.16.2
|
|
10
10
|
hooks:
|
|
11
11
|
# Run the linter.
|
|
12
12
|
- id: ruff-check
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
==3.14.7
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.2
|
|
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
|
|
@@ -14,7 +14,7 @@ License-File: LICENSE
|
|
|
14
14
|
License-File: AUTHORS.rst
|
|
15
15
|
Requires-Dist: msgpack~=1.2.1
|
|
16
16
|
Requires-Dist: msgspec~=0.21.1
|
|
17
|
-
Requires-Dist: pydantic-settings~=2.
|
|
17
|
+
Requires-Dist: pydantic-settings~=2.15.0
|
|
18
18
|
Provides-Extra: all
|
|
19
19
|
Requires-Dist: python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]; extra == "all"
|
|
20
20
|
Provides-Extra: api-client
|
|
@@ -38,8 +38,8 @@ Provides-Extra: database
|
|
|
38
38
|
Requires-Dist: asyncpg~=0.31.0; extra == "database"
|
|
39
39
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.51; extra == "database"
|
|
40
40
|
Provides-Extra: object-storage
|
|
41
|
-
Requires-Dist: aiobotocore
|
|
42
|
-
Requires-Dist: object-storage-client~=0.1.
|
|
41
|
+
Requires-Dist: aiobotocore==3.9.0; extra == "object-storage"
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.5; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
44
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
|
|
45
45
|
Requires-Dist: certifi~=2026.7.22; extra == "soap-client"
|
|
@@ -20,7 +20,7 @@ requires-python = ">=3.14.0,<3.15.0"
|
|
|
20
20
|
dependencies = [
|
|
21
21
|
"msgpack~=1.2.1",
|
|
22
22
|
"msgspec~=0.21.1",
|
|
23
|
-
"pydantic-settings~=2.
|
|
23
|
+
"pydantic-settings~=2.15.0"
|
|
24
24
|
]
|
|
25
25
|
|
|
26
26
|
[project.optional-dependencies]
|
|
@@ -54,8 +54,8 @@ database = [
|
|
|
54
54
|
"SQLAlchemy[asyncio]~=2.0.51",
|
|
55
55
|
]
|
|
56
56
|
object-storage = [
|
|
57
|
-
"aiobotocore
|
|
58
|
-
"object-storage-client~=0.1.
|
|
57
|
+
"aiobotocore==3.9.0",
|
|
58
|
+
"object-storage-client~=0.1.5",
|
|
59
59
|
]
|
|
60
60
|
soap-client = [
|
|
61
61
|
"aiohttp[speedups]>=3.14.3,<3.15.0",
|
|
@@ -76,7 +76,6 @@ dev = [
|
|
|
76
76
|
"setuptools",
|
|
77
77
|
"setuptools_scm",
|
|
78
78
|
"ty",
|
|
79
|
-
"types-aiobotocore[s3]",
|
|
80
79
|
"wheel",
|
|
81
80
|
]
|
|
82
81
|
testing = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.24.
|
|
3
|
+
Version: 0.24.2
|
|
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
|
|
@@ -14,7 +14,7 @@ License-File: LICENSE
|
|
|
14
14
|
License-File: AUTHORS.rst
|
|
15
15
|
Requires-Dist: msgpack~=1.2.1
|
|
16
16
|
Requires-Dist: msgspec~=0.21.1
|
|
17
|
-
Requires-Dist: pydantic-settings~=2.
|
|
17
|
+
Requires-Dist: pydantic-settings~=2.15.0
|
|
18
18
|
Provides-Extra: all
|
|
19
19
|
Requires-Dist: python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]; extra == "all"
|
|
20
20
|
Provides-Extra: api-client
|
|
@@ -38,8 +38,8 @@ Provides-Extra: database
|
|
|
38
38
|
Requires-Dist: asyncpg~=0.31.0; extra == "database"
|
|
39
39
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.51; extra == "database"
|
|
40
40
|
Provides-Extra: object-storage
|
|
41
|
-
Requires-Dist: aiobotocore
|
|
42
|
-
Requires-Dist: object-storage-client~=0.1.
|
|
41
|
+
Requires-Dist: aiobotocore==3.9.0; extra == "object-storage"
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.5; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
44
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
|
|
45
45
|
Requires-Dist: certifi~=2026.7.22; extra == "soap-client"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
msgpack~=1.2.1
|
|
2
2
|
msgspec~=0.21.1
|
|
3
|
-
pydantic-settings~=2.
|
|
3
|
+
pydantic-settings~=2.15.0
|
|
4
4
|
|
|
5
5
|
[all]
|
|
6
6
|
python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]
|
|
@@ -32,8 +32,8 @@ asyncpg~=0.31.0
|
|
|
32
32
|
SQLAlchemy[asyncio]~=2.0.51
|
|
33
33
|
|
|
34
34
|
[object-storage]
|
|
35
|
-
aiobotocore
|
|
36
|
-
object-storage-client~=0.1.
|
|
35
|
+
aiobotocore==3.9.0
|
|
36
|
+
object-storage-client~=0.1.5
|
|
37
37
|
|
|
38
38
|
[soap-client]
|
|
39
39
|
aiohttp[speedups]<3.15.0,>=3.14.3
|
{python3_commons-0.24.0 → python3_commons-0.24.2}/src/python3_commons.egg-info/scm_file_list.json
RENAMED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": [
|
|
3
|
+
".coveragerc",
|
|
4
|
+
".devcontainer/Dockerfile",
|
|
5
|
+
".devcontainer/devcontainer.json",
|
|
6
|
+
".devcontainer/docker-compose.yml",
|
|
7
|
+
".env_template",
|
|
8
|
+
".github/workflows/checks.yml",
|
|
9
|
+
".github/workflows/python-publish.yaml",
|
|
10
|
+
".github/workflows/release-on-tag-push.yml",
|
|
11
|
+
".gitignore",
|
|
3
12
|
".pre-commit-config.yaml",
|
|
4
|
-
"README.rst",
|
|
5
|
-
"CHANGELOG.rst",
|
|
6
13
|
".python-version",
|
|
7
|
-
"pyproject.toml",
|
|
8
|
-
".env_template",
|
|
9
14
|
"AUTHORS.rst",
|
|
15
|
+
"CHANGELOG.rst",
|
|
10
16
|
"LICENSE",
|
|
11
17
|
"README.md",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
".
|
|
20
|
-
".
|
|
21
|
-
"tests/__init__.py",
|
|
22
|
-
"tests/integration/test_auth.py",
|
|
23
|
-
"tests/integration/test_osc.py",
|
|
24
|
-
"tests/integration/__init__.py",
|
|
25
|
-
"tests/integration/conftest.py",
|
|
26
|
-
"tests/integration/test_cache.py",
|
|
27
|
-
"tests/unit/test_helpers.py",
|
|
28
|
-
"tests/unit/test_auth.py",
|
|
29
|
-
"tests/unit/test_msgpack.py",
|
|
30
|
-
"tests/unit/test_msgspec.py",
|
|
31
|
-
"tests/unit/__init__.py",
|
|
32
|
-
"tests/unit/test_audit.py",
|
|
33
|
-
"tests/unit/test_async_functools.py",
|
|
34
|
-
"tests/unit/conftest.py",
|
|
35
|
-
"tests/unit/log/test_formatters.py",
|
|
36
|
-
"tests/unit/log/__init__.py",
|
|
37
|
-
"tests/unit/db/__init__.py",
|
|
38
|
-
"tests/unit/db/test_async_session_manager.py",
|
|
39
|
-
"src/python3_commons/helpers.py",
|
|
40
|
-
"src/python3_commons/conf.py",
|
|
41
|
-
"src/python3_commons/audit.py",
|
|
42
|
-
"src/python3_commons/generators.py",
|
|
43
|
-
"src/python3_commons/auth.py",
|
|
18
|
+
"README.rst",
|
|
19
|
+
"docs/Makefile",
|
|
20
|
+
"docs/_static/.gitignore",
|
|
21
|
+
"docs/authors.rst",
|
|
22
|
+
"docs/changelog.rst",
|
|
23
|
+
"docs/conf.py",
|
|
24
|
+
"docs/index.rst",
|
|
25
|
+
"docs/license.rst",
|
|
26
|
+
"pyproject.toml",
|
|
44
27
|
"src/python3_commons/__init__.py",
|
|
45
|
-
"src/python3_commons/
|
|
28
|
+
"src/python3_commons/api_client.py",
|
|
46
29
|
"src/python3_commons/async_functools.py",
|
|
47
|
-
"src/python3_commons/
|
|
48
|
-
"src/python3_commons/
|
|
49
|
-
"src/python3_commons/object_storage.py",
|
|
30
|
+
"src/python3_commons/audit.py",
|
|
31
|
+
"src/python3_commons/auth.py",
|
|
50
32
|
"src/python3_commons/cache.py",
|
|
51
|
-
"src/python3_commons/
|
|
52
|
-
"src/python3_commons/permissions.py",
|
|
53
|
-
"src/python3_commons/log/__init__.py",
|
|
54
|
-
"src/python3_commons/log/filters.py",
|
|
55
|
-
"src/python3_commons/log/formatters.py",
|
|
56
|
-
"src/python3_commons/db/helpers.py",
|
|
33
|
+
"src/python3_commons/conf.py",
|
|
57
34
|
"src/python3_commons/db/__init__.py",
|
|
58
|
-
"src/python3_commons/db/
|
|
59
|
-
"src/python3_commons/db/models/users.py",
|
|
60
|
-
"src/python3_commons/db/models/auth.py",
|
|
35
|
+
"src/python3_commons/db/helpers.py",
|
|
61
36
|
"src/python3_commons/db/models/__init__.py",
|
|
37
|
+
"src/python3_commons/db/models/auth.py",
|
|
38
|
+
"src/python3_commons/db/models/common.py",
|
|
62
39
|
"src/python3_commons/db/models/rbac.py",
|
|
63
|
-
"src/python3_commons/
|
|
64
|
-
"src/python3_commons/
|
|
65
|
-
"src/python3_commons/
|
|
40
|
+
"src/python3_commons/db/models/users.py",
|
|
41
|
+
"src/python3_commons/exceptions.py",
|
|
42
|
+
"src/python3_commons/fs.py",
|
|
43
|
+
"src/python3_commons/generators.py",
|
|
44
|
+
"src/python3_commons/helpers.py",
|
|
45
|
+
"src/python3_commons/log/__init__.py",
|
|
46
|
+
"src/python3_commons/log/filters.py",
|
|
47
|
+
"src/python3_commons/log/formatters.py",
|
|
48
|
+
"src/python3_commons/object_storage.py",
|
|
49
|
+
"src/python3_commons/permissions.py",
|
|
66
50
|
"src/python3_commons/serializers/__init__.py",
|
|
51
|
+
"src/python3_commons/serializers/common.py",
|
|
67
52
|
"src/python3_commons/serializers/json.py",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
53
|
+
"src/python3_commons/serializers/msgpack.py",
|
|
54
|
+
"src/python3_commons/serializers/msgspec.py",
|
|
55
|
+
"src/python3_commons/soap_client.py",
|
|
56
|
+
"tests/__init__.py",
|
|
57
|
+
"tests/integration/__init__.py",
|
|
58
|
+
"tests/integration/conftest.py",
|
|
59
|
+
"tests/integration/test_auth.py",
|
|
60
|
+
"tests/integration/test_cache.py",
|
|
61
|
+
"tests/integration/test_osc.py",
|
|
62
|
+
"tests/unit/__init__.py",
|
|
63
|
+
"tests/unit/conftest.py",
|
|
64
|
+
"tests/unit/db/__init__.py",
|
|
65
|
+
"tests/unit/db/test_async_session_manager.py",
|
|
66
|
+
"tests/unit/log/__init__.py",
|
|
67
|
+
"tests/unit/log/test_formatters.py",
|
|
68
|
+
"tests/unit/test_async_functools.py",
|
|
69
|
+
"tests/unit/test_audit.py",
|
|
70
|
+
"tests/unit/test_auth.py",
|
|
71
|
+
"tests/unit/test_helpers.py",
|
|
72
|
+
"tests/unit/test_msgpack.py",
|
|
73
|
+
"tests/unit/test_msgspec.py",
|
|
74
|
+
"uv.lock"
|
|
75
75
|
]
|
|
76
76
|
}
|