Timeseries signal processing implementations in ezmsg
Project description
ezmsg.sigproc
Overview
ezmsg-sigproc offers timeseries signal‑processing primitives built atop the ezmsg message‑passing framework. Core dependencies include ezmsg, numpy, scipy, pywavelets, and sparse; the project itself is managed through hatchling and uses VCS hooks to populate version.py.
Installation
Install the latest release from pypi with: pip install ezmsg-sigproc (or uv add ... or poetry add ...).
You can install pre-release versions directly from GitHub:
- Using
pip:pip install git+https://github.com/ezmsg-org/ezmsg-sigproc.git@dev - Using
uv:uv add git+https://github.com/ezmsg-org/ezmsg-sigproc --branch dev - Using
poetry:poetry add "git+https://github.com/ezmsg-org/ezmsg-sigproc.git@dev"
See the Development section below for installing with the intention of developing.
Source layout & key modules
- All source resides under src/ezmsg/sigproc, which contains a suite of processors (for example, filter.py, spectrogram.py, spectrum.py, sampler.py) and math and util subpackages.
- The framework’s backbone is base.py, defining standard protocols—Processor, Producer, Consumer, and Transformer—that enable both stateless and stateful processing chains.
- Filtering is implemented in filter.py, providing settings dataclasses and a stateful transformer that applies supplied coefficients to incoming data.
- Spectral analysis uses a composite spectrogram transformer chaining windowing, spectrum computation, and axis adjustments.
Operating styles: Standalone processors vs. ezmsg pipelines
While each processor is designed to be assembled into an ezmsg pipeline, the components are also well‑suited for offline, ad‑hoc analysis. You can instantiate processors directly in scripts or notebooks for quick prototyping or to validate results from other code. The companion Unit wrappers, however, are meant for assembling processors into a full ezmsg pipeline.
A fully defined ezmsg pipeline shines in online streaming scenarios where message routing, scheduling, and latency handling are crucial. Nevertheless, you can run the same pipeline offline—say, within a Jupyter notebook—if your analysis benefits from ezmsg’s structured execution model. Deciding between a standalone processor and a full pipeline comes down to the trade‑off between simplicity and the operational overhead of the pipeline:
- Standalone processors: Low overhead, ideal for one‑off or exploratory offline tasks.
- Pipeline + Unit wrappers: Additional setup cost but bring concurrency, standardized interfaces, and automatic message flow—useful when your offline experiment mirrors a live system or when you require fine‑grained pipeline behavior.
Documentation & tests
docs/ProcessorsBase.mddetails the processor hierarchy and generic type patterns, providing a solid foundation for custom components.- Unit tests (e.g.,
tests/unit/test_sampler.py) offer concrete examples of usage, showcasing sampler generation, windowing, and message handling.
Where to learn next
- Study docs/ProcessorsBase.md to master the processor architecture.
- Explore unit tests for hands‑on examples of composing processors and Units.
- Review the ezmsg framework in pyproject.toml to understand the surrounding ecosystem.
- Experiment with the code—try running processors standalone and then integrate them into a small pipeline to observe the trade‑offs firsthand.
This approach equips newcomers to choose the right level of abstraction—raw processor, Unit wrapper, or full pipeline—based on the demands of their analysis or streaming application.
Development
We use uv for development. It is not strictly required, but if you intend to contribute to ezmsg-sigproc then using uv will lead to the smoothest collaboration.
- Install
uvif not already installed. - Fork ezmsg-sigproc and clone your fork to your local computer.
- Open a terminal and
cdto the cloned folder. uv syncto create a .venv and install dependencies.uv run pre-commit installto install pre-commit hooks to do linting and formatting.- Run the test suite before finalizing your edits:
uv run pytest tests - Make a PR against the
devbranch of the main repo.
Project details
Release history Release notifications | RSS feed
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 ezmsg_sigproc-2.3.0.tar.gz.
File metadata
- Download URL: ezmsg_sigproc-2.3.0.tar.gz
- Upload date:
- Size: 203.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18a2933f3f72d035d77bad176581f180212364ae21cde18eb7bdc84a8ead5766
|
|
| MD5 |
13b97d5cea48b7e41e7152e9e651bc88
|
|
| BLAKE2b-256 |
b8e95844f2072cc1265286506e92d289aa6e07592bbabbd3b97778b6d9bcafef
|
File details
Details for the file ezmsg_sigproc-2.3.0-py3-none-any.whl.
File metadata
- Download URL: ezmsg_sigproc-2.3.0-py3-none-any.whl
- Upload date:
- Size: 107.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e977176df00b7d043a2596eba48b971d3338d044539f1c219a02e5225cf3fc3a
|
|
| MD5 |
9003926d2243b9da32414bc2b1da6304
|
|
| BLAKE2b-256 |
9d4d643888d10c41cb9ff9d5e423df710d5d8d8e879b3ef30eb55b1689346b53
|