Metadata-Version: 2.1
Name: labedf
Version: 1.1.0
Summary: Merge the lab.js csv file and the edf file.
Home-page: https://github.com/s-n-1-0/labedf.py
Download-URL: https://github.com/s-n-1-0/labedf.py
Author: sn-10
License: MIT
Keywords: labjs,lab.js
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyedflib (>=0.1.28)
Requires-Dist: labcsv (>=1.0.3)
Requires-Dist: numpy (>=1.22.4)
Requires-Dist: h5py (>=3.2.1)

# labedf.py
 Merge the lab.js csv file and the edf file.

## Installation
`
pip install labedf
`

# How to Use
```py
from labedf import csv2,edf2
```
### lab.js csv + edf file → merged edf file
```py
csv2.merge_csv2edf("./xxx.edf","./labjs.csv","./ex.edf")
```

### merged edf file → hdf file
```py
edf2.split_annotations_edf2hdf("./ex.edf","./ex.hdf5",is_groupby=True)
```
