eventsourcing 9.3.5__tar.gz → 9.4.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.
Potentially problematic release.
This version of eventsourcing might be problematic. Click here for more details.
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/LICENSE +1 -1
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/PKG-INFO +14 -13
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/README.md +5 -4
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/application.py +115 -173
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/cipher.py +9 -10
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/compressor.py +2 -6
- eventsourcing-9.4.0/eventsourcing/cryptography.py +91 -0
- eventsourcing-9.4.0/eventsourcing/dispatch.py +79 -0
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/domain.py +733 -690
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/interface.py +39 -32
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/persistence.py +412 -287
- eventsourcing-9.4.0/eventsourcing/popo.py +276 -0
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/postgres.py +404 -187
- eventsourcing-9.4.0/eventsourcing/projection.py +428 -0
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/sqlite.py +167 -55
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/system.py +230 -341
- eventsourcing-9.4.0/eventsourcing/tests/__init__.py +3 -0
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/tests/application.py +195 -129
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/tests/domain.py +19 -37
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/tests/persistence.py +533 -235
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/tests/postgres_utils.py +12 -9
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/utils.py +39 -47
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/pyproject.toml +72 -46
- eventsourcing-9.3.5/eventsourcing/__init__.py +0 -1
- eventsourcing-9.3.5/eventsourcing/dispatch.py +0 -38
- eventsourcing-9.3.5/eventsourcing/popo.py +0 -184
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/AUTHORS +0 -0
- {eventsourcing-9.3.5/eventsourcing/tests → eventsourcing-9.4.0/eventsourcing}/__init__.py +0 -0
- {eventsourcing-9.3.5 → eventsourcing-9.4.0}/eventsourcing/py.typed +0 -0
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: eventsourcing
|
|
3
|
-
Version: 9.
|
|
3
|
+
Version: 9.4.0
|
|
4
4
|
Summary: Event sourcing in Python
|
|
5
|
-
Home-page: https://github.com/pyeventsourcing/eventsourcing
|
|
6
5
|
License: BSD 3-Clause
|
|
7
6
|
Keywords: event sourcing,event store,domain driven design,domain-driven design,ddd,cqrs,cqs
|
|
8
7
|
Author: John Bywater
|
|
9
8
|
Author-email: john.bywater@appropriatesoftware.net
|
|
10
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
|
|
11
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
11
|
Classifier: Intended Audience :: Developers
|
|
13
12
|
Classifier: Intended Audience :: Education
|
|
@@ -17,23 +16,24 @@ Classifier: License :: Other/Proprietary License
|
|
|
17
16
|
Classifier: Operating System :: OS Independent
|
|
18
17
|
Classifier: Programming Language :: Python
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
22
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
26
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
25
|
Provides-Extra: crypto
|
|
26
|
+
Provides-Extra: cryptography
|
|
28
27
|
Provides-Extra: postgres
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist: psycopg[
|
|
31
|
-
Requires-Dist: pycryptodome (>=3.
|
|
28
|
+
Requires-Dist: cryptography (>=44.0,<44.1) ; extra == "cryptography"
|
|
29
|
+
Requires-Dist: psycopg[pool] (<=3.2.99999) ; extra == "postgres"
|
|
30
|
+
Requires-Dist: pycryptodome (>=3.22,<3.23) ; extra == "crypto"
|
|
32
31
|
Requires-Dist: typing_extensions
|
|
32
|
+
Project-URL: Homepage, https://github.com/pyeventsourcing/eventsourcing
|
|
33
33
|
Project-URL: Repository, https://github.com/pyeventsourcing/eventsourcing
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
|
|
36
|
-
[](https://github.com/pyeventsourcing/eventsourcing)
|
|
37
37
|
[](https://coveralls.io/github/pyeventsourcing/eventsourcing?branch=main)
|
|
38
38
|
[](https://eventsourcing.readthedocs.io/en/stable/)
|
|
39
39
|
[](https://pypi.org/project/eventsourcing/)
|
|
@@ -43,7 +43,10 @@ Description-Content-Type: text/markdown
|
|
|
43
43
|
|
|
44
44
|
# Event Sourcing in Python
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
This project is a comprehensive Python library for implementing event sourcing, a design pattern where all
|
|
47
|
+
changes to application state are stored as a sequence of events. This library provides a solid foundation
|
|
48
|
+
for building event-sourced applications in Python, with a focus on reliability, performance, and developer
|
|
49
|
+
experience. Please [read the docs](https://eventsourcing.readthedocs.io/). See also [extension projects](https://github.com/pyeventsourcing).
|
|
47
50
|
|
|
48
51
|
*"totally amazing and a pleasure to use"*
|
|
49
52
|
|
|
@@ -51,8 +54,6 @@ A library for event sourcing in Python.
|
|
|
51
54
|
|
|
52
55
|
*"a huge help and time saver"*
|
|
53
56
|
|
|
54
|
-
Please [read the docs](https://eventsourcing.readthedocs.io/). See also [extension projects](https://github.com/pyeventsourcing).
|
|
55
|
-
|
|
56
57
|
|
|
57
58
|
## Installation
|
|
58
59
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[](https://github.com/pyeventsourcing/eventsourcing)
|
|
2
2
|
[](https://coveralls.io/github/pyeventsourcing/eventsourcing?branch=main)
|
|
3
3
|
[](https://eventsourcing.readthedocs.io/en/stable/)
|
|
4
4
|
[](https://pypi.org/project/eventsourcing/)
|
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
# Event Sourcing in Python
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
This project is a comprehensive Python library for implementing event sourcing, a design pattern where all
|
|
12
|
+
changes to application state are stored as a sequence of events. This library provides a solid foundation
|
|
13
|
+
for building event-sourced applications in Python, with a focus on reliability, performance, and developer
|
|
14
|
+
experience. Please [read the docs](https://eventsourcing.readthedocs.io/). See also [extension projects](https://github.com/pyeventsourcing).
|
|
12
15
|
|
|
13
16
|
*"totally amazing and a pleasure to use"*
|
|
14
17
|
|
|
@@ -16,8 +19,6 @@ A library for event sourcing in Python.
|
|
|
16
19
|
|
|
17
20
|
*"a huge help and time saver"*
|
|
18
21
|
|
|
19
|
-
Please [read the docs](https://eventsourcing.readthedocs.io/). See also [extension projects](https://github.com/pyeventsourcing).
|
|
20
|
-
|
|
21
22
|
|
|
22
23
|
## Installation
|
|
23
24
|
|