python-cqrs 0.0.13__tar.gz → 0.0.15__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.
- {python_cqrs-0.0.13/src/python_cqrs.egg-info → python_cqrs-0.0.15}/PKG-INFO +10 -3
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/pyproject.toml +16 -11
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/outbox/sqlalchemy.py +0 -2
- {python_cqrs-0.0.13 → python_cqrs-0.0.15/src/python_cqrs.egg-info}/PKG-INFO +10 -3
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/LICENSE +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/README.md +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/setup.cfg +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/adapters/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/adapters/amqp.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/adapters/kafka.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/compressors/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/compressors/protocol.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/compressors/zlib.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/container/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/container/di.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/container/protocol.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/dispatcher/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/dispatcher/dispatcher.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/events/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/events/bootstrap.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/events/event.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/events/event_emitter.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/events/event_handler.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/events/map.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/mediator.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/message_brokers/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/message_brokers/amqp.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/message_brokers/devnull.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/message_brokers/kafka.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/message_brokers/protocol.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/middlewares/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/middlewares/base.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/middlewares/logging.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/outbox/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/outbox/producer.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/outbox/protocol.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/outbox/repository.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/requests/__init__.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/requests/bootstrap.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/requests/map.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/requests/request.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/requests/request_handler.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/cqrs/response.py +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/python_cqrs.egg-info/SOURCES.txt +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/python_cqrs.egg-info/dependency_links.txt +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/python_cqrs.egg-info/requires.txt +0 -0
- {python_cqrs-0.0.13 → python_cqrs-0.0.15}/src/python_cqrs.egg-info/top_level.txt +0 -0
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-cqrs
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.15
|
|
4
4
|
Summary: Python CQRS pattern implementation
|
|
5
|
-
Author
|
|
5
|
+
Author: Nikita Kunov
|
|
6
|
+
Author-email: Dmitriy Kutlubaev <kutlubaev00@mail.ru>, Vadim Kozyrevskiy <vadikko2@mail.ru>
|
|
6
7
|
Maintainer-email: Vadim Kozyrevskiy <vadikko2@mail.ru>
|
|
7
|
-
|
|
8
|
+
Project-URL: Issues, https://github.com/vadikko2/python-cqrs/issues
|
|
9
|
+
Project-URL: Repository, https://github.com/vadikko2/python-cqrs
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
8
14
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
15
|
Classifier: Operating System :: OS Independent
|
|
16
|
+
Requires-Python: >=3.10
|
|
10
17
|
Description-Content-Type: text/markdown
|
|
11
18
|
License-File: LICENSE
|
|
12
19
|
Requires-Dist: pydantic==2.*
|
|
@@ -4,10 +4,15 @@ requires = ["setuptools>=42", "wheel"]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
authors = [
|
|
7
|
+
{name = "Dmitriy Kutlubaev", email = "kutlubaev00@mail.ru"},
|
|
8
|
+
{name = "Nikita Kunov"},
|
|
7
9
|
{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"}
|
|
8
10
|
]
|
|
9
11
|
classifiers = [
|
|
10
|
-
"
|
|
12
|
+
"Development Status :: 4 - Beta",
|
|
13
|
+
"Programming Language :: Python :: 3.10",
|
|
14
|
+
"Programming Language :: Python :: 3.11",
|
|
15
|
+
"Programming Language :: Python :: 3.12",
|
|
11
16
|
"License :: OSI Approved :: MIT License",
|
|
12
17
|
"Operating System :: OS Independent"
|
|
13
18
|
]
|
|
@@ -20,15 +25,15 @@ dependencies = [
|
|
|
20
25
|
"retry-async==0.1.4"
|
|
21
26
|
]
|
|
22
27
|
description = "Python CQRS pattern implementation"
|
|
23
|
-
maintainers = [
|
|
24
|
-
{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"}
|
|
25
|
-
]
|
|
28
|
+
maintainers = [{name = "Vadim Kozyrevskiy", email = "vadikko2@mail.ru"}]
|
|
26
29
|
name = "python-cqrs"
|
|
27
30
|
readme = "README.md"
|
|
28
|
-
|
|
31
|
+
requires-python = ">=3.10"
|
|
32
|
+
version = "0.0.15"
|
|
29
33
|
|
|
30
34
|
[project.optional-dependencies]
|
|
31
35
|
dev = [
|
|
36
|
+
# Develope tools
|
|
32
37
|
"pre-commit==3.8.0",
|
|
33
38
|
"pyright==1.1.377",
|
|
34
39
|
"ruff==0.6.2",
|
|
@@ -41,17 +46,17 @@ dev = [
|
|
|
41
46
|
"cryptography==42.0.2",
|
|
42
47
|
"asyncmy==0.2.9"
|
|
43
48
|
]
|
|
44
|
-
kafka = [
|
|
45
|
-
|
|
46
|
-
]
|
|
49
|
+
kafka = ["aiokafka==0.10.0"]
|
|
50
|
+
|
|
51
|
+
[project.urls]
|
|
52
|
+
Issues = "https://github.com/vadikko2/python-cqrs/issues"
|
|
53
|
+
Repository = "https://github.com/vadikko2/python-cqrs"
|
|
47
54
|
|
|
48
55
|
[tool.pytest.ini_options]
|
|
49
56
|
addopts = "--junit-xml=report.xml"
|
|
50
57
|
asyncio_mode = "auto"
|
|
51
58
|
junit_family = "xunit1"
|
|
52
|
-
testpaths = [
|
|
53
|
-
"tests"
|
|
54
|
-
]
|
|
59
|
+
testpaths = ["tests"]
|
|
55
60
|
|
|
56
61
|
[tool.setuptools.packages.find]
|
|
57
62
|
where = ["src"]
|
|
@@ -116,7 +116,6 @@ class OutboxModel(Base):
|
|
|
116
116
|
.order_by(cls.status_sorting_case().asc())
|
|
117
117
|
.order_by(cls.id.asc())
|
|
118
118
|
.limit(size)
|
|
119
|
-
.with_for_update()
|
|
120
119
|
)
|
|
121
120
|
|
|
122
121
|
@classmethod
|
|
@@ -138,7 +137,6 @@ class OutboxModel(Base):
|
|
|
138
137
|
)
|
|
139
138
|
.order_by(cls.status_sorting_case().asc())
|
|
140
139
|
.order_by(cls.id.asc())
|
|
141
|
-
.with_for_update()
|
|
142
140
|
)
|
|
143
141
|
|
|
144
142
|
@classmethod
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-cqrs
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.15
|
|
4
4
|
Summary: Python CQRS pattern implementation
|
|
5
|
-
Author
|
|
5
|
+
Author: Nikita Kunov
|
|
6
|
+
Author-email: Dmitriy Kutlubaev <kutlubaev00@mail.ru>, Vadim Kozyrevskiy <vadikko2@mail.ru>
|
|
6
7
|
Maintainer-email: Vadim Kozyrevskiy <vadikko2@mail.ru>
|
|
7
|
-
|
|
8
|
+
Project-URL: Issues, https://github.com/vadikko2/python-cqrs/issues
|
|
9
|
+
Project-URL: Repository, https://github.com/vadikko2/python-cqrs
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
8
14
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
15
|
Classifier: Operating System :: OS Independent
|
|
16
|
+
Requires-Python: >=3.10
|
|
10
17
|
Description-Content-Type: text/markdown
|
|
11
18
|
License-File: LICENSE
|
|
12
19
|
Requires-Dist: pydantic==2.*
|
|
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
|
|
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
|