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.24.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.24-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24.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.24.tar.gz
Algorithm Hash digest
SHA256 312f88043a8bda31f5c03c2645f7009c5c7aa68466f19431e89f3a5fa3be4623
MD5 2d09f3eb66f43de8870bad05f70b3a17
BLAKE2b-256 fc8c712d74727af0693c011f983f7bcd3ff030f20bffd5636222632b8db4628e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31090a16203d146786e4869f119880c62603e1a9647528822182755375e58d2c
MD5 0ee4a87b26e5cac43321da053e18427e
BLAKE2b-256 7e5d1982c2b816224b28535e5e288e41ab91bec68596a61138d27919b2c53604

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 65dc2b806ebf9984e125628a68006cdf215e193a63d04c8fc95ba084488a3677
MD5 647bc6dda31e0ba9882cbac2293f927c
BLAKE2b-256 1946db901f72929b868fed930d5be984ad4eda0facdec7d5291fb2ab081965db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 18646e46d1bbbe52bf49ceed19c618d6fc429d6b90e323df023d52b45fe76390
MD5 9e6bad2e838bc8af72bb0f3453b95dc9
BLAKE2b-256 fbc3f83cfbb22ec6e5e26d4ba33911e6556992c67c84f589c2f0ac9dac71ea36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3ffe627659de9996b14310ac5b9ae8ae01ee19c21daa75627dd2e2875d01630f
MD5 e3c73d7f95d18e6dc0dfb1b545f23ce7
BLAKE2b-256 1a08637713fb80fd9165ac6176bcb226eae72a39f92e35c21c4369548130ee11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f507e76e565edd085f52897c4639f610558b9e77b53d4ca6581a3f28e04f1d1
MD5 69dfaece5c30639c2969338692652c12
BLAKE2b-256 96af2e92dab6b69504f7f2e0350c08886b6134e551dd674f1e17550e53997c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20643553a22f19a08f7a413d88137a0b16be9fced5897bdf9af76fb33f875fb6
MD5 e410aa2b04159102ff22fa8115ff245f
BLAKE2b-256 3212131b5a2495e603650fb1f979ce333836439335b3d85d6e63792b1550b124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc7b0e708bec2649b61d367767a697125eee5aab05f5816135b25172aa03cb82
MD5 d0557138894c5162d3b497445c4db264
BLAKE2b-256 07f12d8dc7a26ec9047d841d09df7c482d1fbb3fa8c9a2449d6ce88a97baf8e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fda543ba441e8f7ddf3599d25ef4dbea3b8ad4fb4e484038398f64c10cf0a08
MD5 a5f341f15bde141a984a7adb047b373a
BLAKE2b-256 44920bc478f10adf500f8f01cf2fc3cf1097178b3d88566536cb6aeecec6ef5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40f86d9ed604c7c015e23ed8f81c18ca6f459ad0f2f0b56726589935160dad68
MD5 0eba9d41ed3debb3dcf53a9722208314
BLAKE2b-256 3ecbf390f6fbd75bda651f9d5a01b14d3c1c1a6f90508ea89abd9e0f6cda96e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6096c264a2b298ef26ed5555068c467c189f1cff3ae3739f68dd9c48bd1d1a15
MD5 dc2e8c2b814cb62051093d9d5d9c20a3
BLAKE2b-256 4efe2bf1e584fa1ee6a24fc099b05fcc90f3dca89006021b8ffe81f94ab0ac47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a31035d165c6d1cc2be343f776c64866770058217aab969d54d40a303c9979f7
MD5 4512ca0ee1277af379c75565e95ee1de
BLAKE2b-256 3c547c2aa86215d83ff1e71324a1a995f819434f9203657d1543124744bf0e33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e04e9a0ef47a74672697a93117c9379491651c8070e63fe2f5477526a248a83b
MD5 a3c868468ed01a652101054ac404b8c5
BLAKE2b-256 198be7ca2e3d2eab915ad4889d2ae08bdd62879f658c0087ad5c026062c4ced0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f32966aaaa235627ab37bfb07dfe2b2758fbfda95b8f44a5f72b8b230d704a1
MD5 bc71784bba100b3fd4c4ac38413f3e26
BLAKE2b-256 82f21c3704c3cba0a1e364f881b71c4b613a6b8e0aebc9ab205be61b04c169d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 319c102508a514aa932a416f23f7b0e2115a0912cece04af5f5f5a1257055368
MD5 56f709bf3bb16e9f742077b946ce3215
BLAKE2b-256 a9526318ea8e140a52d0a8b782abf63f41a58584b43f4bd7a253f1f272d3f650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b152adacad0808d253a0067f6210db1bfef185aff84c150a63e1915db200714d
MD5 3be60391334f96c1b6e75e9385cfbc6c
BLAKE2b-256 0001c893d079266320d3844d3d3fd8102b33c15b966fb88754876cc50df8db79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee1cfccdc33134764ef8e28b9242cb903f01e6712be220f9583c4e227792a169
MD5 c7ec5a925a3a108b6e18922520421fe2
BLAKE2b-256 49d02c9f72a47f7047de24b79f4b774ef91913762450a56f7a6efbb3d3af6474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ac483085acbbe09c559252207677aa25fd789bcc79e94f3eb721ec90a3bfbd9e
MD5 a9861cb5cd731435dbbf79fd2f4bd641
BLAKE2b-256 8deed0f55fd0958734a1f00525ef68168488a87444bb724fcd8431f100c9ec25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 33d91767234e4c39fa06b8b139b72ee74f028aa97b3be90d936ed4529e24a4e3
MD5 edc72cb335be904c26a8d4c260342343
BLAKE2b-256 02fed7eae3faf0667c56b31b662fe6d8c4687c115dd97025f7e55f86c558d584

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 55cf80ad8639717eedb49bad597bbfda651444f3231cf6df026c8e01811ff03d
MD5 3c281edbcbb7d5ae05b43827b0063ab2
BLAKE2b-256 8b9eccd8389babd96da827441f8f0dd9c396fa223b77f551d92ae3aa5024ac0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1e8cd0f80b5fc82761c6fc8487768e93aa4cbb370cef466eb36869ee5e3e5ed5
MD5 cc639685ec0a0d049af1196a7f949cf2
BLAKE2b-256 2d4a435c17775564dafd583e3948111652ff5b28409cc396658e01f0b8d169a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bbea348ef58da184bc70a7bbcc482341946b6a7ae8aa4441c3fa1a30aa2d923
MD5 7a183a0cd15fdd2bada35a371c1737a7
BLAKE2b-256 6b14a148a290b79fd452c90c1723352d256ea60478bf9ebf0119b64c48741b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dce2cd5e7aed10f3c81a44f63d28e577b43f309cd400205d47efaa151d8c3d4
MD5 12f88f900d39b1a7f92a540ad42c3c23
BLAKE2b-256 98b613cf84ac3538244d15796b4e6cdbdab7bc58db56e165af2249adc2051b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a5f1a3c7922e33af5816a84c222ee047c5d28349c7c06cc8e989644a71fc1d6
MD5 9044c3d40b80261ee71855ab90372f22
BLAKE2b-256 860aa0b8c6a91729a7ea9d4ed920026f57ff11568aa012c5f9aea6c4f063e4cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fbedd5e48f984fdca948dbe40418f3c0585255ebfad87a65b38c0223fcdf52d
MD5 f530190350e70c00cb3d9c112abdee81
BLAKE2b-256 28e654f164b2a6e4cc14b8dc27e9742e4e4b44002f9983995bdc0e5c3696b80a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9442bdd6994c6bc07262d03a8fbda71ad48f5083414ef446c723d7777831ab8a
MD5 170d095bb9dae18419f16efd18673c4d
BLAKE2b-256 ae2cc688c42a1160ce5c7e2ccb3fa4b277741f16b611c0a0504aea35b27262c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d175a484d6a4594fa44df51eba08e38d6ffe9d2a1578850ee0d4db29d3238133
MD5 0b7894840b43136f082754bc6ee18450
BLAKE2b-256 dc783cfbb92b411ba03e43d99239ae8c8f06d529a8d462f8226ee2335ff7a02c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d2bf953b3f0247d4e71fcb385fb7ef92fc7db5e5f7deebf1d5ef71125992666
MD5 52f89cbd177cdbefe71f50668e6cfefe
BLAKE2b-256 d9adb3a8a90ac9e5e97665f7e0f1e0d784897c7653e4b00100d1afda2f13df0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6b89001c4457cc7a106be97ff29968d7b2d252bc2ef189bbc3504d7aa6238ee3
MD5 2f653ecd2ea8a7d8c18f601190dcc78a
BLAKE2b-256 11d7803e4a8e2c21b6eca7069f51f97086bce3b4841799ca2ecb82e316b9a053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 188f138be7fefac844bc630265a20065b9c301d0410904b7afd1b02baa6b4277
MD5 f7895fe038a6516c93e136425b8a608c
BLAKE2b-256 babc8d96b53eb03eb5a17c9783382cf4e3b9ac0abd7d45063ad2da2cfd4ff570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a683c0abf4a164a2faaedd6be8b6b627d80735a2d29c054b81ec0b719220244
MD5 d2b507469a23e933bbd12afafe980a2e
BLAKE2b-256 6018f898f737063a17355905fe6e6029294a87a90a8cdd9ce02c752ca180b34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5dfd26dc1e6f19cb3e37b05e093ee53efe67b9b229260479808afbfa5f14de7a
MD5 13fca6b75a93c297ad93284403eb058e
BLAKE2b-256 dc9338cbee0d5b025b3643925afd5802bbad42361b7c79d162ca0d1dace36ca2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 878ffbbc03925f4d5bed9c6523aa25df466da8c556bd1f336ed183ce56b1b220
MD5 6bc3ccc6b4d1d16a9d162cf469abff37
BLAKE2b-256 596a13ef02a9ed9758319acbb387efe0e36ab79a26efaedca2cc10ca0bcfcea3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c3751c225b72df154bab41aff04a1a5e2dcfce3c9976c4886fc7a1f5a70fe8ad
MD5 dfe916ec38080af2bed8baf3ff2b1a25
BLAKE2b-256 7b250419b19f46c6baea6309c327e9743bdf630537b139e1d0938884b0eb124e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 344922b0fef56a11a5dda2814e945dc8705a8ffa07d33ce3fe0b3d7b2f2840f0
MD5 f4512924bde96545ac1dc01c5ca3a7c9
BLAKE2b-256 e0ed3ff1909e1d3567d282940fa8a5ad4217a4e0eceb4fc684ba0a432cc077e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d22729d982c6373ef97695896d7e10197865b42d161c9a8ff36e8b1d999c7ba7
MD5 eebe493dbc760dd76c98450eb7853937
BLAKE2b-256 e4bd9f43ce60a6dccfd435be524ecc7422c33b517f1fa24df0d31abf250ef198

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 df87c4014357f788251f0f6c8db5032053c4b480d2da4ffd6c6933c92aa8a220
MD5 85d755db199f9e241184c3a1ff327c8f
BLAKE2b-256 acbed8d34ca564d1b2997e8cef423dd8f5966941c78f116a4e4ef2f269f89ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c334cd7c0b1a0bf97021f73393ccf3ac29d5c41f029532e248a5e0274619f1c4
MD5 349f6700ca164ce733ce84ccee29dd77
BLAKE2b-256 5665053fec781a7984206f8913a78b460799d5bb03a86f22a1eb8b9a6d688557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fb15ec02464af6edea1331801efc5f7ea7dec4c2e36437e8434125af4feced7
MD5 250897638fa3e08a2fa7d83b06d22b8f
BLAKE2b-256 dcf3303f537078f31c1d837304e79f337afa08528f0860f131f28f01427b8c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.24-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41c18398cc36c5b1cb14673c35c35208d7cf620c3e8bc471a4949a9b7617b551
MD5 06b36e166eb6364676feed87361d2b20
BLAKE2b-256 e62ab620866be0d08bdf28804865eceeb7c187f03f6030734958c91cd5350b9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.24-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.24-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 216ff1c1f4f53f300005b03384ddd6bd93ea3dbfa42334b88239c9215f00a91a
MD5 8f55f421f8646fc8b01dff419eac182e
BLAKE2b-256 c976404aa6f11b407939817fa32c255b13785574d35823453ea9b3217cdece2f

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