Skip to main content

Communicate with your Empatica E4 in your Python scripts.

Project description

pyEmpatica

Parties Involved

Institution: Munroe Meyer Institute in the University of Nebraska Medical Center
Laboratory: Virtual Reality Laboratory
Advisor: Dr. James Gehringer
Developer: Walker Arce

Motivation

This Python library was written to facilitate biometric data collection from an Empatica E4. It also includes windowed sample collection, threaded error handling, and on-wrist detection.

Installation

This library is available for installation over pip using: pip install pyEmpatica

For developers, clone this repository, cd into the directory using either your virtual environment or your local environment, and run: python setup.py install

To actually utilize this library the Empatica Streaming Server is required, meaning this library is only compatible with Windows systems.

Usage

from pyempatica import EmpaticaClient, EmpaticaE4, EmpaticaDataStreams, EmpaticaServerConnectError
import time


try:
    client = EmpaticaClient()
    print("Connected to E4 Streaming Server...")
    client.list_connected_devices()
    print("Listing E4 devices...")
    time.sleep(1)
    if len(client.device_list) != 0:
        e4 = EmpaticaE4(client.device_list[0])
        if e4.connected:
            print("Connected to", str(client.device_list[0]), "device...")
            for stream in EmpaticaDataStreams.ALL_STREAMS:
                e4.subscribe_to_stream(stream)
            print("Subscribed to all streams, starting streaming...")
            e4.start_streaming()
            for i in range(0, 10):
                time.sleep(1)
                if not e4.on_wrist:
                    print("E4 is not on wrist, please put it on!")
                if e4.client.last_error:
                    print("Error encountered:", e4.client.last_error)
                    break
            e4.suspend_streaming()
            e4.disconnect()
            e4.close()
            print("E4 Errors")
            for key in e4.client.errors:
                print("\t", key, ":", e4.client.errors[key])
            print("E4 connection closed, saving readings...")
            e4.save_readings("readings.txt")
            print("Readings saved to readings.txt...")
        else:
            print("Could not connect to Empatica E4:", client.device_list[0])
    client.close()
    print("Cleaning up connections...")
except EmpaticaServerConnectError:
    print("Failed to connect to server, check that the E4 Streaming Server is open and connected to the BLE dongle.")

Before running this script, ensure the Empatica Streaming Server is up and running. This library is currently only compatible with Windows due to the Streaming Server dependency.

Citation

@misc{Arce_pyEmpatica_2021,
      author = {Arce, Walker and Gehringer, James},
      month = {8},
      title = {{pyEmpatica}},
      url = {https://github.com/Munroe-Meyer-Institute-VR-Laboratory/pyEmpatica},
      year = {2021}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyEmpatica-0.6.0.tar.gz (20.2 kB view details)

Uploaded Source

Built Distributions

pyEmpatica-0.6.0-py3.8.egg (2.3 kB view details)

Uploaded Source

pyEmpatica-0.6.0-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file pyEmpatica-0.6.0.tar.gz.

File metadata

  • Download URL: pyEmpatica-0.6.0.tar.gz
  • Upload date:
  • Size: 20.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pyEmpatica-0.6.0.tar.gz
Algorithm Hash digest
SHA256 28fea7ad8f9afdf2d0d9cfd51fd8f99aede4ec0fa1b3a5fa5065265c17c20966
MD5 2cb7ef3ea501fa6a790ad73709383aad
BLAKE2b-256 c7e235fa0def2257c0bd2ef84f0f635c831959b310e11dd6f663ccc73a71ddd6

See more details on using hashes here.

File details

Details for the file pyEmpatica-0.6.0-py3.8.egg.

File metadata

  • Download URL: pyEmpatica-0.6.0-py3.8.egg
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pyEmpatica-0.6.0-py3.8.egg
Algorithm Hash digest
SHA256 48d7772aa4c7938605f3e00badfeeadf19aa7945371069286eab4bcb251f395b
MD5 eb2ed75632ae903484c2f6ebfe873a9c
BLAKE2b-256 96b2f1b21a211ebefadc68ab9c84b4cdac5e398f0401c644b2fd1cdef930a940

See more details on using hashes here.

File details

Details for the file pyEmpatica-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: pyEmpatica-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for pyEmpatica-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5fc4d71711cf6588c13f72f7f0291229b11a2ccae883c49cf0d0e8100fadc7e4
MD5 ee7df67667792d77c64ff8657b1bc495
BLAKE2b-256 6f035f7a483c598157bf752c90c1c4bc1c0031593cc956514fcbab7cf4fcaec8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page