Skip to main content

library to read/write EDF+/BDF+ files

Project description

Test Coverage Docs Build PyPI Version Conda Version Conda Downloads

What is pyEDFlib

pyEDFlib is a python library to read/write EDF+/BDF+ files based on EDFlib.

EDF means European Data Format and was firstly published Kemp1992. In 2003, an improved version of the file protocol named EDF+ has been published and can be found at Kemp2003.

The EDF/EDF+ format saves all data with 16 Bit. A version which saves all data with 24 Bit, was introduces by the compony BioSemi.

The definition of the EDF/EDF+/BDF/BDF+ format can be found under edfplus.info.

This Python toolbox is a fork of the toolbox from Christopher Lee-Messer and uses the EDFlib from Teunis van Beelen. The EDFlib is able to read and write EDF/EDF+/BDF/BDF+ files.

Documentation

Documentation is available online at http://pyedflib.readthedocs.org.

Installation

pyEDFlib can be used with Python >=3.5. It depends on the Numpy package. To use the newest source code from git, you have to download the source code. You need a C compiler and a recent version of Cython. Go then to the source directory and type:

python setup.py build
python setup.py install

There are binary wheels which can be installed by (use pip3 when available):

pip install pyEDFlib

Users of the Anaconda Python distribution can directly obtain pre-built Windows, Intel Linux or macOS / OSX binaries from the conda-forge channel. This can be done via:

conda install -c conda-forge pyedflib

The most recent development version can be found on GitHub at https://github.com/holgern/pyedflib.

The latest release, including source and binary packages for Linux, macOS and Windows, is available for download from the Python Package Index. You can find source releases at the Releases Page.

Highlevel interface

pyEDFlib includes an highlevel interface for easy access to read and write edf files. Additionally functionality as anonymizing, dropping or renaming channels can be found there.

from pyedflib import highlevel

# write an edf file
signals = np.random.rand(5, 256*300)*200 # 5 minutes of random signal
channel_names = ['ch1', 'ch2', 'ch3', 'ch4', 'ch5']
signal_headers = highlevel.make_signal_headers(channel_names, sample_frequency=256)
header = highlevel.make_header(patientname='patient_x', gender='Female')
highlevel.write_edf('edf_file.edf', signals, signal_headers, header)

# read an edf file
signals, signal_headers, header = highlevel.read_edf('edf_file.edf')
print(signal_headers[0]['sample_frequency']) # prints 256

# drop a channel from the file or anonymize edf
highlevel.drop_channels('edf_file.edf', to_drop=['ch2', 'ch4'])
highlevel.anonymize_edf('edf_file.edf', new_file='anonymized.edf'
                             to_remove=['patientname', 'birthdate'],
                             new_values=['anonymized', ''])
# check if the two files have the same content
highlevel.compare_edf('edf_file.edf', 'anonymized.edf')
# change polarity of certain channels
highlevel.change_polarity('file.edf', channels=[1,3])
# rename channels within a file
highlevel.rename_channels('file.edf', mapping={'C3-M1':'C3'})

License

pyEDFlib is a free Open Source software released under the BSD 2-clause license.

Releases can be cited via Zenodo.

https://zenodo.org/badge/DOI/10.5281/zenodo.5678481.svg

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

pyEDFlib-0.1.25.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyEDFlib-0.1.25-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

pyEDFlib-0.1.25-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

pyEDFlib-0.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyEDFlib-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyEDFlib-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyEDFlib-0.1.25-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

pyEDFlib-0.1.25-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

pyEDFlib-0.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyEDFlib-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyEDFlib-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyEDFlib-0.1.25-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

pyEDFlib-0.1.25-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

pyEDFlib-0.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyEDFlib-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyEDFlib-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyEDFlib-0.1.25-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyEDFlib-0.1.25-cp37-cp37m-win32.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86

pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_i686.whl (2.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyEDFlib-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyEDFlib-0.1.25-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

pyEDFlib-0.1.25-cp36-cp36m-win32.whl (1.8 MB view details)

Uploaded CPython 3.6mWindows x86

pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_i686.whl (2.3 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyEDFlib-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pyEDFlib-0.1.25.tar.gz.

File metadata

  • Download URL: pyEDFlib-0.1.25.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25.tar.gz
Algorithm Hash digest
SHA256 5b5828cf20e4447721dc5d441f27d4af2939f57cf002734b61a05fc1e6cc7cd1
MD5 ff5b4f0d1ead19e72d7f8fa23a99c7dc
BLAKE2b-256 dd7aeaf36ac71e7938836712d5172bbe7a81d66a6c035d309f024100dd843b1b

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 101e3a7dc737aeceb771100443ffab46cf67a38cc156df9c9ed9a5bcaa2acd12
MD5 c9a550a9b26efddb80d5bc23f3eccebe
BLAKE2b-256 5f2590dddc0c754ecbcbcacc6409ef791cd547f8797704f415d74241530c2d50

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b9b47337ccc28ec73c2517eb85fb8fba8abf98920b35239b6db30421db87cb85
MD5 dee80ab83bf4859f1373d020aa99693d
BLAKE2b-256 dfc47cf778662811a9753f034d120cbfebc62f61df52b3f813651160ac28d451

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 598edf2fb65cbf443121a3c8092b4de30e57a1066348dd9431697eef252bc4db
MD5 bcf4806a7996e5c4e702be5c0e43a156
BLAKE2b-256 bc781dc70787e4dcfb6acf20a1fa4c6ad69acf98ea29faceecf99bc8d1edd72c

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 60b2dfd982d9d8f6b975a7498509a1edcd286df266bfa1ef679ebea9781a20b7
MD5 e71c04de8068b18c7dabec66e19f0126
BLAKE2b-256 a2eaa9d78acbc706a5bfaa6ec1fb848d4d157f47ceac0b7173cee041d3e8ab72

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae7418e7a8ce255a387b1dd92c9c6450baf31cc5113235d5996ce16089cbd8b3
MD5 cb36e37f88594d21494ed39df4b29574
BLAKE2b-256 47666f272a86314829e13d35bf0016ee82eb709a4a44f5e38c8634ede621b2d2

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91468e77ec37de065984e14e298c0191321a46bd71a84bc5441d12e776abc0c6
MD5 7abd6c9410dc72a7b260e75850d5d8b3
BLAKE2b-256 3a910a074c77e9341d8785d2131f03e8cbc44f6df66bd01b50538cee94c07a5b

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40d022e6ce73c9b14c0341afe43963e16ff8b08e6de1b3175f4982587c908988
MD5 ea86cf2a71a948c4fcf01852b235765e
BLAKE2b-256 fdd713f83ab79a01ce6abc30f4a20edd182b4752e4226f0f5dcb183f921e9a11

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 763845f74bc98fcd17cec6efc311cf47d5ce2812944bf8ae866d665c871e0e2f
MD5 9f994d48cb890e71bd93053aaceac807
BLAKE2b-256 19d6f30c28135d150bdde0816fbb7f3cb1982adcc53d66842622a2c0ad4d9317

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3df8c33c72112a6dcc9a32fe4b6b3d0cf4649703657efd3db8fec97ea546c2db
MD5 79b36489eff47eaec4532eff395b38ec
BLAKE2b-256 7d2c0dd873a9e9686d4026b56c8c1833953bde31468a1aef36ce3befe214e5db

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1b4fd3872477a1070593226ca3202385960e42b8d7aec7da262f90993f75f573
MD5 892baeb84a99fa7a424bb56b81dbb74a
BLAKE2b-256 762e2775cb7fd2c87b91651caa65775c730ad340387b88318b8447488dfa1547

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4795147d8332e75dbbcc7cbdd4cd5e9dadfffc28f5237e36b077c114cff16c05
MD5 a34a82109893a3ec1987199e675edaff
BLAKE2b-256 9143e5f4b6ece11243528971ad1391f08b6c7ea35362bfec12f441975c0f2978

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4bce9d46e1563ee7665bc8240d964ec1d9e6e7693247becab841faf38167be72
MD5 4e57d9217f6b603fecd06c2310a252a0
BLAKE2b-256 93d8eb49d3af9510db1cc19566654c5b4f886bc7c496c7b2bcf69217e6f1a51a

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e91dbe7446ea3e843c045936258eacd224dabcff7a0140ce3ea89eeb4920d536
MD5 c4375b239bd29f067ff9049ffb5710c5
BLAKE2b-256 28c5d5acf05775292c72ef348c6d48d6de91edc6392856d06cc9f9070075f74c

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb17ffbe31706d48626790f7b5d16437b2d6ed9707cff2a2ff495633e9accd7b
MD5 ed197b1102854dd84396f622fdeeaca3
BLAKE2b-256 85c69917a884264a0136f7755c819d27dcdb78ec124ef5319bebcbe9a3e767c1

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbb91f19247a9688948149e819ac4729def13f634e66caa6b46a9c715be6f107
MD5 dc078255f02d5231f7a602aad0bb13ce
BLAKE2b-256 dd40187cd4ca43ce6ec305324d1ad2ff58713adb6206cc2029b8f4b6e0989b9d

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a783f5ef5d38d0ea7851571ea2a3ff977a1c48e8f6f13a52f930a3c941153543
MD5 a27cda004324fc63d999e99cd53955cb
BLAKE2b-256 4a19b13e15d39d80556927639052a9b7161ed17b10ec81f6c48cd58adb4c1534

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fc13c9718be8e70879230db5a52edd41a8a921100ca8487400686d7b8a219557
MD5 f115c4f934054f61ec84fe0175da279d
BLAKE2b-256 cccca3869c307d425d3c43ffd6c22fa32331020c99a89050cbc444fcd3c28d77

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 cfa3f3d54df66cd7c0ed0689e2d73c47340d02384235afdc9fb9e8150820b67d
MD5 a9e2a9492a4e75a0b269d2fe3b6fcf71
BLAKE2b-256 ef5603c8e2c55e71b1835f291b180e5e77e049abf084b819db573ecb085437ec

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63293eb430cfb334ba97b6e35011ebcd3c48dc92b927032dd44635c8de2e1ce8
MD5 6dc69aa91ca71d1c4f0109d44d39d0c9
BLAKE2b-256 bd0e5e11280473cb7d37b298aaa18bae6a4454752a6dc288591bef38fa943fa4

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1b3b012f85bbf4a28cf13bc0dc54e2c84d8bebae6bbd924965134cfce977f2ae
MD5 137640a85f83079b060a55ad14efac37
BLAKE2b-256 4f21a45e0bd95439071dc214c2867c20fc37d526317a9dad166d5b279675daa3

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80e8b6995738a15c33e21f59a7ec453e7236f52c09471715aad0a3c4df0d0fe5
MD5 75ac4d80ae1235c60127835ab2da6537
BLAKE2b-256 17a3d27ad99741a1a52b3d14dbf6585f0ea2838ca90c0136cb250b7cc2dca754

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b715ce4bed5dd91dbe0bd7cf21e10b53399cbadd2ec65b96d77f669b2e24405
MD5 37889cd6357eb9efdc6d8daf6101c906
BLAKE2b-256 664f2f71656fad1b4c3a6b500be89189d5497ab1e13f67b9edfa834cbd82564e

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1112cfe0806976d687453af11835848370e5b06b2fab7df259884638c8fadc0d
MD5 9fc59614cf89f71d79c8c05cc3109a4a
BLAKE2b-256 a1c8ff81a1b1a49fc8202bf3bc9c6804bc511c55272efb34048de0c97516beaa

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de3613740157373a28c83784a69caa9439f69b0d87050848ce3dfbb011f8232f
MD5 08d33c78b37f7a6abd352c479507239c
BLAKE2b-256 30601b05df3dfa136c6af7956d8c5646d0c097a7516c299c5283533b02e6de1e

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8611cb782292bcfe10b451c032d030254fb48361a4d5792b508c48d4b2ae4f11
MD5 3ddcc94688a87d871a23020ebb427493
BLAKE2b-256 e45ab7d402b18d2e6b56d55654b2749d8ea26a434df060f88b9d16dff5b10dcd

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 782044b65a1a95f863b6baf6238999a7b143dedf58228dbe5544818d13398e81
MD5 964e7e951f16de305fe3644eb998f7d6
BLAKE2b-256 eb272bf157545a7d451be3897ebdb956e060632a62f9ad4b5c9e785eeba67472

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30035807cc6edb04ca6b4180ed30ee7f59fab7bd20dd53100fcf119b8a92f40e
MD5 715de44715bc3f29ecbdbd8327b75ca3
BLAKE2b-256 b3eeb40f37d880df46f667cf7827418624dd7a7c9a8805f329b5e0a8b2eacdc1

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b2965a565f55f2ab5d0a81123bd74e408490d86b0535beb8c78a7594b5f1efe1
MD5 b7e9c8be4bea7e9bee2c9bd020ac406c
BLAKE2b-256 66780da7d31beda38da81076b4c10185fe68b801dc26db652499c2976aafba3f

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c51ba9c5a953ab94eacb22e189b70d9fbc8fdd2561e15f5f2f2349805f9df86
MD5 c8e13eb32d98ce96f712c125bb587bbc
BLAKE2b-256 bbd8d96ea405012dd7f0955745405024694fc2db65517074b9bd8eef4e68f778

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c227c58ae2a6104d49dd31b8c241474ed96bc3417e84cc06a0b4481d74c25142
MD5 ad3a15df138c5cd31303f108b18b2131
BLAKE2b-256 701935d034630f63e721fce968a8c999d86dc3e3e5cd280e0621f73f77e72b11

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6462513d610b8dc017497ca507dd42ed2d9e9f3c46e87f2ca8516e1d7dc42e10
MD5 9033d273cdf8d274b27c7380e126cb27
BLAKE2b-256 17d565f8681b27fe0b60efa78c4dd8a297a7688c27c32a36b952a0eedc779093

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 799dc87a0d9fcf9d411aeca81d791b033ced45181ad28a1b69c400e5a183ed16
MD5 9ebb3c5f96e200aec04d9481eb4aac63
BLAKE2b-256 215908d176076031d7f82bbb5d2c57d794a1ccd82b1a0da5911e22a4bb6454b6

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 539b4836a32530088201a77d8f6554be270dae8e3a5361e68026dce1dc735624
MD5 7d016ad19d126064bba41652d539c12b
BLAKE2b-256 3f79f50d46895f7b8f4b19f38c615c330b916afb7955415f6bc1553634deab22

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 32f11f068786e724449badc4efb0ac27487bf0e3ae67621cd50c7184467a434a
MD5 099c03cb9b184ccbaa48436df0187e78
BLAKE2b-256 acc222d6ab55f4e8f833e63221b5598a855e241a2647eea78ac99d527f95be45

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33bc7c6c8501b0827ee01e95d77c82f6ef30f3c2e07daac2a54460abc5f3d89a
MD5 6535062bcbf7c0647265a358d41057c2
BLAKE2b-256 5e58bb17d1a2441e5f4e8b1236b53f954b19cc068b48b18fe81931e53ee4dde2

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 78c4baf3c5649214fc10ad65bc988a6e232cd483930dc5b9b6bc4926d355e469
MD5 394fd0d61676a9cd967e015a09977a59
BLAKE2b-256 c8a448f875af3e024d4f9cfc60d26048b2539b7955411dc7491beb2a37aa1294

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11461c43fbc814ba82be63af6bb0bda63cb08364b1f3fe9f04fdb8c4ac3d9196
MD5 3a833582d5d71f5da3c94f5d12cffdab
BLAKE2b-256 c24813b85d54e736fb22deb20158f957f35fc5a8cc973250f0f70cafcdd960b4

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43b9ddd4ff7dc9dd906868c357337c1baa5d4a19f17c2403d62379051079191d
MD5 a41e138e81cb266eb874a5ea02f1dd50
BLAKE2b-256 0c9d3d49578d0e0a2208dfab8df8e2b9c0ff499d4b78acdbfea1348d3d15c1dc

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 697000cf86729457454614952234fce31db673f84a4780e91deb15deea63af6a
MD5 ef843625f64074f08203490922e9048e
BLAKE2b-256 63de6ca3aa05e228d9e453a8e9a48edbc7fdea6c4999d9c679cc414442d44edf

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyEDFlib-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8

File hashes

Hashes for pyEDFlib-0.1.25-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f07a5241519e4f9886c38792b36b89d9c3a71c7d0d3b53eafef8512f25a36d8d
MD5 2d9b661f44688efbed2df5504fcd677d
BLAKE2b-256 d416dfb6a6f3798afbc9aded60a923299184e082f9dcde9e6140e4cfc70fc20a

See more details on using hashes here.

Supported by

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