You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,27 +7,31 @@
7
7
8
8
## Introduction
9
9
10
-
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](https://github.com/wfdb/wfdb-spec/).
10
+
WFDB defines a set of open standards and software tools for the storage, sharing, and analysis of physiologic signal and annotation data. It has been widely used for decades to support biomedical research, clinical studies, and education. For more information on WFDB and its various implementations, see the [WFDB website](https://wfdb.mit.edu/).
11
11
12
-
This package is heavily inspired by the original [WFDB Software Package](https://www.physionet.org/content/wfdb/), 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.
12
+
This package is heavily inspired by the original [WFDB Software Package](https://www.physionet.org/content/wfdb/). It aims to replicate many of its command-line APIs in Python, but there is no promise of consistency between the two. Core I/O functionality is based on the Waveform Database (WFDB) [specifications](https://github.com/wfdb/wfdb-spec/).
13
13
14
-
## Documentation and Usage
14
+
## Resources
15
15
16
-
See the [documentation site](http://wfdb.readthedocs.io) for the public APIs.
17
-
18
-
See the [demo.ipynb](https://github.com/MIT-LCP/wfdb-python/blob/main/demo.ipynb) notebook file for example use cases.
- WFDB Development Repository: [https://github.com/MIT-LCP/wfdb-python](https://github.com/MIT-LCP/wfdb-python)
19
21
20
22
## Installation
21
23
22
-
The distribution is hosted on PyPI at: <https://pypi.python.org/pypi/wfdb/>. The package can be directly installed from PyPI using pip:
24
+
The distribution is hosted on PyPI at: [https://pypi.python.org/pypi/wfdb/](https://pypi.python.org/pypi/wfdb/). The package can be directly installed from PyPI using pip:
23
25
24
26
```sh
25
27
pip install wfdb
26
28
```
27
29
28
30
On some less-common systems, you may need to install `libsndfile` separately. See the [soundfile installation notes](https://pypi.org/project/soundfile/) for more information.
29
31
30
-
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:
32
+
## Development
33
+
34
+
The development version is hosted at: [https://github.com/MIT-LCP/wfdb-python](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:
31
35
32
36
```sh
33
37
pip install .
@@ -39,8 +43,6 @@ If you intend to make changes to the repository, you can install additional pack
39
43
pip install ".[dev]"
40
44
```
41
45
42
-
## Developing
43
-
44
46
Please see the [DEVELOPING.md](https://github.com/MIT-LCP/wfdb-python/blob/main/DEVELOPING.md) document for contribution/development instructions.
45
47
46
48
### Creating a new release
@@ -49,4 +51,4 @@ For guidance on creating a new release, see: https://github.com/MIT-LCP/wfdb-pyt
49
51
50
52
## Citing
51
53
52
-
When using this resource, please cite the software [publication](https://physionet.org/content/wfdb-python/) on PhysioNet.
54
+
When using this resource, please cite the software [publication](https://physionet.org/content/wfdb-python/) on PhysioNet.
0 commit comments