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', ch_names=['ch1', 'ch2'])
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.26.tar.gz (1.9 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.26-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyEDFlib-0.1.26-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.26-cp310-cp310-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

pyEDFlib-0.1.26-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.26-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.26-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.26-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyEDFlib-0.1.26-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.26-cp39-cp39-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

pyEDFlib-0.1.26-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.26-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.26-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.26-cp39-cp39-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyEDFlib-0.1.26-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.26-cp38-cp38-musllinux_1_1_i686.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

pyEDFlib-0.1.26-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.26-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.26-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.26-cp38-cp38-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

pyEDFlib-0.1.26-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.26-cp37-cp37m-musllinux_1_1_i686.whl (2.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

pyEDFlib-0.1.26-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.26-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.26-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.26-cp37-cp37m-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

pyEDFlib-0.1.26-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.26-cp36-cp36m-musllinux_1_1_i686.whl (2.3 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

pyEDFlib-0.1.26-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.26-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.26-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.26-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.26.tar.gz.

File metadata

  • Download URL: pyEDFlib-0.1.26.tar.gz
  • Upload date:
  • Size: 1.9 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.26.tar.gz
Algorithm Hash digest
SHA256 c93e2048f97c2f4b3c530e23d528ac578681a1f48e5b07fe620599f118175e4e
MD5 a005a7345d7a18b368cb4ebb30377c95
BLAKE2b-256 330f7a0b2b960401d005a1fefdadc30fac7d242882215d870bc824a4fd3869ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b948788cbf38874df13b64a57307a7de88182f7ea9b2fc2183fb185ea0edd1e
MD5 c876291cef391343f98d6b58a2921cb4
BLAKE2b-256 f381836878ae2e8612f7e404e5db31e9250443a069ee1eb01a90b8f18b32d155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2df0967e10f14508854f1d851eaf589197e9916cd17d36796f010758a06e6284
MD5 665c6a224bac98796269642e29824725
BLAKE2b-256 e8da423e9a436c81e36d5765412dda623312a1b3994376a4e8a794b42b113c76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 19d13eda582649d64cf0f09c3c2a8c9b46e5a70105dcb9d295b423d28753eab7
MD5 e62b285f47bdfadb7a3f1a3d67dbac56
BLAKE2b-256 47794a759df4fdcafe684bf17730cbe760e0b17edc3a2ca2feebbd964b9be50e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 60859674590a049f5887b5b420f3bb47ef57a3466f7812cfe530e3bda15b9a36
MD5 156af9a8276700d1ddbdf9584575e6e1
BLAKE2b-256 90cb3d233ecb54985e41a2d28ef4aeb0b4425f88a5eec5d4731b328caf71cf88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa9f0a8d5b660de5db830f8364a0aceee9e90a32ee0acdcc7b49f57cb74bd476
MD5 246634ace6e94b45d44c2cc856e5ad37
BLAKE2b-256 2051fca571b7b4bd53e6e7dc16773bb1a31635839ccb66d40329d94e7cffa385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c45c736ccea74780a296a6b8e4b8b53acfe89bcfe8b4d3da066a0d93e8c21dc8
MD5 87279d70defedc07b59cb0cc2cdf144f
BLAKE2b-256 54c45718006e5a10a109af3f31c1c902fb855f01a0eca303f52e28dc0858f172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0638aed77feffef9844246828e7925cc2a1cdf50f151d4bfd35b8b68c90ec3d9
MD5 e9cdf27ecf7655b85011317aa15de2eb
BLAKE2b-256 1887685b8f70d7245ccc3fd7ab4f7554731c5b20973d0c2b1fcfc884ed245e06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 832ffae1ba2a29edb7090629975f05ca4a83e20308d72e6d494632441d499087
MD5 03dada9fe0781bcb37b0b5129e23480e
BLAKE2b-256 fd538d9ae1583390569b8a91055c88bd1edb9205111161074e8353acc05908c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d1ab64115800685715403fdab600b0e376649e02eae41300222a536868547a95
MD5 2878c57ed3ce9921763e8bd0b6a11f87
BLAKE2b-256 5f7ec7ba5bcfe1428f304c16317fbcef7838fa0226a2391718af5ffc72529b95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6538c2d9eb98f439ba3ad03db338d111c5cd5caeb0bf33bde29ebf9c217961b7
MD5 282352ee279cc6310167b9ed84039925
BLAKE2b-256 e794e6e48bca5f10dd897ac296556e798df48113e2228822df261080a020e85d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 77cb92a08c21193581b798b4e9b99b4984606b5bf5840a703b29b2b8c7efdc11
MD5 b1e80758049b6ca183fb8d4dee69ad91
BLAKE2b-256 0073dde86974cb0b9f8f275b0b8fa64d9d7e9dec7915874d956d24af042d6acf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fee34aba44443df39f29ba4b738e56378399bd6c77c8cae8aa0677532abf428d
MD5 b3bd9fa18cdcd41e83326389456c32e2
BLAKE2b-256 41c801e661126f5a4357d7097c2cc6fd758a851da13d9029c46a31b0dc27af48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f061424fe9186ba4f276f83aca92e1ed9a4b63b302abe3129447c0a559855a51
MD5 e6adbabab7e817af27d53f35907fc2e8
BLAKE2b-256 c02a3b18e53d7850ab12a37097f269b0a60c63b09df785983578539d066d654e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f84875cd30ef0f623120d301ffcfa09ac1f2f47cad241939c27966a64ac6ae7
MD5 7994c6d290006c58d12431b0d5b1b96a
BLAKE2b-256 c8eaa03c106276c037278318605e2bc5491a469540e404e371ec16a3f22e50c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e3bbbcbcd9f81e95ebf2f2a8cef33edcb4d9bd78272d7d8815485a9df5b9423
MD5 26b15b1cbd364d34baf6ced069d49dad
BLAKE2b-256 4bc15f0fffc83c4f3d0578128376a95d384d9bc61a3ea881c6231bbd809d0f3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f02e39c87ca3d7f4c996a457529bd5c0bf0d0396439a0386c5daf990bc46e695
MD5 2c2492c65422cfb6e847f335bf354f68
BLAKE2b-256 7614e477e7d3de8fe99402dedbf19c6f0ffe6ed76523b54f1f80ec4ba1d1f5f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 786a5ceffeacb91b1ff045c0d3f930d05e10a3ffddd94c3b4a8846f0ac0e4acb
MD5 c3312e6b42efd4f7111ff37ae25ba30d
BLAKE2b-256 bc2e8e0661191424e1f407905b2e41c24fcf7141b32f89a8a03843573619c666

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7e00840ce4cbf2d2e8fbb18e3a20b6475292f8b282eae6dbcf432e4c62585343
MD5 71cbd3c0d96099c5a2fd5258dd8f6ff9
BLAKE2b-256 03f2024241d6be2aecc540553df773ce528c070f1e1fd12a1d7f19d80c2ac72b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 238145960836d81a0e6cd7dbabd3fe71de4c8699e3341ca557d8ce5121450e21
MD5 d942901143e52915e1e3b66338a52127
BLAKE2b-256 f8c25dfd5fae2d1f39b17d7badde5b88751d4e031f2b6985d73a45e8c3275254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 be851e45a79bff826ea47fc06054e2073e74466455fc5e0073d176794610df06
MD5 0d2d0ec744a52f884f9c58f9f01e4bde
BLAKE2b-256 e5c233366cab3975f680321d2f2a2dcc9d9c0be23eef9f9f1d890a199448f4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70aedf936ed21f6fb194938f833806b127e657d2f76c7c3415c2d6da95a4195f
MD5 736e27fbfd8afe766be579e7adfead58
BLAKE2b-256 67c88ecabdfb1899f60d3622dc5415d13ecae14a97286c62bc3dc0add773844b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7aa887d24cfafeeb30cb6c84cfb85e226b24d3e264a1d4e39180917d6f432e5c
MD5 e15dea6f484b0f1eda6f8ab49f57fb05
BLAKE2b-256 be1fd876883e0076b659e5e2f55c5347d48701876b7b46c3576812d5b1395dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b70dbaede68a68ec264ba36494489c0ab53461b2dedf883af445d28301e123f8
MD5 a77e9591147094a0353a94e6d0fadb53
BLAKE2b-256 09a05443d67e124823613549ee652f75f468a99f5fbd54e0bde7dc15388c58d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b29fb3dac3ce9076be76f268ea481d4308428ca5185d66f7d9f80ecc0ad8a2be
MD5 8589b8c5c8c1ef51a3a933cdeaf28183
BLAKE2b-256 ea35a770f1af6e05664ea711202e0cb0930e3d4ea5e94fc4d37b94ce734327ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81130bf72ff4bae5b5081d36ed607882a0c514a19bece96b6defeb16508d65bf
MD5 db88e5d55d0f9a64c4cd034edc8baf0f
BLAKE2b-256 99403b506f2067f35dfbad01362be0b915947d1dc44d4b5011408b16201a455a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3d25d132c9bdca6e1dbac988f61cdeca2b9fae4d023c6ac6abda7cbd43e734e8
MD5 93af205e03db2c48884df61799bfbdb4
BLAKE2b-256 48743e4191d98a1478280056335c6300b2a6069c9aa9263804e9e2422b7be5ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 107e6b6252c416bf66c91935346b90017ae44e3280ad88fccede2397459d59ae
MD5 86eba2c7d5ffa028e6a8b6e2b92b4d21
BLAKE2b-256 482771378516ce9084a7ec2034236b8010cb05dce2d708b4b4914df478eae7c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d532316e7106a1b54fb712f58bd528686d1a9b9b78ed44d1f78fe6aed65c6e5
MD5 6ab9c1cce69745f0d488c5f5226f63c6
BLAKE2b-256 b0b1b15892b669427ce043944a5b368bce4bf1a08b3686f0c1de39211e3258a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0bce30c3cf31665a91e65498e35f23694418fea3e27d508e96e3fc1b8125f3a
MD5 e66cc4cde10140e5c1f6411e92fa11ca
BLAKE2b-256 fe0301750a513a006c16ecf60ad6cac80cfabcd0fd80aeb2c248d3900a0f5053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3081f78b3e05fd318741bfaa86156a279e633f19e4f61a855f05090bbe7844f5
MD5 dd11c57153fd345df219d91f95b678d5
BLAKE2b-256 a3bb3e6d5bb141f93b131c36f8c805e2a7bc7f98c9f6deb505bf39292ec5ded7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 816ae136fc17cf8f7a2e7bf1cd85aa76bfa78453bf44c186e47665f5bac2565b
MD5 ebc45eac1351f417612b46ea6683f3a3
BLAKE2b-256 cdb82ac3918326c613bdfbd5ce1c978f83c9bb0e8e9e2385a08b92132ab17d25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01668fa1a5cd14e1a8fed039f42c453952bcbc03beb15a7bf9e1dd4821d9fcdb
MD5 42b2be6d753b5921eb76ebc59558baea
BLAKE2b-256 9327f271c09e1b4dc8c9152b86903c9b3f9c84c0354ee5c7790cf48dba4506bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0c49bbd3b84f46917c9e3706d6c492f91b4aefd14deeb46ec733be230e9d0616
MD5 d6ad102ed4f1b39b46a1347908aa9c1e
BLAKE2b-256 4158c971d1cee162a651e8fb6674c088967b3a906ae2610804ccf0ec44508e74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d4486ae023ee67963b8d55d525a7f89f7bb12e204b26405d39d0907896594da7
MD5 570d74c09b5d1398e8e32b3b24bb019d
BLAKE2b-256 7e657d9806d15242efc0ea7b961d6cc33f5c8581ae78d207944c462bce12f405

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc669c9fe28ddff8b38c7bc1685db7282b910a1040bf8db78761fbef02a2bdb0
MD5 c0fa321d50053d79e23dc95028b94c27
BLAKE2b-256 ec282e67f10217cf6bba66b957b934df60530104639522abb8328fdf5299870b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 099d82e98ed097954dc682a0f0f9a81b93b64e46559efb61e3b5749402eda646
MD5 45875bd1b9d1edb9b9015b913d074f6e
BLAKE2b-256 09a577db474a6378f3e6b8710aa9bd04c4bd6bc47049750570e0296913644f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f14af201bc0b0b9d22d1a101cbccbda815b14dec2567ed9b25d349bd9291f52
MD5 b4ee47c521234fa00e8afae0364ec049
BLAKE2b-256 53819d01857274ccbca5db60bc3d4fa01c160123457b05d4f70c560aaf8be8f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1829529a24d188c981fe72fd48dca96dac71494d1537d4e7422110805382bbb
MD5 a8b7681a5984a65b818bc640dff09333
BLAKE2b-256 657b1c9bc01e1e3605082b429d3924b252d445219b9d20446bd1c9e848697b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.26-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6e75e870904b61c40f30ed72783060b36c4fae929d3904f9cdbe8157a135cfb
MD5 5b2b26e1768085f5971983dd797f8266
BLAKE2b-256 c420544b71b00f2f7f6df2feaa98c177fb52b402aec9445b9ee5c66960020181

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.26-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.26-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e8f41cbec5250d376c0a3c8b2259fa70b9e4caf53b8a8514d1950029914d7727
MD5 17d6c33b45e8302c109ceef0291746f4
BLAKE2b-256 683828b41855b12950f9c699f8436433096a087e8f49e6bea09b7945ab4e09d4

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