Skip to main content

python edflib is a python package ot allow access to European Data Format files (EDF for short). This is a standard for biological signals such as EEG, evoked potentials and EMG. This module wraps Teunis van Beelen's edflib. Unless you have good reason to use this package, you may want to use pyedflib instead as it is more actively and better maintained.

Project description

This directory contains code to wrap Teunis van Beelen’s edflib for python.

It provides access to EDF files, the european data format—commonly used for EEG and other biosignal recordings.

python-edf/

src/ -> holds the a version of edflib from Teunis’s web site edflib/ -> holds the python/cython code to wrap edflib tests/ -> tests examples/ -> example code and short samples

Almost all of the low-level C functions in Teunis’s edflib are wrapped in edflib._edflib which is created in cython. I have started creating more pythonic wrappers.

License

This code is licensed under the same BSD-style license that Teunis released edflib under and with the same disclaimer. (See src/edflib.c and README-edflib.txt)

Authors/Contributors

Status

This is currently “research quality” code. I initially developed it for my limited purposes to read a few dozen EEGs for a research project. It is inching towards respectability as it is being updated as we have project that needs it to process through tens of thousands of edf files.

It still needs more tests and refactoring to make a real pythonic api before heading to towards a polished package.

I am currently updating edfwriter for 0.8 as I will be needing to use this functionality again.

edfreader - now has tests - needs more edfwriter likely needs re-writing

I continue to make it available in the hopes that it may be useful for others. As I need to use it, I may continue to improve and update it, but I can make no promises.

Installation

To install from pypi::

pip install edflib

Many binary wheels are available for mac, windows and linux so you may not need a compiler to get this working now.

If you have trouble or want to work on the code, the most reliable way to install edflib currently is to download the source (or git clone it). After unpacking the source, from the command line change to the directory:

python -m pip install .

Or, if you are doing development, you can do:

python -m pip install --editable .

This requires a working C compiler on your machine as well as the other build requirements such as cython, setuptools and numpy.

python 3 compatibility

The package is now testsed to be compatible with python 3.9+ (as of 0.86). It is likely to work with early versions of python 3.5-3.7 and might be recompilable with python 2.7.

The distinction between bytes and strings is now clear. For clarity all the cython and C code uses bytes only. The python code deals with decoding and encoding to either ascii or UTF-8 (for annotations) as described in the spec. In addition, I will accept UTF-8 on reading though it is outside of spec.

Functions and properties with an ‘underscore b’ (_b) deal with bytes representation, while unadorned python functions return native python strings or numbers.

The goal is such that one can always get full access to the raw C functions and bytes from python, but provide pleasant to use python interfaces via the reader and writer classes.

Change list

2024-12-16 0.86 series with switch to memory views, numpy 2.0 compatibilty + packaging

This version passes tests but with the switch is more a beta

2020-05-11 0.82 fix missing edf.pxi file in MANIFEST.in 2020-05-11 0.81 transition to github given sunsetting of mercurial support on bithbucket 2018-10-08 created mirror of code on github at https://github.com/cleemesser/python-edf 2018-10-08 added wraps for writing shorts, bump edflib version to 116 2018-02-15 noted that edflib.h not included in source package added to extension file list for 0.74 2017-03-22 added bitbucket-piplines.yml and got integration tests running 2017-03-22 update properties to modern (python 3) syntax in _edflib. Make distinction clear. Add tests. 2017-03 tweaks to api, python 3 working: will try for dual compatible code python 2.7 + python 3.5+ support 2015-06 update to edflib 1.11

packaging

Install/Packing Status:

pip install edflib # works to install edflib 0.84.1 from source distribution

  • windows install worked

To upload source dist to pypi:

python -m build
twine  check <package or wheel paths>    # make sure the text renders
twine upload  <package or wheel paths>   # upload source dist

Wheels are generated on github, via .github/workflows/build_wheels.yml, but need to be manually uploaded at this point.

To source distribution upload to test pypi:

twine upload --verbose --repository testpypi <package or wheel paths>

To test the upload to test.pypi:

pip install --extra-index-url https://test.pypi.org/simple/ --no-deps edflib

Todo:

::
  • [ ] fix examples to be compatible with changes in api

  • [x] basic tests with py.test

  • [ ] test opening two files at once

  • [/] test, tests, tests !!!

  • [x] inital port to python 3 (tested with 3.5+)

  • [ ] add new functions from version 1.10 of edflibX

  • [x] 0.86 update cython interface to use typed memory views. This will be required for cython 3.0

  • [ ] set up continuous build/integration if possible -
    • [x] done on bitbucket for py 3.5 but not yet for github

    • [/] 0.89.2 targetting cibuildwheel

  • [x] incorporate edflib code for utf-8 and short (int16) vs int (int32) digital writes

  • [ ] test edflib code for utf-8 and short (int16) vs int (int32) digital writes

  • [x] create mirror on github

  • [/] investigate manylinux solution to wheels. [PEP 513](https://www.python.org/dev/peps/pep-0513/) and

  • [x] fix python packaging problems so that pip installs work again
    • progress: as of 0.84 have sdist installs working on linux

    • as of 0.86 have pip install builds working on linux, mac, windows

  • [x] added numpy 2.0.x compat with 0.86.x

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

edflib-0.86.4.tar.gz (346.8 kB view details)

Uploaded Source

Built Distributions

edflib-0.86.4-cp313-cp313-win_amd64.whl (502.6 kB view details)

Uploaded CPython 3.13Windows x86-64

edflib-0.86.4-cp313-cp313-win32.whl (475.9 kB view details)

Uploaded CPython 3.13Windows x86

edflib-0.86.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

edflib-0.86.4-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

edflib-0.86.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

edflib-0.86.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

edflib-0.86.4-cp313-cp313-macosx_11_0_arm64.whl (516.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

edflib-0.86.4-cp313-cp313-macosx_10_13_x86_64.whl (540.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

edflib-0.86.4-cp312-cp312-win_amd64.whl (503.7 kB view details)

Uploaded CPython 3.12Windows x86-64

edflib-0.86.4-cp312-cp312-win32.whl (476.3 kB view details)

Uploaded CPython 3.12Windows x86

edflib-0.86.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

edflib-0.86.4-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

edflib-0.86.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

edflib-0.86.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

edflib-0.86.4-cp312-cp312-macosx_11_0_arm64.whl (518.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

edflib-0.86.4-cp312-cp312-macosx_10_13_x86_64.whl (542.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

edflib-0.86.4-cp311-cp311-win_amd64.whl (507.4 kB view details)

Uploaded CPython 3.11Windows x86-64

edflib-0.86.4-cp311-cp311-win32.whl (482.0 kB view details)

Uploaded CPython 3.11Windows x86

edflib-0.86.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

edflib-0.86.4-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

edflib-0.86.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

edflib-0.86.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

edflib-0.86.4-cp311-cp311-macosx_11_0_arm64.whl (518.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

edflib-0.86.4-cp311-cp311-macosx_10_9_x86_64.whl (544.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

edflib-0.86.4-cp310-cp310-win_amd64.whl (504.7 kB view details)

Uploaded CPython 3.10Windows x86-64

edflib-0.86.4-cp310-cp310-win32.whl (481.3 kB view details)

Uploaded CPython 3.10Windows x86

edflib-0.86.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

edflib-0.86.4-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

edflib-0.86.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

edflib-0.86.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

edflib-0.86.4-cp310-cp310-macosx_11_0_arm64.whl (516.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

edflib-0.86.4-cp310-cp310-macosx_10_9_x86_64.whl (542.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

edflib-0.86.4-cp39-cp39-win_amd64.whl (504.9 kB view details)

Uploaded CPython 3.9Windows x86-64

edflib-0.86.4-cp39-cp39-win32.whl (481.2 kB view details)

Uploaded CPython 3.9Windows x86

edflib-0.86.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

edflib-0.86.4-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

edflib-0.86.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

edflib-0.86.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

edflib-0.86.4-cp39-cp39-macosx_11_0_arm64.whl (517.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

edflib-0.86.4-cp39-cp39-macosx_10_9_x86_64.whl (542.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file edflib-0.86.4.tar.gz.

File metadata

  • Download URL: edflib-0.86.4.tar.gz
  • Upload date:
  • Size: 346.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4.tar.gz
Algorithm Hash digest
SHA256 f3f987466e2c3a427ccbee89b41cd64f8597885b8f8d96d67273fe4f70f00112
MD5 1fdfe2b7af37af9c76a72eb49e1c533d
BLAKE2b-256 742b5f775aab8a213e63068706d1abbd767399609779b6c0d0ef0e159be13a7a

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: edflib-0.86.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 502.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 072fff756419fa219564bdccb1c532202a2b0032e1931be0f9530a6e88019904
MD5 2140fc0a9c4cace68950c9361fe2acfb
BLAKE2b-256 db8f0b2db68e8d815009b3dab1ef549cfb8089803d70c1df5eb93cb204504c11

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: edflib-0.86.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 475.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fb8f0128858a3be9daa55ebda6e0173a9164f4f485cf2a6bd02e678ba4b5a3e1
MD5 6d31e2c4d343abafd153e3df3294b3c8
BLAKE2b-256 3ac1375c996acc66ebedf1fe7aa3ec5ea2f119120800c9fa10d463cd6a6e6e32

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2feaf394c7611928f6502c56563e57da79867dcaee45d9bfdbeb8e5dbf5c8d5
MD5 e4a89fed193728974624fcffdf508403
BLAKE2b-256 8e93b7b2616814a05c70edadb4ffff3e0934e85ffd65eab9b2d9a4143b423ab7

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 060ea11833a6b671a0a46b832c9a3cd0009bf478fd490a31726e41a93a986363
MD5 fb9530ed0c21cb1551ce6c6771e3c4d1
BLAKE2b-256 2cad6b98e6822b50d9de525f069288dda85bc33e93cde26f0f0d1e1b31d9e2b3

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2d86f54f6014961b76ce8d437af21f37cbe2b19fad931457142994dce842038
MD5 80415eb30ca8bbe2fabcfb7c551e10b4
BLAKE2b-256 6db7a55f936a3b31593852d767b4b0ec5555f77e99e503f6b8de513ed16c9225

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd3a81ce4ec0b17049dcb654107e0040bc782d8c7654a6a9aac1f3f5a1bc987c
MD5 3164cb0dec8f0054b0a3e0d287babf28
BLAKE2b-256 e2c912ac3dc8a60b3e728a19fdc8c4de6b0088e7e5eb1fdc6d61881d5ad03c63

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 560b61edfff57782b33973111a7fb5335fa04006bca224281200e472e512d403
MD5 5c09ef70b94e42595b67763031a0bf5d
BLAKE2b-256 be23c0a9c041dfb925ad37ab25f5203be07c54f1522f3f624cc91d29f008863b

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 97af00b6671ce7027725c56e6f8ba35f839f0b95259b3ff8b0ef95d31476bf35
MD5 391d8b02ad2f8cae77cb882c454710ae
BLAKE2b-256 418445d3a5e2b40226268792c6acd585427b23f838b45aad87ebe97b59430e0d

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: edflib-0.86.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 503.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22ae9b0ef348d100bc0f8134a460706859435334c101a14ed3d5f5b89090fbb1
MD5 5e7ccd1454d6a598556ec39ea4e7294e
BLAKE2b-256 fe358222873686b7aa8a023d6eb924b872052b4124a610561667a4acadb5245d

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: edflib-0.86.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 476.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 598ce69f188fad378a8aed093f78efbd6e90a408b1dd11d7d90f80d2ba84b3dc
MD5 839bb80151de8132fc2a3dfd662e8c31
BLAKE2b-256 6e45cb51dfaa015aa60b36bb1a4e086c544d15d9b0e6c17a0e984b002192680f

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1fc3746309b9554bb440a8c0239c4815ea701b3d252884f3729f0522392f432
MD5 0fb0943b10b37be1119cd7138b22c9c0
BLAKE2b-256 885b08986818b2561c80a101a9fbdffbe7917ac81bb096f52518c8f646d3ece8

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92942285b34512794ed3b8780132b1743c9b3955feedd37bbd35a919c31021fa
MD5 d31936cad745a3b68b72274029cf92e3
BLAKE2b-256 c0116739495227feea9ce5c7ac48a315eb3f83d969d214b890c0d4cc5e5f66a6

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fa091d07f4650c5593e06d2f517bd571cd762987438341611d8436de2566114
MD5 bb6e4f5af44326d8208efd0f6fff2928
BLAKE2b-256 0e57a389f37cb3050da2016ce43f3612909928f1ac170ad68c768f486c238937

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9de30a214a54eab4d44b41db07f07141042e40e27ea4dd31a724eeb6effc9d61
MD5 b1308229ced9a5c53e19c82230bad4b1
BLAKE2b-256 28f14ca66f08c501d039ffa3a1137e9d0ef0587b167c6fbaa446dcd6b741a78e

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a460dcbb22e4693cb307bccc9d4c906ed1dee292c29acca9906c1155db215cad
MD5 868a8bf826c3b2b37e871ebb0e15d950
BLAKE2b-256 5437876331b5985f126c1a2b5d998fd79804dde9d2000e715ba61def1baab8a6

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ec48f9a73bd7edd72bfee51808307108fbfe03204aa5ca98df153f6b5996280
MD5 a6b66a30aef8b15a3ad57c7c39485f18
BLAKE2b-256 c7c72a5144f265db87a7be71218a70a0d7a2c73a24fc56f8a3509d80ca5574a7

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: edflib-0.86.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 507.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b283366b49d6754f702b2b3a379755640613ba2247b00df73d5921449fd5d887
MD5 f3d51640f41c6074af5b39c0a679db76
BLAKE2b-256 c3fa2a192673910174fb2edcc1f6b63f16fc5f99e93c94e086b69c9299b44bfa

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: edflib-0.86.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 482.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 82f2984793093258b45ab6d4432d93d090aa03fd7f40f974200bc1ca6b60199a
MD5 ae6aa043f4eb780714e3501cb125a903
BLAKE2b-256 024bafaf4d56daccc167f5a2dccbefd513aa5192d548ea80ad54925b271b68fa

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 529743f05477f2106bf0bc66d596e79d3066377708590ec6ea6134f0292c3907
MD5 80fbd5d75974ed35d04b6431d44c4bf7
BLAKE2b-256 be24a30c105cd7cff2b615e7395dc1b51efea004fa1a026d191a135244e2baaa

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7eb9356b399c41e3f634f8447afb7d56550ec9a2aaae370a4bdafb1ae01ffc7e
MD5 db7835e305f2804ef45f0e3b9f885626
BLAKE2b-256 be741f8830d41a617e54d0240651abaef9edd2b75718ecf9f94ab4fd434387ea

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7b132ff1b3017046002536bfe74bec46638c1fe108c79a53fcac2a55518ff89
MD5 43bbacb667e698e0370bc36050c75c26
BLAKE2b-256 7aae4195cfa712dd9048e5d4c8c98426e06032ca0b3d8e0e7603ab64ebe60840

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 beb9e416168396a94290465b9bed43177f04f728504cec7f83b4d8c0506fb70d
MD5 f2a8e0375fe520ed29e4cce65c5aca7a
BLAKE2b-256 1f02c3763fefbbc121247105f9400f1bdfafa24b91019f54bb1c54bf54f93556

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 395f79f246dc95edd0df85edef8db5cd268981a26b166d25c7918be2e7a1ca83
MD5 3a2d9dd561f1e6e53e6c75d7515de042
BLAKE2b-256 245a829fde92a5db11a6ff5d1aeccfc5d144d36ecd79fcb9ad0faedf2139e91d

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f2118725168f961c65802ce9f06a5e0ad31516febf4651e5f11802f5c2669db
MD5 a55708590e102af2de30a09b6f4a09f4
BLAKE2b-256 5512f4eca3961e79b67793657cc2705197930e8a035ef61c7c8c0817afed12b8

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: edflib-0.86.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 504.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea95c896c1e99d362cc308829f279a7a749418ecc0cde8e9b7d1df6b3c49a644
MD5 ad5e1726b4128c7cfde9f3cc00f2406b
BLAKE2b-256 d3e55565e23086309d1acec02003adc8aad5a015bfb9767768f0f1212a51b297

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: edflib-0.86.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 481.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 91cf814f318fb3f273e7f1fe301be415a0f24a5be5afbd7eea972decda20717d
MD5 afee41055b6d7738a9e58a9325e808bf
BLAKE2b-256 306fbc0f0ee643fa551e6732256ee9112ec23627915d6ad51d6a20f6f74b9493

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ef7777e77142332d519600a0809a6953bd8b518aca4f2bd2508ff2c5e136dae
MD5 8d1ae32bcb0f7b4773e6dce3923a80a9
BLAKE2b-256 3c5cd8f52bd6930bc72282d6c9e43686623f8f689ef4ff7a724003b7e35ad2bd

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a36d0255f56e3f2840643e7a5a3174d28e084e98e81902547c296df67091c42
MD5 7f0f48055c4c8be14cc0029fb32de1ec
BLAKE2b-256 b7fd756b0dbbb1adeac7168923837980cd34de57d422637b0ccf8480559874f6

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76edeec231357651fd3a1fabe1c34a063384b11a8a9426cac0edf1f6d36fa74b
MD5 515bfb857c1d3df41226c7b1493c58b7
BLAKE2b-256 8fef87cb8e36ef01a60bcd0c2529711b3afbce08fc8e90557d63e8ff1696dd11

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 decdee702f707a042e7c42c6b6454522170d4620144090eccd367449e41a8c25
MD5 1a24ba9cc20837ed03284796c7bdd136
BLAKE2b-256 06914a5821bb016561931ee7b316752e117aa859beaf42d1ab02b745a80add5a

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4e0b6f965e650848198237f31dde0ee32dfeb02fc12934a9a87cde2a6de94c0
MD5 e003a9b58b8370da1c2536ecdc540170
BLAKE2b-256 4187ad1a8e700608a9d3b5c56ff0d33d22b76696d308344e201a3eef808d0797

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a836f3272cb3c38638ee6cc475dead2f2ffaae300242d1af4cb0885ddb28f8c
MD5 b088a71d75f7d2c00e34405b3e4d8cae
BLAKE2b-256 366075b437366d88dc12610d32f82d3fd2ac49ba64169f6070e2c59c1a4aa3a8

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: edflib-0.86.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 504.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f061b082a6102098138145f5267af210cb5c85acc8a943822027ee612e83410f
MD5 27cb0406242e1f235c77a2cc7fbd1eb9
BLAKE2b-256 e8ec07c1c26ea6f29afaf6f997399bf8487163979406cd996dd5ed4de8f14bb6

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: edflib-0.86.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 481.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for edflib-0.86.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d97c6ecd93fbc09d471d87e78025ed882ecd925c230b51a01e657558561636d7
MD5 1ee6596374d8702e9d588a1a3cba26e0
BLAKE2b-256 df4082412f92a9adad647cea210997056cc7d0d6e2ea10913da54ceb8e59c58e

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64aa5b6326d667baeca429444e8cb68597f725632ddf487c70a6ca238ff9bc1c
MD5 32ba31bc53c805d366c21d89f56d5777
BLAKE2b-256 69e33ae8abfe572551c537e88d511a15fa3d4efa578630d6420c19a76625a833

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fee05d6097888d222e43ac0b0139df0ba9e76e02950e191f4637a94dd43de9cc
MD5 097b9a7cda82302103aaa676ad84617f
BLAKE2b-256 21a62dc2635a4af3e554d659930c2c794afcd09713f51a624e8680d6a672348b

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f670a6363e02a33469f6c7f038581af97df9f31d6a263472f1c16e20a7ea7078
MD5 97f961645e4381b6f6b35426d2e3c75f
BLAKE2b-256 b02039f92d78d9929cff70d9ff1a11728f74dffe39a0b0465b785dce6302ae66

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4cc6c1194229c5dec4e623aaee6a5cf3f30e046f3d64a75d1373d68983ec3aa
MD5 d72569f18bb00a9d955de6fd090c81f7
BLAKE2b-256 a025851b06132abe6bba18872c796bf180423b179409f95fa83ceece49eac5ba

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ac38a9ab2f0b26fe54e0c2a2e969f9f858939c3413f3a09050f2581a60dad69
MD5 bf45a7e1818d34f19fb332c409fd2102
BLAKE2b-256 4e85a9e0a3b4a1862c0d401fe17c9a60c3642fa60158cc028d37ecbfa30471d0

See more details on using hashes here.

File details

Details for the file edflib-0.86.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for edflib-0.86.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 910aec813f2e938f1a0dc965aa03158491a64d7b6ae28a65955df5479709fb0f
MD5 866d02fc088e234b164b4f09a1d1d5b9
BLAKE2b-256 d3f0c28290d8d22783f27b0f0cd830ace93ff7928a25bbcdbbc68b9773041589

See more details on using hashes here.

Supported by

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