Metadata-Version: 2.4
Name: AnuSamAlgorithm
Version: 0.1.1
Summary: A package for ultra-fast detection of ECG r peaks
Author-email: Anumita Singha Roy <anumitasam@zohomail.in>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.20.0

# AnuSamAlgorithm

A Python package for ultra-fast real-time detection of ECG R-peaks.

## Installation

```bash
pip install AnuSamAlgorithm


##USAGE
import numpy as np
from AnuSamAlgorithm import AnuSamAlgo

#filtering;
ecg_signal = bandpass_filter(ecg_signal, lowcut=0.5, highcut=40)
r_peaks = AnuSamAlgo(ecg_signal, fs)
