Python library for importing XDF (Extensible Data Format)
Project description
pyXDF
pyXDF is a Python importer for XDF files.
Sample usage
import pyxdf
import matplotlib.pyplot as plt
import numpy as np
data, header = pyxdf.load_xdf('test.xdf')
for stream in data:
y = stream['time_series']
if isinstance(y, list):
# list of strings, draw one vertical line for each marker
for timestamp, marker in zip(stream['time_stamps'], y):
plt.axvline(x=timestamp)
print(f'Marker "{marker[0]}" @ {timestamp:.2f}s')
elif isinstance(y, np.ndarray):
# numeric data, draw as lines
plt.plot(stream['time_stamps'], y)
else:
raise RuntimeError('Unknown stream format')
plt.show()
CLI examples
pyxdf
has an examples
module. These can be run from the command line for basic functionality.
print_metadata
will enable a DEBUG logger to log read messages, then it will print basic metadata about each found stream.python -m pyxdf.examples.print_metadata -f=/path/to/my.xdf
playback_lsl
will open an XDF file then replay its data in an infinite loop, but using current timestamps. This is useful for prototyping online processing.python -m pyxdf.examples.playback_lsl /path/to/my.xdf
Installation
The latest stable version can be installed with pip install pyxdf
.
For the latest development version, use pip install git+https://github.com/xdf-modules/pyxdf.git
.
For maintainers
A new release is automatically uploaded to PyPI. Therefore, as soon as a new release is created on GitHub (using a tag labeled e.g. v1.16.3
), a PyPI package is created with the version number matching the release tag.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyxdf-1.16.7.tar.gz
.
File metadata
- Download URL: pyxdf-1.16.7.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bf60a52b5da35bfa3613a13c5d12ee17d46c0170f88d5df63ce56c9034233fd |
|
MD5 | fcf886baf62772a881888facf054a043 |
|
BLAKE2b-256 | a2860afb2e2852cd7a1b1e550829656a33051122b4e9abb9950fef431b800e0d |
File details
Details for the file pyxdf-1.16.7-py2.py3-none-any.whl
.
File metadata
- Download URL: pyxdf-1.16.7-py2.py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ae1997c212212cb6d53641ce8d485cf2253968755822ca0a7674434eea14548 |
|
MD5 | a8d72981305d9ba93127ec869ac330a0 |
|
BLAKE2b-256 | 481b7dad175fc39a57b3ae2251468672e9d868fb1b69bc58488ebd15285f4b57 |