Metadata-Version: 2.1
Name: edfrd
Version: 0.1
Summary: edfrd is a Python 3 software library to read EDF files.
Home-page: https://cbmi.htw-berlin.de/
License: LGPL-3.0
Author: Christoph Jansen
Author-email: Christoph.Jansen@htw-berlin.de
Requires-Python: >=3.4,<4.0
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: numpy (>=1.15,<2.0)
Description-Content-Type: text/markdown

# edfrd

edfrd is a Python 3 software library to read EDF files.

## Installation

```bash
pip3 install --user edfrd
```

## Usage

```python
from edfrd import read_edf, read_signal

file_path = 'PATH/TO/FILE.edf'

edf = read_edf(file_path)

signals = [
    read_signal(file_path, edf, i)
    for i in range(edf.number_of_signals)
]
```

