eventsourcing 9.3.4__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.

Files changed (29) hide show
  1. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/LICENSE +1 -1
  2. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/PKG-INFO +14 -13
  3. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/README.md +5 -4
  4. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/application.py +115 -188
  5. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/cipher.py +9 -10
  6. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/compressor.py +2 -6
  7. eventsourcing-9.4.0/eventsourcing/cryptography.py +91 -0
  8. eventsourcing-9.4.0/eventsourcing/dispatch.py +79 -0
  9. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/domain.py +733 -690
  10. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/interface.py +39 -32
  11. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/persistence.py +412 -287
  12. eventsourcing-9.4.0/eventsourcing/popo.py +276 -0
  13. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/postgres.py +404 -187
  14. eventsourcing-9.4.0/eventsourcing/projection.py +428 -0
  15. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/sqlite.py +167 -55
  16. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/system.py +253 -341
  17. eventsourcing-9.4.0/eventsourcing/tests/__init__.py +3 -0
  18. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/tests/application.py +195 -129
  19. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/tests/domain.py +19 -37
  20. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/tests/persistence.py +533 -235
  21. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/tests/postgres_utils.py +12 -9
  22. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/utils.py +39 -47
  23. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/pyproject.toml +72 -46
  24. eventsourcing-9.3.4/eventsourcing/__init__.py +0 -1
  25. eventsourcing-9.3.4/eventsourcing/dispatch.py +0 -38
  26. eventsourcing-9.3.4/eventsourcing/popo.py +0 -184
  27. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/AUTHORS +0 -0
  28. {eventsourcing-9.3.4/eventsourcing/tests → eventsourcing-9.4.0/eventsourcing}/__init__.py +0 -0
  29. {eventsourcing-9.3.4 → eventsourcing-9.4.0}/eventsourcing/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  BSD 3-Clause License
2
2
 
3
- Copyright (c) 2023, John Bywater
3
+ Copyright (c) 2025, John Bywater
4
4
  All rights reserved.
5
5
 
6
6
  Redistribution and use in source and binary forms, with or without
@@ -1,13 +1,12 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: eventsourcing
3
- Version: 9.3.4
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.8,<4.0
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: backports.zoneinfo ; python_version < "3.9"
30
- Requires-Dist: psycopg[c,pool] (<=3.2.99999) ; extra == "postgres"
31
- Requires-Dist: pycryptodome (>=3.21,<3.22) ; extra == "crypto"
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
- [![Build Status](https://github.com/pyeventsourcing/eventsourcing/actions/workflows/runtests.yaml/badge.svg?branch=main)](https://github.com/pyeventsourcing/eventsourcing/tree/main)
36
+ [![Build Status](https://github.com/pyeventsourcing/eventsourcing/actions/workflows/runtests.yaml/badge.svg?branch=9.4)](https://github.com/pyeventsourcing/eventsourcing)
37
37
  [![Coverage Status](https://coveralls.io/repos/github/pyeventsourcing/eventsourcing/badge.svg?branch=main)](https://coveralls.io/github/pyeventsourcing/eventsourcing?branch=main)
38
38
  [![Documentation Status](https://readthedocs.org/projects/eventsourcing/badge/?version=stable)](https://eventsourcing.readthedocs.io/en/stable/)
39
39
  [![Latest Release](https://badge.fury.io/py/eventsourcing.svg)](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
- A library for event sourcing in Python.
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
- [![Build Status](https://github.com/pyeventsourcing/eventsourcing/actions/workflows/runtests.yaml/badge.svg?branch=main)](https://github.com/pyeventsourcing/eventsourcing/tree/main)
1
+ [![Build Status](https://github.com/pyeventsourcing/eventsourcing/actions/workflows/runtests.yaml/badge.svg?branch=9.4)](https://github.com/pyeventsourcing/eventsourcing)
2
2
  [![Coverage Status](https://coveralls.io/repos/github/pyeventsourcing/eventsourcing/badge.svg?branch=main)](https://coveralls.io/github/pyeventsourcing/eventsourcing?branch=main)
3
3
  [![Documentation Status](https://readthedocs.org/projects/eventsourcing/badge/?version=stable)](https://eventsourcing.readthedocs.io/en/stable/)
4
4
  [![Latest Release](https://badge.fury.io/py/eventsourcing.svg)](https://pypi.org/project/eventsourcing/)
@@ -8,7 +8,10 @@
8
8
 
9
9
  # Event Sourcing in Python
10
10
 
11
- A library for event sourcing in Python.
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