Weave multiple streams of intervals into combinations
Project description
eventweave
Eventweave is a lightweight Python utility that groups overlapping events into chronological combinations. It is useful for temporal reasoning and event sourcing, allowing you to analyze and visualize the relationships between events that occur simultaneously.
Features
- Accepts any iterable of events with user-defined start and end times
- Yields sets of events that are simultaneously active at some point in time
- Handles edge cases for back-to-back, non-overlapping intervals
- Supports atomic events that start and end at the same time
- Runs in
O(n log n)time andO(n)space
Installation
This project is self-contained with no dependencies beyond the Python standard library.
You can install it using pip:
python -m pip install eventweave
Supported for Python 3.13 and above.
Example Usage
Define your events and a key function:
>>> from eventweave import interweave
>>>
>>> events = [
... ("A", (1, 4)),
... ("B", (2, 5)),
... ("C", (5, 6)),
... ]
>>>
>>> def key(event):
... return event[1]
Use interweave to iterate over overlapping combinations:
>>> result = list(interweave(events, key))
>>> expected = [
... {('A', (1, 4))},
... {('A', (1, 4)), ('B', (2, 5))},
... {('B', (2, 5))},
... {('C', (5, 6))},
... ]
>>> assert result == expected
Clarification of Overlapping Events
If one event ends at time T and another begins at time T, they are not
considered overlapping. The model assumes the starting event ends just after
T to preserve strict separation of events that merely touch.
Instantaneous events - where the start and end times are the same - are
considered to be active exactly at this point in time. If an event E starts
and ends at time T, it will overlap with any other event that ends at T.
However, it will not overlap with any event that starts at T, due to the
rule above.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eventweave-0.5.0.tar.gz.
File metadata
- Download URL: eventweave-0.5.0.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf6ed68ac4e7c17c2dd5974bea56f33e6ef969540864ed52264a91a1a9fa1a1
|
|
| MD5 |
aaf0a6db8abe83a12a4cfb01b1dadc4d
|
|
| BLAKE2b-256 |
c7e08f0f25a3720883df2ec486ecce72a54f458a8ac69daf0cc0132761090a19
|
Provenance
The following attestation bundles were made for eventweave-0.5.0.tar.gz:
Publisher:
python-publish.yml on MaxG87/eventweave
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eventweave-0.5.0.tar.gz -
Subject digest:
dcf6ed68ac4e7c17c2dd5974bea56f33e6ef969540864ed52264a91a1a9fa1a1 - Sigstore transparency entry: 235416899
- Sigstore integration time:
-
Permalink:
MaxG87/eventweave@ebc98161e36f57340e14863ad92eb26da808167e -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/MaxG87
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ebc98161e36f57340e14863ad92eb26da808167e -
Trigger Event:
release
-
Statement type:
File details
Details for the file eventweave-0.5.0-py3-none-any.whl.
File metadata
- Download URL: eventweave-0.5.0-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9527ae5fa87aa8e1810136821df6ad2fcfcff8f107ad802f984f324c1cbb46bf
|
|
| MD5 |
a11d7fefb5b7e72c2403ab623593ccc0
|
|
| BLAKE2b-256 |
2e862eac7e27bbf4a9ae4bc2c3b5d2b4f7c751e5b658a2f27adc8c5a588409a6
|
Provenance
The following attestation bundles were made for eventweave-0.5.0-py3-none-any.whl:
Publisher:
python-publish.yml on MaxG87/eventweave
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eventweave-0.5.0-py3-none-any.whl -
Subject digest:
9527ae5fa87aa8e1810136821df6ad2fcfcff8f107ad802f984f324c1cbb46bf - Sigstore transparency entry: 235416903
- Sigstore integration time:
-
Permalink:
MaxG87/eventweave@ebc98161e36f57340e14863ad92eb26da808167e -
Branch / Tag:
refs/tags/v0.5.0 - Owner: https://github.com/MaxG87
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@ebc98161e36f57340e14863ad92eb26da808167e -
Trigger Event:
release
-
Statement type: