Major breaking changes are planned for WFDB v4, in the core APIs, and the installation method. The planned release date is in August 2022.
- Stable v3 documentation: https://wfdb.readthedocs.io/en/stable/
- WIP v4 documentation: https://wfdb.readthedocs.io/en/latest/
A Python-native package for reading, writing, processing, and plotting physiologic signal and annotation data. The core I/O functionality is based on the Waveform Database (WFDB) specifications.
This package is heavily inspired by the original WFDB Software Package, and initially aimed to replicate many of its command-line APIs. However, the projects are independent, and there is no promise of consistency between the two, beyond each package adhering to the core specifications.
See the documentation site for the public APIs.
See the demo.ipynb notebook file for example use cases.
The distribution is hosted on PyPI at: https://pypi.python.org/pypi/wfdb/. The package can be directly installed from PyPI using either pip or poetry:
pip install wfdb
poetry add wfdb
The development version is hosted at: https://github.com/MIT-LCP/wfdb-python. This repository also contains demo scripts and example data. To install the development version, clone or download the repository, navigate to the base directory, and run:
# Without dev dependencies
pip install .
poetry install
# With dev dependencies
pip install ".[dev]"
poetry install -E dev
# Install the dependencies only
poetry install -E dev --no-root
See the note below about dev dependencies.
We welcome community contributions in the form of pull requests. When contributing code, please ensure:
- Documentation is provided. New functions and classes should have numpy/scipy style docstrings.
- Unit tests are written for new features that are not covered by existing tests.
- The code style is consistent with the project's formating standards.
Run the formatter with:
black .
This project uses poetry for package management and distribution.
Development dependencies are specified as optional dependencies, and then added to the "dev" extra group in the pyproject.toml file.
# Do NOT use: poetry add <somepackage> --dev
poetry add --optional <somepackage>
The [tool.poetry.dev-dependencies]
attribute is NOT used because of a limitation that prevents these dependencies from being pip installable. Therefore, dev dependencies are not installed when purely running poetry install
, and the --no-dev
flag has no meaning in this project.
Make sure the versions in version.py and pyproject.toml are kept in sync.
To upload a new distribution to PyPI:
poetry publish
The project's documentation is generated by Sphinx using the content in the docs directory. The generated content is then hosted on readthedocs (RTD) at: http://wfdb.readthedocs.io
To manage the content on RTD, request yourself to be added to the wfdb project. The project has already been configured to import content from the GitHub repository. Documentation for new releases should be automatically built and uploaded. See the import guide for more details.
There is some redundancy in specifying the Sphinx requirements between pyproject.toml and docs/requirements.txt, the latter of which is used by RTD. Make sure that the content is consistent across the two files.
To generate the HTML content locally, install the required dependencies and run from the docs
directory:
make html
Run tests using pytest:
pytest
# Distribute tests across multiple cores.
# https://github.com/pytest-dev/pytest-xdist
pytest -n auto
When using this resource, please cite the software publication oh PhysioNet.