Metadata-Version: 2.4
Name: morphlabs
Version: 1.1.0
Summary: Python SDK for Morphlabs biosignal processing API
Author-email: Morphlabs <developers@morphlabs.tech>
Maintainer-email: Morphlabs <developers@morphlabs.tech>
License-Expression: MIT
Project-URL: Homepage, https://morphlabs.tech
Project-URL: Documentation, https://developers.morphlabs.tech
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Requires-Dist: requests>=2.28.0
Requires-Dist: mne>=1.0.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: scipy>=1.7.0
Requires-Dist: tenacity>=9.1.2
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Dynamic: license-file

# morphlabs

Python SDK for Morphlabs biosignal processing API.

## Installation

```bash
pip install morphlabs
```

## Quick Start

```python
from morphlabs.models import Scientia

# Set SCIENTIA_API_KEY environment variable or pass directly
scientia = Scientia(api_key="your-api-key")

# Clean EEG data
cleaned_data, channel_names, sfreq = scientia.clean_data("path/to/eeg_file.csv")
```

## Documentation

For full documentation, see [docs.morphlabs.tech](https://docs.morphlabs.tech)

## License

MIT
