eventsourcing 9.4.0a4__py3-none-any.whl → 9.4.0a6__py3-none-any.whl
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/application.py +21 -27
- eventsourcing/domain.py +49 -51
- eventsourcing/interface.py +5 -2
- eventsourcing/persistence.py +29 -36
- eventsourcing/popo.py +17 -16
- eventsourcing/postgres.py +18 -17
- eventsourcing/projection.py +17 -26
- eventsourcing/sqlite.py +18 -17
- eventsourcing/system.py +49 -62
- eventsourcing/tests/application.py +3 -3
- eventsourcing/tests/persistence.py +12 -12
- eventsourcing/utils.py +8 -20
- {eventsourcing-9.4.0a4.dist-info → eventsourcing-9.4.0a6.dist-info}/METADATA +4 -6
- eventsourcing-9.4.0a6.dist-info/RECORD +26 -0
- {eventsourcing-9.4.0a4.dist-info → eventsourcing-9.4.0a6.dist-info}/WHEEL +1 -1
- eventsourcing-9.4.0a4.dist-info/RECORD +0 -26
- {eventsourcing-9.4.0a4.dist-info → eventsourcing-9.4.0a6.dist-info}/AUTHORS +0 -0
- {eventsourcing-9.4.0a4.dist-info → eventsourcing-9.4.0a6.dist-info}/LICENSE +0 -0
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: eventsourcing
|
|
3
|
-
Version: 9.4.
|
|
3
|
+
Version: 9.4.0a6
|
|
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 :: 3 - Alpha
|
|
12
11
|
Classifier: Intended Audience :: Developers
|
|
13
12
|
Classifier: Intended Audience :: Education
|
|
@@ -17,7 +16,6 @@ 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
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -27,11 +25,11 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
27
25
|
Provides-Extra: crypto
|
|
28
26
|
Provides-Extra: cryptography
|
|
29
27
|
Provides-Extra: postgres
|
|
30
|
-
Requires-Dist: backports.zoneinfo ; python_version < "3.9"
|
|
31
28
|
Requires-Dist: cryptography (>=44.0,<44.1) ; extra == "cryptography"
|
|
32
29
|
Requires-Dist: psycopg[pool] (<=3.2.99999) ; extra == "postgres"
|
|
33
30
|
Requires-Dist: pycryptodome (>=3.22,<3.23) ; extra == "crypto"
|
|
34
31
|
Requires-Dist: typing_extensions
|
|
32
|
+
Project-URL: Homepage, https://github.com/pyeventsourcing/eventsourcing
|
|
35
33
|
Project-URL: Repository, https://github.com/pyeventsourcing/eventsourcing
|
|
36
34
|
Description-Content-Type: text/markdown
|
|
37
35
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
eventsourcing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
eventsourcing/application.py,sha256=jnW_D1WpcH_S9tOER36xzy3juYzm9D3f-nGTKAU8RpI,36188
|
|
3
|
+
eventsourcing/cipher.py,sha256=AjgOlOv9FF6xyXiFnHwcK6NX5IJ3nPHFL5GzIyWozyg,3265
|
|
4
|
+
eventsourcing/compressor.py,sha256=IdvrJUB9B2td871oifInv4lGXmHwYL9d69MbHHCr7uI,421
|
|
5
|
+
eventsourcing/cryptography.py,sha256=ZsQFyeyMZysADqKy38ECV71j6EMMSbo3VQO7oRnC1h0,2994
|
|
6
|
+
eventsourcing/dispatch.py,sha256=yYSpT-jqc6l_wTdqEnfPJJfvsZN2Ta8g2anrVPWIcqQ,1412
|
|
7
|
+
eventsourcing/domain.py,sha256=3pg7OtnupNFEJxLH0cur1k6rSFspYX2Ic6wteuEjtxE,58170
|
|
8
|
+
eventsourcing/interface.py,sha256=kObA7ouzLD4YpJMjhfPVmRUcDzhbK0bbFKXy75EscHU,5138
|
|
9
|
+
eventsourcing/persistence.py,sha256=5fyJ9H7rgQY1M1cO6rfNU9VI2_GLn4KjFLia7lqXLSM,46147
|
|
10
|
+
eventsourcing/popo.py,sha256=wSnpFutz24czC34v-Pd_OjMvv3RCXRjT0pk7ibkClrY,9573
|
|
11
|
+
eventsourcing/postgres.py,sha256=WM23kJSmKzYvbiEU6y_E5WIuOIDMQfgLi2yHqazbj3c,36325
|
|
12
|
+
eventsourcing/projection.py,sha256=x4lnqJbbnqwt_UKQN69jYSZEJkbhgvZgf-QX4c_y0lE,6774
|
|
13
|
+
eventsourcing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
eventsourcing/sqlite.py,sha256=ZiQSxaRULQMpK6RuiVQ1jD8dSMW_I-urzfAW6oL2FEk,21970
|
|
15
|
+
eventsourcing/system.py,sha256=geMw08uAEySRHaNeDwYZyzD55WcduK7WP_BTy964dEU,47063
|
|
16
|
+
eventsourcing/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
eventsourcing/tests/application.py,sha256=vHF5xp5WAXdTItdY5NsHvtT2QCRGmSM-j-afwFJqKj0,17357
|
|
18
|
+
eventsourcing/tests/domain.py,sha256=lHSlY6jIoSeqlcPSbrrozEPUJGvJ8bgPrznlmzTxn2w,3254
|
|
19
|
+
eventsourcing/tests/persistence.py,sha256=XHoe4rk9VftCJ3Wfi30K1u3wnMLUyOjuYyI7ml9ecIQ,57096
|
|
20
|
+
eventsourcing/tests/postgres_utils.py,sha256=xymcGYasUXeZTBenkHz-ykD8HtrFjVM1Z7-qRrH6OQk,1364
|
|
21
|
+
eventsourcing/utils.py,sha256=1MXOacnjXauYaBhGmmGc1nOMXWcd9NnDC8uPeiop9l4,8184
|
|
22
|
+
eventsourcing-9.4.0a6.dist-info/AUTHORS,sha256=8aHOM4UbNZcKlD-cHpFRcM6RWyCqtwtxRev6DeUgVRs,137
|
|
23
|
+
eventsourcing-9.4.0a6.dist-info/LICENSE,sha256=CQEQzcZO8AWXL5i3hIo4yVKrYjh2FBz6hCM7kpXWpw4,1512
|
|
24
|
+
eventsourcing-9.4.0a6.dist-info/METADATA,sha256=DyLTvR4U5LLER3GR88LJkFHdSB6RlZ7MnsFE30OzAi0,9797
|
|
25
|
+
eventsourcing-9.4.0a6.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
26
|
+
eventsourcing-9.4.0a6.dist-info/RECORD,,
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
eventsourcing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
eventsourcing/application.py,sha256=eV_R00f5z7u6E5ou2-QpLJnJ2LzjGMxG1WP6Qm_mVfk,36214
|
|
3
|
-
eventsourcing/cipher.py,sha256=AjgOlOv9FF6xyXiFnHwcK6NX5IJ3nPHFL5GzIyWozyg,3265
|
|
4
|
-
eventsourcing/compressor.py,sha256=IdvrJUB9B2td871oifInv4lGXmHwYL9d69MbHHCr7uI,421
|
|
5
|
-
eventsourcing/cryptography.py,sha256=ZsQFyeyMZysADqKy38ECV71j6EMMSbo3VQO7oRnC1h0,2994
|
|
6
|
-
eventsourcing/dispatch.py,sha256=yYSpT-jqc6l_wTdqEnfPJJfvsZN2Ta8g2anrVPWIcqQ,1412
|
|
7
|
-
eventsourcing/domain.py,sha256=pNetJA4uKf1chgfNFKWv1Fke3_V5g0ygRv63WT7nsUc,58208
|
|
8
|
-
eventsourcing/interface.py,sha256=LIFI9AZhoVWUAq4YjKosGCpinf51jmVLqw1Ii4npSHo,5079
|
|
9
|
-
eventsourcing/persistence.py,sha256=sfGq8BV1cnmrTy1OLoWXIObArgUD9wPHcEeM0KwZ5p8,45962
|
|
10
|
-
eventsourcing/popo.py,sha256=wBXoSVg53nVOsZVzKkrCOrXxzWe2HH1mC4aEV97rDdk,9565
|
|
11
|
-
eventsourcing/postgres.py,sha256=wu5b3Kvr4NO9yegCLAkIMDrjpkTVNisCXlFmCb74tAE,36306
|
|
12
|
-
eventsourcing/projection.py,sha256=xkMsl_VTfxtb4SOH3NwHjPRUN1L0ShFMdlp8pUEkjwE,6799
|
|
13
|
-
eventsourcing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
eventsourcing/sqlite.py,sha256=_zY-08IosW1idOnPPRg9rh0C3AyHT6yqwAv4WCOw-dg,21951
|
|
15
|
-
eventsourcing/system.py,sha256=7cM3FBdvr64ZK_xItks1MW2yg1o0OZ1vtKtznFFB_4g,47114
|
|
16
|
-
eventsourcing/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
eventsourcing/tests/application.py,sha256=Q_NFgRSRWovMcyQOZ8U1AoiIsnEHf_zCpHcP0ADaYvs,17369
|
|
18
|
-
eventsourcing/tests/domain.py,sha256=lHSlY6jIoSeqlcPSbrrozEPUJGvJ8bgPrznlmzTxn2w,3254
|
|
19
|
-
eventsourcing/tests/persistence.py,sha256=M1EZPs8DhAOW8N_GSnALPcmz-pNVCJDx73pHaEJa138,57108
|
|
20
|
-
eventsourcing/tests/postgres_utils.py,sha256=xymcGYasUXeZTBenkHz-ykD8HtrFjVM1Z7-qRrH6OQk,1364
|
|
21
|
-
eventsourcing/utils.py,sha256=QPlHhltgEcL80RWcPJ_PTygzDwhfIowUS3Z5taw0_cA,8228
|
|
22
|
-
eventsourcing-9.4.0a4.dist-info/AUTHORS,sha256=8aHOM4UbNZcKlD-cHpFRcM6RWyCqtwtxRev6DeUgVRs,137
|
|
23
|
-
eventsourcing-9.4.0a4.dist-info/LICENSE,sha256=CQEQzcZO8AWXL5i3hIo4yVKrYjh2FBz6hCM7kpXWpw4,1512
|
|
24
|
-
eventsourcing-9.4.0a4.dist-info/METADATA,sha256=5ZcTr1zycsekzuQOt2W24DYp1j2VtwAtbB9msJJC-S8,9885
|
|
25
|
-
eventsourcing-9.4.0a4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
26
|
-
eventsourcing-9.4.0a4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|