_images/logo.png

Documentation Status PyPI Package latest release PyPI Wheel Supported versions Commits since latest release Travis-CI Build Status

Explorepy overview

Explorepy is an open-source Python-based biosignal acquisition API for Mentalab’s Explore device. It provides users the following features:

  • Real-time streaming of ExG, orientation and environmental data
  • Real-time visualization
  • Data recording in CSV and BDF+ formats
  • LSL integration
  • Impedance measurement
  • Explore device configuration

Quick installation

Requirements

Please check installation page for more detailed instruction.

To install explorepy from PyPI run:

pip install explorepy

To install the latest development version run:

pip install git+https://github.com/Mentalab-hub/explorepy

Get started

CLI command

explorepy acquire -n Explore_XXXX

Enter explorepy -h for help.

Python code

The following code connects to the Explore device and prints the data.

import explorepy
explorer = explorepy.Explore()
explorer.connect(device_name="Explore_XXXX")  # Put your device Bluetooth name
explorer.acquire()

You can also visualize signals in real-time.

import explorepy
explorer = explorepy.Explore()
explorer.connect(device_name="Explore_XXXX")  # Put your device Bluetooth name
explorer.visualize(bp_freq=(.5, 30), notch_freq=50)

EEG:

EEG Dashboard

ECG with heart beat detection:

ECG Dashboard

Documentation

To see full documentation of the API, visit: https://explorepy.readthedocs.io/

License

This project is licensed under the MIT license.