Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

Changelog
=========
4.5.0 (9.6.2025)
------------------
* Live impedance
* Allow pushing preprocessed data to lab streaming layer
* Support new FW version

4.3.1 (17.9.2025)
------------------
Expand Down
15 changes: 8 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.. image:: https://raw.githubusercontent.com/Mentalab-hub/explorepy/master/docs/logo.jpg
:scale: 100 %
:align: left

:alt: Explorepy
:target: https://github.com/Mentalab-hub/explorepy

.. start-badges

Expand Down Expand Up @@ -39,10 +38,10 @@


=========================
``explorepy`` overview
ExplorePy overview
=========================

``explorepy`` is an open-source Python API designed to collect and process ExG data using Mentalab's Explore device. Amongst other things, ``explorepy`` provides the following features:
ExplorePy is an open-source Python API designed to collect and process ExG data using Mentalab's Explore device. Amongst other things, ExplorePy provides the following features:

* Real-time streaming of ExG, orientation and environmental data.
* Data recording in CSV and BDF+ formats.
Expand All @@ -61,7 +60,7 @@ Requirements

Detailed installation instructions can be found on the `installation page <https://explorepy.readthedocs.io/en/latest/installation.html>`_.

To install ``explorepy`` from PyPI run:
To install ExplorePy from PyPI run:
::

pip install explorepy
Expand All @@ -78,12 +77,14 @@ Get started

CLI command
-----------
To check ``explorepy`` is running use:
To check ExplorePy is running use:
::

explorepy acquire -n Explore_XXXX

For help, use:
::

explorepy -h


Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = 'setuptools.build_meta'
name = 'explorepy'
version = "4.5.0"
license = { text = "MIT" }
readme = { file = "README.rst", content-type = "text/markdown" }
readme = { file = "README.rst", content-type = "text/x-rst"}
authors = [
{ name = "MentaLab Hub", email = "support@mentab.org" },
]
Expand All @@ -31,7 +31,7 @@ classifiers = [
dependencies = [
'numpy==2.1.3',
'scipy==1.17.1',
'pyEDFlib==0.1.38',
'pyEDFlib==0.1.42',
'click==7.1.2',
'appdirs==1.4.4',
'sentry_sdk==2.8.0',
Expand All @@ -42,8 +42,7 @@ dependencies = [
'pyyaml',
'bleak==0.22.3',
'pylsl==1.18.2',
'numba',
'eegprep==0.2.23']
'numba']

[tool.setuptools]
package-dir = {"" = "src"}
Expand Down
Loading