Skip to main content

library to read/write EDF+/BDF+ files

Project description

Test Coverage CircleCI Build 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/42585968.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.23.tar.gz (1.3 MB view details)

Uploaded Source

Built Distributions

pyEDFlib-0.1.23-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

pyEDFlib-0.1.23-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86

pyEDFlib-0.1.23-cp39-cp39-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pyEDFlib-0.1.23-cp39-cp39-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pyEDFlib-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyEDFlib-0.1.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

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

pyEDFlib-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyEDFlib-0.1.23-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

pyEDFlib-0.1.23-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86

pyEDFlib-0.1.23-cp38-cp38-musllinux_1_1_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pyEDFlib-0.1.23-cp38-cp38-musllinux_1_1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pyEDFlib-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyEDFlib-0.1.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

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

pyEDFlib-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyEDFlib-0.1.23-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyEDFlib-0.1.23-cp37-cp37m-win32.whl (1.1 MB view details)

Uploaded CPython 3.7m Windows x86

pyEDFlib-0.1.23-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

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

pyEDFlib-0.1.23-cp37-cp37m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

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

pyEDFlib-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyEDFlib-0.1.23-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

pyEDFlib-0.1.23-cp36-cp36m-win32.whl (1.1 MB view details)

Uploaded CPython 3.6m Windows x86

pyEDFlib-0.1.23-cp36-cp36m-musllinux_1_1_x86_64.whl (1.7 MB view details)

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

pyEDFlib-0.1.23-cp36-cp36m-musllinux_1_1_i686.whl (1.7 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

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

pyEDFlib-0.1.23-cp36-cp36m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23.tar.gz
  • Upload date:
  • Size: 1.3 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.23.tar.gz
Algorithm Hash digest
SHA256 52bd28ebe4f959bd36e700d770c46f8b01b2d0d29fad8ed5a5f1089e4b4a4162
MD5 3c19eacfcbaeb39a09c1f8bb2db8b064
BLAKE2b-256 dba0583e37e039024736c6f0040dd4a0c891cd1cfab6052673e298ab0c639321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 22452e5acd276ff8f92755aaa1cc76db067047581cb133d1bfbd9ea4fc996f3f
MD5 7dcd392b466eca90d9540d808261c106
BLAKE2b-256 5585e3edf1ed310c3d55c5b3d0405b8e137a177989490d4381e00e1e012df825

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 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.23-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b4f3efe1968ab007df804292faa5894df833a9e08a395ab5d43a40fc169cc190
MD5 ed4f47c9566f325124c6fa3d3c614108
BLAKE2b-256 0d7c0fafcc5e2073e892f27451fdb106d429c1fda7129b8361f91d491a21a879

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 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.23-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d050024daae3a491449c65e3c03db3bf0d1548800a99c409cf51e87a9695f5e2
MD5 38e595c1e2e9deed3b993762a43b81b7
BLAKE2b-256 ab8ea1b843a78056421c04dfe304563276fdc4aaef7e5a5d9919e93d4569b911

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.8 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.23-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 88a0ec830e3d1de9d20839989da20bce8fb73198c31c77846af98ca514cb0d77
MD5 3599381cc6318f9379141193988cf6b4
BLAKE2b-256 3de3b03ee2effcde0f0519ab95e964f19c994559ff7a55c0662298c665a2208a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17995410f1b5b20ab4fa01073d1380801117c7a536d0f6e67317637fd7598384
MD5 9f08a98744c97856f4ade5a7aeee67f0
BLAKE2b-256 f8ee8dc678d1ffef126148eb98b1e963e61766116d2445b3da371bab7ca40fb4

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5448789925a0b4bbc858ea5822562bb74e0c2e5accbdec140a1e99c0060314b2
MD5 f2a70f54dce8866a038bbc63ee731a6b
BLAKE2b-256 19d39b6ed0f1cd0bce447abc5af4f1dc34d9ea0486b9a8c7cb226104e8df5ce2

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae073aeae28a01c270aa4e14fa260fc1980a029177c0a252947e904d1e48f89c
MD5 ba95a30e39058d42c85ef2901d8b1865
BLAKE2b-256 3b2f94f17e24fe49340e5785ce053a80189e7618d0a3cc3f36771d41495aaabf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.23-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a2c1f99908a5148dca50b2fb723dc8d360cda353b3429aed7176e35f01175d3
MD5 bc3bacedf2778c75481544035e5602e5
BLAKE2b-256 3cae2e6e1a4bcc88312dce945d19c96dbb49810e5caeab77d029c498493dca04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 962bda4c502ba6dce1194f5adc191d9da900a9489f37482a857a5c6f90ac1bc0
MD5 cbff62527f07370fe51d8b0de157aa32
BLAKE2b-256 f82a65f39a804b454d875ca400c1c74e6062f0eed4475a5999e317ea582d7f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.1 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.23-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e48959ed9895aabc3b7c774ce60777ee030147057559784315822c01c95df88b
MD5 451e74a48c6e3b588e46fe9297cb72fc
BLAKE2b-256 32329c1da0fd1a09a098490b56e31526cf28b08ff1b4da731e93808200987286

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.8 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.23-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 731271d03a7e5a9cc34679914d9399595a19a6fd2fe337148e97624e4ca1de9b
MD5 63e2a7fd6cf0f38a15153974c18e8f47
BLAKE2b-256 5a344997de202f0d07f0edfbd15fbe9bbaa46e9a39c53e68437f5a728cca1b9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.8 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.23-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 35a01eaca7b61f38fa41ad2f0763a12d66c91c9e7b2e5be72f5853558c055135
MD5 ac1df4e5e54d494f5f112b4307a9bfb1
BLAKE2b-256 c5e0e634f865bc5cf2d91bceb1579815831f975f452a033cf8ed799d0dfb8395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b63c7971b6cf14d612c9289cf4712da14f98a1b278a6d724a06ab67b150312a5
MD5 5641138c3c9d7c8ab7cc351ca6f0914e
BLAKE2b-256 a4fcca9e719c7c4027c0ab59481dbf8cd6a6501bed2d1afe98f9f9bf768bb87b

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 735ced339e002e3fdbc841d7a4b520f032630da8de8d5bb69b5aba85e2687b13
MD5 321ae01fa2ad3b4c5a80ad7a8ffaebac
BLAKE2b-256 5d5a3ea667cd702dcc46f0ed61a1001966e89b4282625516dfc1fd43714ccc05

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 77f426604b0321695489b17f56b3b014f89c83d9ce316c0684ea774f3b6c6ad5
MD5 1f9043863fc591ceaf70e436b852bc63
BLAKE2b-256 a3f0753ccf3b93a2c46e6182ed9f57728133c847d289fa9889c21fa478461d5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.23-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 821931b66bb3ce7b9e1b970b98ec1779f32d0ee7c8b6e6821b98010fa2b876a3
MD5 b02aa03d1dd7119878fa2d31ad087677
BLAKE2b-256 637b8a723866a0da1c3411da41767d0116ae094ba301a50c654c0352673463e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.23-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9b8a52ffd59ec0a73024376e27fb08e7a3fc8c82701422ab4087699291768dab
MD5 5470926840ee1db27ca7dc833cb9b42f
BLAKE2b-256 f57dc6cc8ebe58d7e28b85c1acdb27cf7686fee4c3279d167cf0293039c72d81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.1 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.23-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0c5a6ff813bc7796b7ae30bb1b8b0cf5bb4e6b0cd890715a120056e821919ca4
MD5 005519c4e268897c67bb12b271e4d6a7
BLAKE2b-256 3c69ca7a250eb3cb7d0259a38c9519ce5941f7e2ea128d318a166017ac26d677

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.7 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.23-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ffedcd94ef2aa37f56cc057ba23980c77d868019b07167e6152861c845c7843c
MD5 dfd74b40b8f1ce84e6185f72716b3e07
BLAKE2b-256 6c965274f32ee0bc236210f1202df3483f794327d74b4cdf1ee63e0fc7f9debc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 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.23-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9f827b880d91da54bede96fc6c4b0dcff82c92731330ed40c6d2be928bb3aa4a
MD5 ac87b3a6d0e0805d45723ccf2a4d1a05
BLAKE2b-256 0fd203ce830be8c440b1ff968445aa5c5c9dc55a3625e0b6f9cc0f23271b705d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d897d7a7eefa41e882f81200340acf735fa6e001a70738a6520a30890c74997e
MD5 9a437245c98cfa5c143fded04bd83cef
BLAKE2b-256 45ee6a3cbf61b75805deb6563140498d35a21df85c0ac93880743a444eca872b

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4dd7719b6e3074a2529f2c2e1842e0d5a7b5d58dad4bfe142c3d697f04503937
MD5 c85e3efdb16115e2a1ae3769e354f73f
BLAKE2b-256 8474e42b1470395843973a7067c11a46a2562ec229d4bc2079f13f8bd266ae4b

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 36ac6c912bf43d3e012414939c98446a114b8ae750d66850653ec7fe1c7b0b22
MD5 287febd84f9c8eb62e3b67ad1edacd4d
BLAKE2b-256 5157a38487982d0ed611f37c8187c3bfd5a9644f60d452b0fadd6d01a16a7ea4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.23-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d648721c350a0a32eeb41f3622c101e1adec37d85ad7b32c64b5e035a3bb8e37
MD5 d63b9f3dce2accbb1e3f6914d42a28bc
BLAKE2b-256 9d8d2982c91010669b59a5b12e13d9a75b6cbbfeaef28b83806b48914ea9985c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.23-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 eae5723bf71a3f1ca02e8c1907387dab5cd86e4db42efbde3980d1b25860573a
MD5 5160da2c63fbcf54cef14afcf0939843
BLAKE2b-256 1998270db930ce8a31710e8885e34fe631f31be822f535c7d37ce780153eac04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.1 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.23-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 451a6edb6316c6e6a846715a3efadc9ece4f955c95437d8066b407bfa80d6884
MD5 f196396b6a88ea67579373b95db42f29
BLAKE2b-256 9c6f2ed8f38b4b11c8cd8952c7219ce31be532dc710f0142a2be58a22166a1ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.7 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.23-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d54fd630ac2c82e69251b123c6a422216723d62adc5cfce580e2e1515ea5356
MD5 f557d86e91bb9b3a80baf86fb5f5b12d
BLAKE2b-256 78526299c9bbd8e6782ddcd603db3591a345eb42866fe78b54e915818043cfce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.7 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.23-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1a220321648c08dcb67aa7ca7086756fd1be971571af822ddc9bd6a0aff1298c
MD5 f8838584ae23ad2eac77a19d0245b85f
BLAKE2b-256 6312d7182ab374f48f8dc71e74e0285a32dfa758a96dcd716a4925ab00665a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edd1779c280370d35fdcb00c7898fb0a8064644df9810b1fa1587e72b1e08b33
MD5 95000482cc475a3a2d6dba983a49c3e2
BLAKE2b-256 bd32803b188c2cb517d75eb8a38a8a6243dd9a6da31c01746569503dc6cc4831

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 270ff9af6f2bb10f8b816bcb182f47d7a21c76e199f217ca96a9693f0cbb54ce
MD5 3a69239cace1e15fa438ea01b2bc886c
BLAKE2b-256 74d38be8d4b4dcf9ea160f8d21c37391aa19d2329755bbe7e5abf997b5d45234

See more details on using hashes here.

File details

Details for the file pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pyEDFlib-0.1.23-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f24eb093728efd253e77e8b2711a9f4a24a457d48a04c71542a3ba4b25d270fc
MD5 7802fafaf54bbd805595b01308593418
BLAKE2b-256 60ce20f2b281b884f4029b350a587bcfce377cf6ba6512f6c10dfa3047604885

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyEDFlib-0.1.23-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 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.23-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4ccb116fd483ef0da5b61d7ba7b8e8ccf66d36313a39c439f3868c55323eb35
MD5 b46668ff26ef09f180e9f07d2aadb115
BLAKE2b-256 1ef942135eaff5e1e053504428085fec27cd8331f6c25149e945aea5994b94fc

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