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 company 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.30.tar.gz (1.7 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.30-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

pyEDFlib-0.1.30-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.30-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.30-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

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

pyEDFlib-0.1.30-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.30.tar.gz.

File metadata

  • Download URL: pyEDFlib-0.1.30.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/0.0.0 importlib_metadata/4.12.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.30.tar.gz
Algorithm Hash digest
SHA256 639af9b08eb50cf786167942fe4d57b29a5e3bf589979d1a49b9a9672f52cb8e
MD5 c9fd81810f50592fabcbf9901cd5c7ad
BLAKE2b-256 aec5a04e8cfe34be7162c6c334c0c033bb8099012d2cdb307485d9f2b0a3626e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c0c4c2aedeefd6094b9f7f0ba41f9c57b81e728cb212ff38c6c0626651923a0
MD5 367c613211da6b0fdbd471653c54f7bb
BLAKE2b-256 1fe51db1820e056e91842ee05b17818c03b33fb2c88f2f398dcde5aef7f11b2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 349a2f3a42477c89dea51e6c299ec4f3094287897c8c1ecbf3ccfcb8ccdac8df
MD5 1d6732f3085b45744aca4af47109e4b4
BLAKE2b-256 d12bd34174192766400ba626fa7059cfdd2179f0fd35a7104f6c23fc7b0a7644

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d65a4eac9b526cf9e7e62a6aaac61a3990b517712205063f22b36f1d9cbe3b1
MD5 e1633edc5e52c9f30db3a3fd0db7ed5c
BLAKE2b-256 7de53d230c2708ab9670ae678e0218e8738811882b4c56a8b9d6ad8e50e4e780

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f4f50c4a21ab421c281394993fff811238fcf821c08e936f35f92b9f14832291
MD5 bc46e8edda6ef1c6289ccf8f7254d788
BLAKE2b-256 fd0d56b78ea55780468cb03ce71efdbbcd17f191250c8dc54c9f39a4ce261e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874a664bf947b1f19ed5227e8390d66a579a35b800671c939e271d0e613d5ba5
MD5 74f6e641a2359312c6b6d58f04bf5cc6
BLAKE2b-256 e121e5c4b474310a35315d73aa811dd949ff4c23a98ff4a3218778ffd8716305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfe285a8c5f6769a55408a5f94776320ca5370f68b7df56a788dec9ca02219d8
MD5 5b7685995e25deaa84d6aa90d96624b0
BLAKE2b-256 7556faf6afc117cbbaac2619ee3178abbfed5e51fe6ec965b10d659abd1bdee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d228b495677709c39ff16c12dd0027ac726133eb4b6234e6c63cee2a4141af0
MD5 3056a9632aebf07b301e8583e94bddad
BLAKE2b-256 d5171eab76036241076353247fd717108a3f95cc8b8a019759e79db10b9919a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acdf079833d7ece3853d7e1e593c01574d1475d7b5dbd5fc8d5d1e3d1051de49
MD5 f03dc735d6a58e4b45057eb0aec94dd7
BLAKE2b-256 fd600e2cc2f2364337300d289434e5395bcfd267717259455bc56960d5cee5cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b4f9850d6d505e98c3e36084ee884f32e53dabbb4eebcdc8d220f56ac31829e2
MD5 ffe76a5ecb2ac6a2147c0134c4dcfca9
BLAKE2b-256 81d7fd2d5889ff24f239bc92d9db576e7d1616fc397015afb991830bda8f8ee0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fa27bdf831ac398f7f93bc697ec9138c3ce3cf910f474f30d8a15612d58a6ae3
MD5 5232dadae8a2f10d63e659aa81c4b12f
BLAKE2b-256 f96126d553dc8db5529c45f8a5f63451c9d6c75422f2519656a24d1072ef25b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc53e30e6c9d6d00c8a3a61b91c50611ed51bc9205d06ea75bbbb37e58492d93
MD5 13212c670db55506bf4426f53abe8b38
BLAKE2b-256 0a1112bc343a2a007ced878e3640125e42f7a40df20d34b0d4760e9658ecee0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c1bf09f35d50164811b87164b723225539ad0242637286368610fc6eaa9a3de6
MD5 81aedf100d62711d5a015366e200fc22
BLAKE2b-256 5133f1b92e6819bc4ef0b5b3db478932617e02dc47d87951c233155fa40f3bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acd14a1636b911807c900e9697576a0bd43fc6b0a563208c641f4b20edba6c60
MD5 24093232c6e3e4c80335e8a552eaef36
BLAKE2b-256 adc6e3b81b2c645bd5e4aa7d56e11ca98249390bc3427c48a15d43aea50141ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd4284da378832eaf04b538db1da2888543bb05bc84716c02c6bb61eef3db60e
MD5 11b20248c4cfc00aac13b2023d487413
BLAKE2b-256 149891a6aac356bdb97d6c5fd0900db94b64ccc11faeeed58d1d4fcd7d6dee76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 905418440280e86c433f4cfb7237666cc389865b7b73291fedc620ed7654c721
MD5 74c2384f32fe0b91cd92e4f87273bf30
BLAKE2b-256 1cfb6cd1e28db2630c77d232092a0c0f9d630fb8004d1692fcd43bd51debf73d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c8f716046f286ebca630e380290629e5f3f4ff697c384ee902b50b0e1a4536c
MD5 09596a573df7688f680fddd3dcfa3e59
BLAKE2b-256 744100c53ccf1b895370da6135f88e6a0a1338ad021d514ce212b0554f1d678a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 debff3da3429307c436b95af52bab50dd9338e97501e593d6e34f9e0df9c3cb3
MD5 ab6cf746354852104b4fd43da3e0354d
BLAKE2b-256 e34a2021552aee3cfaac152e4e7b7560193930404ded212c8bde0477357922f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0904cd3de347b4755dca52bf810715b99d7bf2e0591c6af011c0fd289a4a36bd
MD5 800f671a4f8578c3a4bf6061158e380c
BLAKE2b-256 0ef291f8ef82c95d5d755694d3e8743e7c66de57d267bdc46a86977807ccf404

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 614d07509510da93a613f21feb811c60b65bd77beea30bced8d47a6f3147c39e
MD5 2f3f4456c0490d39a407edd471bcc6a7
BLAKE2b-256 c729852ec4bd45c4dc473688f4e370fcdd84cba9522103d8fd550a473bd6415e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 78ebde94bf0a5cdd046534362c6fa5822ef0ec03959394797e85dff1e048042c
MD5 2f35b7d14ee2fa08e655f7f8f666238a
BLAKE2b-256 5e7c88f4bfee578dc733119a8fe418650f82f315af8c5d1e6d666ac7e2036c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbc37b3d1feb7946625b8bd6e8597f68790bebc687afa6971f185332bf139518
MD5 0f4a4004411b93b7f14dd2135f5b7e4b
BLAKE2b-256 04e7487b06adff04397d95532829cb1b825680dcbcac1dac7be79664e21c6db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a441f934b432da6014a4e2693f858596b06328a8d02036591c02842e717043f
MD5 eaf37609ea5bf621e37595bec13063c4
BLAKE2b-256 33cdc086586aabea44b460e1266b6eced97207e8a9d0864afeb7e55ebfca2324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac4ebae1c1d5d4b3f2a9da1873d6fabba8990cb033be032763fab01c3117eb7d
MD5 4457455698801955e5ce4e2b47deb9f1
BLAKE2b-256 207f435850a663645122e27919a26378c4ae35fe6b78bb56686ac9429564997f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 027f3f9c2cad6ecaef3a2a44cfdd80f3da81cfac635c53a6bbd30d107ce39ceb
MD5 e0f60bcc21bf6d49f6119030ab574ad9
BLAKE2b-256 4ec097eb8d840081e01923c2a0c55cc26a4bbfa8aa1a4e12e4de2da0a881c9f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 da610654e6b4f4bbc953cf218eac93eb20920974b76a77856a92b67801e4552a
MD5 14772aa61f18ea59a810fe65c5c2018c
BLAKE2b-256 477625ef468d365fe54f52e2fa458ca8c60f8dde0a902c5b0ba908397080dad8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 8ab2243f9cee201833161a27865680ef0e419556c5ad42d6b08abee81bffd0d4
MD5 ce3c2603e5f22b4c2d8b4dddaed77973
BLAKE2b-256 16e649d42a80fb65dd91c9d64b6f742623bf1ad353f4676be45a61b9ad6e51a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c9b1affcb63df9954f4cb51100da6ca3f7bbe092fdb3c826ff9ffe99d1fe707
MD5 1e2677e487bb4c8466098c903e54b6f5
BLAKE2b-256 a64276a7ba27cb2ba7c8b4edf83a83ad57a1ab44c3945b11e55b5ccc059921bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 449db6e99dff397bb9d2ccbe06f63c2679c9e8c2d1c2ad536ae57444e1f89767
MD5 b81bc566ce923f4676076f8a44aaac16
BLAKE2b-256 af8fe1a14b929bf8268480522b6280422c8299ce93505c29d2e09ee0a9c794e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c021deefbfd540c3d487c6c6fe634b1b9763141593c6c04c90ab7851215a76
MD5 a0c200c4de6ad6c6b77b857624af4ed6
BLAKE2b-256 d0b44397abe6b172f35a6749a65e79f596d935a7c2262c2d55b242251aa3039d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd0643ec750195fc27a954c85899d07e44909297ed8b8667d99acc91a6cb4fbe
MD5 947cb708016a7ae2fdae808875c738f3
BLAKE2b-256 1e1f8485aaced2d3b4644268baeefb251fd733dadbe3de5135e2005e7c6cc67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8811c7e2eda24dba80c05faa3af5ca631b42a1110749e158cb215d7676f089da
MD5 4d8dcca7a3e4981d5c4964f230d023f1
BLAKE2b-256 5e12cc973deb27d09e6f7a57aad588a7f6cf9bd644c0ff28fb819a8bd1859be3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d92308ec93001d645f4a53792076cd6606bf216bb19361fbdf41f0001690db6a
MD5 18b68c4d811e5aca18bf35772b7ae60b
BLAKE2b-256 0f48dab3625b130e6eaa6ffdef1aec2b9ed5fd60e603c39b9234fdb3d50424e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8f2f71316cf4e96cb0887b56e1d64b2ca2a714d90a48dfb0a8632a56a7a197cf
MD5 a5a25cc2a6a741c62f1889951f74b77a
BLAKE2b-256 3f032a4a70fa8995d5d9512dd76003e446e33cb4d83d28a553549ff806435394

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5e5dd41cf5245062bcd14825abd3a9f1bc1f944a92f66dae6486626667a58661
MD5 05fb5059882982ac8bc83aa37f3a5574
BLAKE2b-256 feaadd9a2fe44723e112b689478b07127682cbf5e724dc2734f05fc41972e8f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a300d23145b78c004e5c7abfad58e3a99c41c635984470f5cade015b79553bc9
MD5 4d06453b476d5ad5b6bc320812826ce0
BLAKE2b-256 1218f0de977b3e7a0f8b54ef53b6042008de77571aa3e8b860df06707c3b8de2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d19fa1b13ae8d489ea47660c8f9d8b389fc585650c485d6806e8191961ec87f3
MD5 3daaa2f38af0fbf75a464eb545a20d75
BLAKE2b-256 b27e568f192e1318534a924f86191c37c86db137170a6c9a207fa3f413afd924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30de5d908e6461ede89b7cd501f9589fcaa0d2578b700c1d04d61bbb8dd1e4cb
MD5 bbd59638058ff54ffaa47e7689919699
BLAKE2b-256 85273532ed7f0b80625840a142ac1192b4f425d402d80fe5e24f2ed38b86a74e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e58bc095593cba637b62fcd09449ae1eb30523913e3dc76302ba71d8a9c893fe
MD5 e5913953512af2dd61681f88cbe52a23
BLAKE2b-256 f260f817b7c5c33c90baaadb8a019d3d142436410139fc90e6c79900e6bfcc39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.30-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2bd4ae5265772d672283a4511ec2a98de1eaad184004086892673cafe5a3acb6
MD5 192c973dff34dff9fd79d6b805c2eb44
BLAKE2b-256 f09b5c4bfda6df82adac3febf0f74dc45b6fc96473c14c4a843b33c7f0de7a38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.30-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/4.12.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.30-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fc2a1ef6e4a175255425ff868559551b6b79599407e84ce1bb4012cf2ed952b
MD5 987d485b3433bac509fd9180e4bb1ab3
BLAKE2b-256 eb273cdf28a25b6d88df9586c89e7a80835987da2972935dd4987c43bd1865b5

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