# Biosignal-Device-Interface
Biosignal Device Interface
Python communication interface to many biosignal devices manufactured by several companies to easy integration in custom PySide6 applications.
Explore the docs ยป
Table of Contents
-
About The Project
- Contact
-
Getting Started
- Usage
- License
- Acknowledgments
## About The Project
Give a brief introduction into the project.
### Contact
[Dominik I. Braun](https://www.nsquared.tf.fau.de/person/dominik-braun/) - dome.braun@fau.de
Project Link: [https://github.com/NsquaredLab/Biosignal-Device-Interface](https://github.com/NsquaredLab/Biosignal-Device-Interface)
## Getting Started
The local set up is made using [Poetry](https://python-poetry.org/). You can install Poetry using the following command.
Note: It is recommeded to install it globally.
```bash
pip install poetry
```
Then, you can install the dependencies in your work area using the following command:
```bash
poetry install
```
### Development installation
If you want to contribute to the project, you can install the development dependencies using the following command:
```bash
poetry install --with dev,docs
```
### Package Installation
Poetry
```Bash
poetry add git+https://github.com/NsquaredLab/Biosignal-Device-Interface.git
```
PIP
```sh
pip install git+https://github.com/NsquaredLab/Biosignal-Device-Interface.git
```
## Usage
Examples of how you can use this package can be found in our [examples gallery](https://nsquaredlab.github.io/Biosignal-Device-Interface/auto_examples/index.html).
## License
Distributed under the GPL-3.0 license License. See `LICENSE.txt` for more information.
## Acknowledgments
* Find available Python and Matlab implementations of OT Bioelettronica's devices on their [website](https://otbioelettronica.it/en/download/).
Note: The example scripts does not provide you with the same level of utility for GUI implementations.
(back to top)