pyEDFlib


NamepyEDFlib JSON
Version 0.1.37 PyPI version JSON
download
home_pagehttps://github.com/holgern/pyedflib
Summarylibrary to read/write EDF+/BDF+ files
upload_time2024-03-14 14:27:26
maintainerHolger Nahrstaedt
docs_urlNone
authorHolger Nahrstaedt
requires_python
licenseBSD
keywords edflib european data format edf bdf edf+ bdf+
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            pyEDFlib
========

.. contents::

.. image:: https://codecov.io/gh/holgern/pyedflib/branch/master/graph/badge.svg
   :target: https://codecov.io/gh/holgern/pyedflib
   :alt: Test Coverage

.. image:: https://readthedocs.org/projects/pyedflib/badge/?version=latest
   :target: https://pyedflib.readthedocs.io/en/latest/?badge=latest
   :alt: Docs Build

.. image:: https://badge.fury.io/py/pyEDFlib.svg
   :target: https://badge.fury.io/py/pyEDFlib
   :alt: PyPI Version

.. image:: https://img.shields.io/conda/vn/conda-forge/pyedflib.svg
   :target: https://anaconda.org/conda-forge/pyedflib
   :alt: Conda Version

.. image:: https://anaconda.org/conda-forge/pyedflib/badges/downloads.svg
   :target: https://anaconda.org/conda-forge/pyedflib
   :alt: 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. The company `BioSemi`_
introduced a version which saves all data with 24 Bit.

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 https://pyedflib.readthedocs.io.

Installation
------------

pyEDFlib can be used with `Python`_ >=3.7. 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.

.. code-block:: Python

    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.

.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5678481.svg
   :target: https://doi.org/10.5281/zenodo.5678481

.. _Cython: https://cython.org/
.. _Anaconda: https://www.anaconda.com/
.. _GitHub: https://github.com/holgern/pyedflib
.. _GitHub Issues: https://github.com/holgern/pyedflib/issues
.. _Numpy: https://numpy.org/
.. _Python: https://www.python.org/
.. _Python Package Index: https://pypi.org/project/pyEDFlib/
.. _Releases Page: https://github.com/holgern/pyedflib/releases
.. _edfplus.info: https://www.edfplus.info/
.. _European Data Format: https://www.edfplus.info/
.. _Kemp2003: https://www.ncbi.nlm.nih.gov/pubmed/12948806?dopt=Citation
.. _Kemp1992: https://www.ncbi.nlm.nih.gov/pubmed/1374708?dopt=Abstract
.. _BioSemi: https://www.biosemi.com/faq/file_format.htm
.. _toolbox from Christopher Lee-Messer: https://github.com/cleemesser/python-edf
.. _EDFlib: https://www.teuniz.net/edflib/

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/holgern/pyedflib",
    "name": "pyEDFlib",
    "maintainer": "Holger Nahrstaedt",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "nahrstaedt@gmail.com",
    "keywords": "EDFlib,European data format,EDF,BDF,EDF+,BDF+",
    "author": "Holger Nahrstaedt",
    "author_email": "nahrstaedt@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/00/51/848b92ae7fce27a528c5225687b4dd98c2f0693a9ab8d376d08109123e67/pyEDFlib-0.1.37.tar.gz",
    "platform": "Windows",
    "description": "pyEDFlib\n========\n\n.. contents::\n\n.. image:: https://codecov.io/gh/holgern/pyedflib/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/holgern/pyedflib\n   :alt: Test Coverage\n\n.. image:: https://readthedocs.org/projects/pyedflib/badge/?version=latest\n   :target: https://pyedflib.readthedocs.io/en/latest/?badge=latest\n   :alt: Docs Build\n\n.. image:: https://badge.fury.io/py/pyEDFlib.svg\n   :target: https://badge.fury.io/py/pyEDFlib\n   :alt: PyPI Version\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/pyedflib.svg\n   :target: https://anaconda.org/conda-forge/pyedflib\n   :alt: Conda Version\n\n.. image:: https://anaconda.org/conda-forge/pyedflib/badges/downloads.svg\n   :target: https://anaconda.org/conda-forge/pyedflib\n   :alt: Conda Downloads\n\nWhat is pyEDFlib\n----------------\npyEDFlib is a python library to read/write EDF+/BDF+ files based on EDFlib.\n\nEDF means `European Data Format`_ and was firstly published `Kemp1992`_.\nIn 2003, an improved version of the file protocol  named EDF+ has been published and can be found at `Kemp2003`_.\n\nThe EDF/EDF+ format saves all data with 16 Bit. The company `BioSemi`_\nintroduced a version which saves all data with 24 Bit.\n\nThe definition of the EDF/EDF+/BDF/BDF+ format can be found under `edfplus.info`_.\n\nThis Python toolbox is a fork of the `toolbox from Christopher Lee-Messer`_\nand uses the `EDFlib`_ from Teunis van Beelen.\nThe EDFlib is able to read and write EDF/EDF+/BDF/BDF+ files.\n\nDocumentation\n-------------\n\nDocumentation is available online at https://pyedflib.readthedocs.io.\n\nInstallation\n------------\n\npyEDFlib can be used with `Python`_ >=3.7. It depends on the `Numpy`_ package.\nTo use the newest source code from git, you have to download the source code.\nYou need a C compiler and a recent version of `Cython`_. Go then to the source directory and type::\n\n    python setup.py build\n    python setup.py install\n\nThere are binary wheels which can be installed by (use pip3 when available)::\n\n    pip install pyEDFlib\n\nUsers of the Anaconda_ Python distribution can directly obtain pre-built\nWindows, Intel Linux or macOS / OSX binaries from the conda-forge channel.\nThis can be done via::\n\n    conda install -c conda-forge pyedflib\n\n\nThe most recent *development* version can be found on GitHub at\nhttps://github.com/holgern/pyedflib.\n\nThe latest release, including source and binary packages for Linux,\nmacOS and Windows, is available for download from the `Python Package Index`_.\nYou can find source releases at the `Releases Page`_.\n\n\nHighlevel interface\n-------------------\n\npyEDFlib includes an highlevel interface for easy access to read and write edf files.\nAdditionally functionality as anonymizing, dropping or renaming channels can be found there.\n\n.. code-block:: Python\n\n    from pyedflib import highlevel\n\n    # write an edf file\n    signals = np.random.rand(5, 256*300)*200 # 5 minutes of random signal\n    channel_names = ['ch1', 'ch2', 'ch3', 'ch4', 'ch5']\n    signal_headers = highlevel.make_signal_headers(channel_names, sample_frequency=256)\n    header = highlevel.make_header(patientname='patient_x', gender='Female')\n    highlevel.write_edf('edf_file.edf', signals, signal_headers, header)\n\n    # read an edf file\n    signals, signal_headers, header = highlevel.read_edf('edf_file.edf', ch_names=['ch1', 'ch2'])\n    print(signal_headers[0]['sample_frequency']) # prints 256\n\n    # drop a channel from the file or anonymize edf\n    highlevel.drop_channels('edf_file.edf', to_drop=['ch2', 'ch4'])\n    highlevel.anonymize_edf('edf_file.edf', new_file='anonymized.edf'\n                             to_remove=['patientname', 'birthdate'],\n                             new_values=['anonymized', ''])\n    # check if the two files have the same content\n    highlevel.compare_edf('edf_file.edf', 'anonymized.edf')\n    # change polarity of certain channels\n    highlevel.change_polarity('file.edf', channels=[1,3])\n    # rename channels within a file\n    highlevel.rename_channels('file.edf', mapping={'C3-M1':'C3'})\n\n\nLicense\n-------\n\npyEDFlib is a free Open Source software released under the BSD 2-clause license.\n\n\nReleases can be cited via Zenodo.\n\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5678481.svg\n   :target: https://doi.org/10.5281/zenodo.5678481\n\n.. _Cython: https://cython.org/\n.. _Anaconda: https://www.anaconda.com/\n.. _GitHub: https://github.com/holgern/pyedflib\n.. _GitHub Issues: https://github.com/holgern/pyedflib/issues\n.. _Numpy: https://numpy.org/\n.. _Python: https://www.python.org/\n.. _Python Package Index: https://pypi.org/project/pyEDFlib/\n.. _Releases Page: https://github.com/holgern/pyedflib/releases\n.. _edfplus.info: https://www.edfplus.info/\n.. _European Data Format: https://www.edfplus.info/\n.. _Kemp2003: https://www.ncbi.nlm.nih.gov/pubmed/12948806?dopt=Citation\n.. _Kemp1992: https://www.ncbi.nlm.nih.gov/pubmed/1374708?dopt=Abstract\n.. _BioSemi: https://www.biosemi.com/faq/file_format.htm\n.. _toolbox from Christopher Lee-Messer: https://github.com/cleemesser/python-edf\n.. _EDFlib: https://www.teuniz.net/edflib/\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "library to read/write EDF+/BDF+ files",
    "version": "0.1.37",
    "project_urls": {
        "Homepage": "https://github.com/holgern/pyedflib"
    },
    "split_keywords": [
        "edflib",
        "european data format",
        "edf",
        "bdf",
        "edf+",
        "bdf+"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7aa113a3fca0ddb1c76aa40bf56e54ee4904f3c1bcfa9d1fe4d125b1599cfa6c",
                "md5": "69b447434d918ab68ef69106320416ec",
                "sha256": "f90cd7b3884ba84d4d9f84c290955bcfeb5570777f5f9343c323a90dcbca996e"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69b447434d918ab68ef69106320416ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2209682,
            "upload_time": "2024-03-14T14:25:04",
            "upload_time_iso_8601": "2024-03-14T14:25:04.351297Z",
            "url": "https://files.pythonhosted.org/packages/7a/a1/13a3fca0ddb1c76aa40bf56e54ee4904f3c1bcfa9d1fe4d125b1599cfa6c/pyEDFlib-0.1.37-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fea7bed158c8f19aa996a07543524b96ea2948275cad8ac3cae39383d6bf5d7a",
                "md5": "73263b90f1d6a7b564933118083a2f70",
                "sha256": "5e3c005c1514031584908a9c3b66eef2e9437390faf5deff1b53502d31ac960b"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "73263b90f1d6a7b564933118083a2f70",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2203899,
            "upload_time": "2024-03-14T14:25:06",
            "upload_time_iso_8601": "2024-03-14T14:25:06.327653Z",
            "url": "https://files.pythonhosted.org/packages/fe/a7/bed158c8f19aa996a07543524b96ea2948275cad8ac3cae39383d6bf5d7a/pyEDFlib-0.1.37-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d83c94f5d708f0d5ad27c6457f17d7c5dce1eb0aec1c8d3da56ecbe926196506",
                "md5": "5d4c9d2adabbe1d76f97668a409afea3",
                "sha256": "3bcf05b3f4a6ec04cd3c4356d5eeea1c26357b7c95ceeef26ace6be8440d67db"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d4c9d2adabbe1d76f97668a409afea3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2668727,
            "upload_time": "2024-03-14T14:25:08",
            "upload_time_iso_8601": "2024-03-14T14:25:08.152393Z",
            "url": "https://files.pythonhosted.org/packages/d8/3c/94f5d708f0d5ad27c6457f17d7c5dce1eb0aec1c8d3da56ecbe926196506/pyEDFlib-0.1.37-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60b409ba59c44792b9f70f85057bf78a051b1edd53571ec30a350405c8f19b5d",
                "md5": "bc88d14e931ba235899da58c3735a68b",
                "sha256": "76e6ab077568b4e35c5d0dc5a479d7c871df71c25d15b6937b5b25a551bbf590"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc88d14e931ba235899da58c3735a68b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2682413,
            "upload_time": "2024-03-14T14:25:09",
            "upload_time_iso_8601": "2024-03-14T14:25:09.706798Z",
            "url": "https://files.pythonhosted.org/packages/60/b4/09ba59c44792b9f70f85057bf78a051b1edd53571ec30a350405c8f19b5d/pyEDFlib-0.1.37-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31e8a43447ea885a9cca45b575e0a89418c2479123bbe453f6208938be7df7eb",
                "md5": "17684cf388e8a866057ce43e9e64fcb5",
                "sha256": "27d16f6b04a4aca66b5e2a98caa97c2a206281e5f6d4c36580b7e941541fbd17"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "17684cf388e8a866057ce43e9e64fcb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2650322,
            "upload_time": "2024-03-14T14:25:11",
            "upload_time_iso_8601": "2024-03-14T14:25:11.839261Z",
            "url": "https://files.pythonhosted.org/packages/31/e8/a43447ea885a9cca45b575e0a89418c2479123bbe453f6208938be7df7eb/pyEDFlib-0.1.37-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4112fcbf4dd415acf71bf5faa6f869b13d932426b79060849226ec174e98f6a9",
                "md5": "6fc12cb4f97810ddffd6317aea25d017",
                "sha256": "057e92d12f51d9ab9d13c29190e32c0ad12ab9154bc4245e4e01eb6c98664faf"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6fc12cb4f97810ddffd6317aea25d017",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2655208,
            "upload_time": "2024-03-14T14:25:13",
            "upload_time_iso_8601": "2024-03-14T14:25:13.987553Z",
            "url": "https://files.pythonhosted.org/packages/41/12/fcbf4dd415acf71bf5faa6f869b13d932426b79060849226ec174e98f6a9/pyEDFlib-0.1.37-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef0d4d34c2296a363199cf8be0ba7ff8fc20c2cc05a74f6d667f523464474d29",
                "md5": "e67be6d611b92df85a1958de6aaa2702",
                "sha256": "d14cc79ceef1883f457679d0eb02d72c092d01daa4891573177f67a298640042"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e67be6d611b92df85a1958de6aaa2702",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2680721,
            "upload_time": "2024-03-14T14:25:15",
            "upload_time_iso_8601": "2024-03-14T14:25:15.497812Z",
            "url": "https://files.pythonhosted.org/packages/ef/0d/4d34c2296a363199cf8be0ba7ff8fc20c2cc05a74f6d667f523464474d29/pyEDFlib-0.1.37-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b831ad8cdd9b5401db84dce0ce77a91586c94d9dfaa6ee7d6053a11d445b0319",
                "md5": "432d0e7ace6541ccf5a3cabf3dbccd5d",
                "sha256": "86ded989466ea6c160e71eb73a7183ecfcdc0c2f4909b30deebf549880ad79c3"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "432d0e7ace6541ccf5a3cabf3dbccd5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2180998,
            "upload_time": "2024-03-14T14:25:17",
            "upload_time_iso_8601": "2024-03-14T14:25:17.650088Z",
            "url": "https://files.pythonhosted.org/packages/b8/31/ad8cdd9b5401db84dce0ce77a91586c94d9dfaa6ee7d6053a11d445b0319/pyEDFlib-0.1.37-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e5cd7a860d81ea99170d33c4ef118496ffc4d1c353db1c2e3e03310a2882750",
                "md5": "eeca8d80bd6b6885a93d6b0a16621fbb",
                "sha256": "55f6e281c01a6784a88312bf45775d6c05d9bcb81079e38353ad71737bc8d6ae"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eeca8d80bd6b6885a93d6b0a16621fbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2192885,
            "upload_time": "2024-03-14T14:25:18",
            "upload_time_iso_8601": "2024-03-14T14:25:18.959389Z",
            "url": "https://files.pythonhosted.org/packages/5e/5c/d7a860d81ea99170d33c4ef118496ffc4d1c353db1c2e3e03310a2882750/pyEDFlib-0.1.37-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30ccd4f539cf08660a552237f71e6d6e19b81f9d8cb41e7fc167880f23beace9",
                "md5": "a46a481c115bdfd8f81950b13676de2b",
                "sha256": "f5c3e4780ffce1801c5fb404fdd395a7e641eac2281c425efb1db4b76396b642"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a46a481c115bdfd8f81950b13676de2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2211477,
            "upload_time": "2024-03-14T14:25:21",
            "upload_time_iso_8601": "2024-03-14T14:25:21.035484Z",
            "url": "https://files.pythonhosted.org/packages/30/cc/d4f539cf08660a552237f71e6d6e19b81f9d8cb41e7fc167880f23beace9/pyEDFlib-0.1.37-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fdc5605e7f2f1aa0187e782d9f604346a23e3a06ae6f6446c58843d8699fde8",
                "md5": "e2ab35b2858bd20954b199e8e3da560b",
                "sha256": "6d39a5df077a285927ea615951fb969ccb36a659cfd831e918f2dc14868123ef"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e2ab35b2858bd20954b199e8e3da560b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2205093,
            "upload_time": "2024-03-14T14:25:22",
            "upload_time_iso_8601": "2024-03-14T14:25:22.429661Z",
            "url": "https://files.pythonhosted.org/packages/6f/dc/5605e7f2f1aa0187e782d9f604346a23e3a06ae6f6446c58843d8699fde8/pyEDFlib-0.1.37-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ee8ad2f2bcebbf7daf8e379af0f524d7a027f6a4adad1b38db6d60023be5f33",
                "md5": "da41af2b79e8fdb2648e5a7c79958b6b",
                "sha256": "7f2ae47f9e4ec2eafea1541b448decdd11a7b02b7f7c2f5c3993e6e11cc5a458"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da41af2b79e8fdb2648e5a7c79958b6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2700723,
            "upload_time": "2024-03-14T14:25:23",
            "upload_time_iso_8601": "2024-03-14T14:25:23.875462Z",
            "url": "https://files.pythonhosted.org/packages/8e/e8/ad2f2bcebbf7daf8e379af0f524d7a027f6a4adad1b38db6d60023be5f33/pyEDFlib-0.1.37-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55093632e40c7b495c39448f8802b578289d29c6aec2c6b562ac3a62c2698269",
                "md5": "a9f7b14b45cf0447d493a828089f8346",
                "sha256": "6500afba03b1b959dedf1b9f0c75f9f77e44a0119fb7d33057e44403826dc3c8"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9f7b14b45cf0447d493a828089f8346",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2714261,
            "upload_time": "2024-03-14T14:25:26",
            "upload_time_iso_8601": "2024-03-14T14:25:26.116656Z",
            "url": "https://files.pythonhosted.org/packages/55/09/3632e40c7b495c39448f8802b578289d29c6aec2c6b562ac3a62c2698269/pyEDFlib-0.1.37-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9486d9fa4e434c3672076080cfb8e458600b9fe9327792513f246f5e3aba6f8",
                "md5": "db616e9287764dc34fd04d179ec7ec29",
                "sha256": "1dde4e33e602c64dfe2449b667af6f3fe2713bd7cd7e27e0bd16fe81b30be56a"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "db616e9287764dc34fd04d179ec7ec29",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2688062,
            "upload_time": "2024-03-14T14:25:29",
            "upload_time_iso_8601": "2024-03-14T14:25:29.103925Z",
            "url": "https://files.pythonhosted.org/packages/e9/48/6d9fa4e434c3672076080cfb8e458600b9fe9327792513f246f5e3aba6f8/pyEDFlib-0.1.37-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89f1496d006772d6d3c8b42b2ee8d0b38286a9b979a5fba9c64635a65eb095bb",
                "md5": "d8c00e2a01a4817994391d868ddd7c3f",
                "sha256": "5932a0301990ee698c23ca26156534ca5ed0d3e43d60e6166881b2ef46b688e1"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d8c00e2a01a4817994391d868ddd7c3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2687006,
            "upload_time": "2024-03-14T14:25:33",
            "upload_time_iso_8601": "2024-03-14T14:25:33.145272Z",
            "url": "https://files.pythonhosted.org/packages/89/f1/496d006772d6d3c8b42b2ee8d0b38286a9b979a5fba9c64635a65eb095bb/pyEDFlib-0.1.37-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "499e29e4a1d99a7942d3e6414182f69aaaa2018556003ba60ccd2038845273c5",
                "md5": "268d8d2d7ee1fe4165186cd127ec8216",
                "sha256": "ae5395b57a5c98fda97b98ead07c7485d240ec4b1619e046de8830443de6e82a"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "268d8d2d7ee1fe4165186cd127ec8216",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2708781,
            "upload_time": "2024-03-14T14:25:36",
            "upload_time_iso_8601": "2024-03-14T14:25:36.551464Z",
            "url": "https://files.pythonhosted.org/packages/49/9e/29e4a1d99a7942d3e6414182f69aaaa2018556003ba60ccd2038845273c5/pyEDFlib-0.1.37-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0b04bfcad86509549d81ba781b10cfd9c1470a9818465d0d6cb98114dc27d2e",
                "md5": "095f1639d59f012e494d66143657ad0e",
                "sha256": "d99e15d79b9b296a878e7f1707785f36a064f3ac18c1394514577edc4182b824"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "095f1639d59f012e494d66143657ad0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2180988,
            "upload_time": "2024-03-14T14:25:38",
            "upload_time_iso_8601": "2024-03-14T14:25:38.673877Z",
            "url": "https://files.pythonhosted.org/packages/b0/b0/4bfcad86509549d81ba781b10cfd9c1470a9818465d0d6cb98114dc27d2e/pyEDFlib-0.1.37-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0721fdefcb0f6390b84cdc34a0b5d205d1d7be0f9b3d09d7baf872660b61aff3",
                "md5": "576bd575e504dc44eaa6b8a97b1f3c18",
                "sha256": "396659eadc50ca0115cbd3af81fe9f62fa433cb17896075eec0da2e8e010802d"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "576bd575e504dc44eaa6b8a97b1f3c18",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2193088,
            "upload_time": "2024-03-14T14:25:52",
            "upload_time_iso_8601": "2024-03-14T14:25:52.417952Z",
            "url": "https://files.pythonhosted.org/packages/07/21/fdefcb0f6390b84cdc34a0b5d205d1d7be0f9b3d09d7baf872660b61aff3/pyEDFlib-0.1.37-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa97d1069be79372eb52096087547ccbc39a5380d1ff43d1c7567baf3c6f3da6",
                "md5": "af58548b82f362477bfc579ddb670635",
                "sha256": "ca5f4a40ebb9a8fe414f484b513ba401515f5bc0e4061c0aacdb20885c33cd84"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af58548b82f362477bfc579ddb670635",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2212583,
            "upload_time": "2024-03-14T14:25:57",
            "upload_time_iso_8601": "2024-03-14T14:25:57.738556Z",
            "url": "https://files.pythonhosted.org/packages/fa/97/d1069be79372eb52096087547ccbc39a5380d1ff43d1c7567baf3c6f3da6/pyEDFlib-0.1.37-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "757b25295b335fdfc8254a0947c669b937d8138a917b450dc8d77cd64e7c1fe0",
                "md5": "df957d05498470cabbb5796f78f57812",
                "sha256": "290ae861efaa751402dd582aee81b65f153b1abea5ba32e91499b8ee6ecb667a"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "df957d05498470cabbb5796f78f57812",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2205944,
            "upload_time": "2024-03-14T14:25:59",
            "upload_time_iso_8601": "2024-03-14T14:25:59.098521Z",
            "url": "https://files.pythonhosted.org/packages/75/7b/25295b335fdfc8254a0947c669b937d8138a917b450dc8d77cd64e7c1fe0/pyEDFlib-0.1.37-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa4b256b4d0d6d152694f118de9da7fcca438ed710dbeab0a95242e237e54e5b",
                "md5": "396a8d127f180bc55667c0b8cfb4e959",
                "sha256": "7cb1b92490bc953dd76502d01a43fcb741a9873b4c379947cd6d645518374336"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "396a8d127f180bc55667c0b8cfb4e959",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2704591,
            "upload_time": "2024-03-14T14:26:01",
            "upload_time_iso_8601": "2024-03-14T14:26:01.275619Z",
            "url": "https://files.pythonhosted.org/packages/fa/4b/256b4d0d6d152694f118de9da7fcca438ed710dbeab0a95242e237e54e5b/pyEDFlib-0.1.37-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f28b64b505b9471f098e0adcfa682c043b4b1cd5917c92c522ed84fec54455b2",
                "md5": "0502d49cb025c4d8312a62abb19a9e21",
                "sha256": "0e1a3c45f799596d9164d799fa8fbe18b1deb72ce1705ac8d171b51bb88719d3"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0502d49cb025c4d8312a62abb19a9e21",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2721067,
            "upload_time": "2024-03-14T14:26:06",
            "upload_time_iso_8601": "2024-03-14T14:26:06.819228Z",
            "url": "https://files.pythonhosted.org/packages/f2/8b/64b505b9471f098e0adcfa682c043b4b1cd5917c92c522ed84fec54455b2/pyEDFlib-0.1.37-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b0c6ff2d0bc700a93c2258629e0b739051169d20231996aeaf2f85438c22df7",
                "md5": "bdac6b32c60d7341c13c8f708fb6874c",
                "sha256": "0ae3991d0e09abbb58f1ace16f9a69f645832b32a8374d380c284719d92eec15"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdac6b32c60d7341c13c8f708fb6874c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2713700,
            "upload_time": "2024-03-14T14:26:08",
            "upload_time_iso_8601": "2024-03-14T14:26:08.727687Z",
            "url": "https://files.pythonhosted.org/packages/0b/0c/6ff2d0bc700a93c2258629e0b739051169d20231996aeaf2f85438c22df7/pyEDFlib-0.1.37-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59724a2e73a7a4b784df6c48ea0819789c6fbe268e26f233516cb63213d06e18",
                "md5": "2b963f9d43a805638dddbdfd147bbcc3",
                "sha256": "18c15d1132aada026d86a2800360dbabf705bd60e4d557b69573a8e2ee25f9af"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2b963f9d43a805638dddbdfd147bbcc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2181678,
            "upload_time": "2024-03-14T14:26:11",
            "upload_time_iso_8601": "2024-03-14T14:26:11.050171Z",
            "url": "https://files.pythonhosted.org/packages/59/72/4a2e73a7a4b784df6c48ea0819789c6fbe268e26f233516cb63213d06e18/pyEDFlib-0.1.37-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c81fba6f54616340f2df93620f86bef3e148767b5800604e3e006d8e31a2367d",
                "md5": "06425f4c08ae2c36d622733000a89c92",
                "sha256": "054d3b3bddc4a21b4cbf8e609de5cc8d4550f133f2ebd95abeb01c61ea6f0d4c"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "06425f4c08ae2c36d622733000a89c92",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2194034,
            "upload_time": "2024-03-14T14:26:12",
            "upload_time_iso_8601": "2024-03-14T14:26:12.485934Z",
            "url": "https://files.pythonhosted.org/packages/c8/1f/ba6f54616340f2df93620f86bef3e148767b5800604e3e006d8e31a2367d/pyEDFlib-0.1.37-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b1c51756f5a609816398137507ae0d62be7b47d28a97e523d1f45dcd222731b",
                "md5": "57d338122e42e0bcf60cc00a944e4f23",
                "sha256": "f47f49d4c38431f7bfa2bd7fb555867d93f0055804f0b56c3309da94e0ff8f7f"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57d338122e42e0bcf60cc00a944e4f23",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2208342,
            "upload_time": "2024-03-14T14:26:17",
            "upload_time_iso_8601": "2024-03-14T14:26:17.569589Z",
            "url": "https://files.pythonhosted.org/packages/3b/1c/51756f5a609816398137507ae0d62be7b47d28a97e523d1f45dcd222731b/pyEDFlib-0.1.37-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d3f38b482a561eebfa9a6690ea8330c355a6dfc3298bef042d384ccb7aa5b7c",
                "md5": "d20eae7ba1ec9f01daa44b447d9387a0",
                "sha256": "478796c3ec76b6f64ec51b8abbfb49eb9af974ce87f93455a7ad43caa4d1f4ef"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d20eae7ba1ec9f01daa44b447d9387a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2642044,
            "upload_time": "2024-03-14T14:26:19",
            "upload_time_iso_8601": "2024-03-14T14:26:19.343193Z",
            "url": "https://files.pythonhosted.org/packages/8d/3f/38b482a561eebfa9a6690ea8330c355a6dfc3298bef042d384ccb7aa5b7c/pyEDFlib-0.1.37-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74c3b58428432c72868651f00e525d9c9ccff39cc80ae24ccd6e3520d4f5433b",
                "md5": "c91ea320d64ad5c8476a7eb565477fc8",
                "sha256": "7c2016fb675e283577fcb7290c99862432561149c9f61839773a0f85c414b037"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c91ea320d64ad5c8476a7eb565477fc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2603090,
            "upload_time": "2024-03-14T14:26:25",
            "upload_time_iso_8601": "2024-03-14T14:26:25.563655Z",
            "url": "https://files.pythonhosted.org/packages/74/c3/b58428432c72868651f00e525d9c9ccff39cc80ae24ccd6e3520d4f5433b/pyEDFlib-0.1.37-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8667fc4c3354068248f6e0ea95c9bba3a76f32e3faee689eaba987e4bfc1efe4",
                "md5": "2b8f5e2f49dce66ba3084e44216fb4cb",
                "sha256": "685a632d095a45a680e24e4773889d9e23533ef2f6ac429749e4863169d71ba4"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2b8f5e2f49dce66ba3084e44216fb4cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2611508,
            "upload_time": "2024-03-14T14:26:27",
            "upload_time_iso_8601": "2024-03-14T14:26:27.840097Z",
            "url": "https://files.pythonhosted.org/packages/86/67/fc4c3354068248f6e0ea95c9bba3a76f32e3faee689eaba987e4bfc1efe4/pyEDFlib-0.1.37-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9baa1df151a657ae807ea1e191d979f298b3eeb3d080393115d50cc727b77082",
                "md5": "bf36a34b338162a2efc19e7d87f27231",
                "sha256": "7ab52bd278565fdb8cb8a71ae03fb59f85411810f92c081917f62a3fa0819d09"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf36a34b338162a2efc19e7d87f27231",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2639240,
            "upload_time": "2024-03-14T14:26:29",
            "upload_time_iso_8601": "2024-03-14T14:26:29.575479Z",
            "url": "https://files.pythonhosted.org/packages/9b/aa/1df151a657ae807ea1e191d979f298b3eeb3d080393115d50cc727b77082/pyEDFlib-0.1.37-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fc9bffec1c7d2d8d59a156dbb3314d18fe1ecc23f8b00559c7c067e84a767cc",
                "md5": "d4697fe61752da2753d673c901643676",
                "sha256": "9986e2a6a6e1a9e81e73630394e8362b564c2e9d79ac98923e39961200b5110f"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "d4697fe61752da2753d673c901643676",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2188368,
            "upload_time": "2024-03-14T14:26:34",
            "upload_time_iso_8601": "2024-03-14T14:26:34.711185Z",
            "url": "https://files.pythonhosted.org/packages/0f/c9/bffec1c7d2d8d59a156dbb3314d18fe1ecc23f8b00559c7c067e84a767cc/pyEDFlib-0.1.37-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99e9071f41a46894c8567dce8db18888e6654e2d04f953c8feb1070fa4f8ac91",
                "md5": "bef0804b3d4a4cfe53298af5f516075b",
                "sha256": "3f8be8d2e1ca2ca859fe43aa5012d3401eab43a5202d0a5d18dbf2b6c9ff731f"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bef0804b3d4a4cfe53298af5f516075b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2205885,
            "upload_time": "2024-03-14T14:26:37",
            "upload_time_iso_8601": "2024-03-14T14:26:37.615811Z",
            "url": "https://files.pythonhosted.org/packages/99/e9/071f41a46894c8567dce8db18888e6654e2d04f953c8feb1070fa4f8ac91/pyEDFlib-0.1.37-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82dcad613ef8d9d0985aac52cec17bea383cb5682b365bf3dddeb42909143c89",
                "md5": "64d2084367dcdd0e2cb265be6df46621",
                "sha256": "a3bf57b1d5a7882ed14c650e95920c438c393a9e040292d972750cf085c321d9"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64d2084367dcdd0e2cb265be6df46621",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2209743,
            "upload_time": "2024-03-14T14:26:39",
            "upload_time_iso_8601": "2024-03-14T14:26:39.115578Z",
            "url": "https://files.pythonhosted.org/packages/82/dc/ad613ef8d9d0985aac52cec17bea383cb5682b365bf3dddeb42909143c89/pyEDFlib-0.1.37-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5975c199c695a5c2848d2ff2d712692c39242ab19fa8e0096f0a09eb79bc5a65",
                "md5": "bb963f5af3f232559c7db6cc4e4d1550",
                "sha256": "c7332582d81a4c0809f0b7e34d508f614c4ac99fe1cfe056b0f0628462f506d2"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bb963f5af3f232559c7db6cc4e4d1550",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2639031,
            "upload_time": "2024-03-14T14:26:43",
            "upload_time_iso_8601": "2024-03-14T14:26:43.647381Z",
            "url": "https://files.pythonhosted.org/packages/59/75/c199c695a5c2848d2ff2d712692c39242ab19fa8e0096f0a09eb79bc5a65/pyEDFlib-0.1.37-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2126179c53105b21057f336e107f77a93a528c20e6620221f10080a2647c36a",
                "md5": "55d50d433786921aa7758463d4b72cb5",
                "sha256": "f01531115445828dd4c0e9f5b96ecb85a63a4808f6e4bc3e2f50003cc7714fb5"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55d50d433786921aa7758463d4b72cb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2655848,
            "upload_time": "2024-03-14T14:26:45",
            "upload_time_iso_8601": "2024-03-14T14:26:45.850802Z",
            "url": "https://files.pythonhosted.org/packages/d2/12/6179c53105b21057f336e107f77a93a528c20e6620221f10080a2647c36a/pyEDFlib-0.1.37-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15ed12b8851da8bc0619a74b861f16aff02913179318510aa297d2be993e0b18",
                "md5": "e49041d2237d9b2b577ddfd97f205d67",
                "sha256": "9ce5ba42e20381741eb4471038c26f73bbece454dacd9d4b61cbcc42e1a92567"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e49041d2237d9b2b577ddfd97f205d67",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2618321,
            "upload_time": "2024-03-14T14:26:48",
            "upload_time_iso_8601": "2024-03-14T14:26:48.016576Z",
            "url": "https://files.pythonhosted.org/packages/15/ed/12b8851da8bc0619a74b861f16aff02913179318510aa297d2be993e0b18/pyEDFlib-0.1.37-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07070b11f994c9a3c3a1dc9cb0bb0424ecf40ffc550daf861ce484f183566139",
                "md5": "d7a7017d84cebd592177aac521fe4585",
                "sha256": "460d7aac5ea72e2eaf07abd0904ddeca894ff5489b006ee6140c4bf3776dd7fb"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d7a7017d84cebd592177aac521fe4585",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2626078,
            "upload_time": "2024-03-14T14:26:49",
            "upload_time_iso_8601": "2024-03-14T14:26:49.404808Z",
            "url": "https://files.pythonhosted.org/packages/07/07/0b11f994c9a3c3a1dc9cb0bb0424ecf40ffc550daf861ce484f183566139/pyEDFlib-0.1.37-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a70e9eaa3ccdeda7e2882475103a3ab8e638dda15bd515d313d5e9839724ff7",
                "md5": "6a23082927f75da849007ed9628066f0",
                "sha256": "9b6214e6ddd21f29d5e201ccb5d37027de5390b8d4c6436af24eaf2334cae1a9"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a23082927f75da849007ed9628066f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2657243,
            "upload_time": "2024-03-14T14:26:52",
            "upload_time_iso_8601": "2024-03-14T14:26:52.007641Z",
            "url": "https://files.pythonhosted.org/packages/8a/70/e9eaa3ccdeda7e2882475103a3ab8e638dda15bd515d313d5e9839724ff7/pyEDFlib-0.1.37-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e39f97785bd2245766ceea89756888bdf2b88f8ec93f1d34661bef0d75045c73",
                "md5": "303f400c2fe9265022785ae63e5c3c93",
                "sha256": "cf8da5b844e2a2aeebde828f3cc7dc4917474f5cd5872309a3cef2d6c4018722"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "303f400c2fe9265022785ae63e5c3c93",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2180879,
            "upload_time": "2024-03-14T14:26:54",
            "upload_time_iso_8601": "2024-03-14T14:26:54.269777Z",
            "url": "https://files.pythonhosted.org/packages/e3/9f/97785bd2245766ceea89756888bdf2b88f8ec93f1d34661bef0d75045c73/pyEDFlib-0.1.37-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18e395ec737c7d963a319d1fd4231826b54e35c6253368945d6cf51acb25d228",
                "md5": "5fca43f89f593e2ea9eb8f4640faffe4",
                "sha256": "81c364a81caf690fb27e1e495f198c200fc4b4a283d756f104142021a7a11aaf"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5fca43f89f593e2ea9eb8f4640faffe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2193284,
            "upload_time": "2024-03-14T14:26:56",
            "upload_time_iso_8601": "2024-03-14T14:26:56.321226Z",
            "url": "https://files.pythonhosted.org/packages/18/e3/95ec737c7d963a319d1fd4231826b54e35c6253368945d6cf51acb25d228/pyEDFlib-0.1.37-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c113af79a1f5271ffa5df76b530dd1e3a18bb9f33d0af11d617adae7479d842",
                "md5": "477bdb12117dc17e03afdbd91cc3a42c",
                "sha256": "992d9a6cd556237f71b7a1399e4b0faee8b71748050c4c12978577263682e078"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "477bdb12117dc17e03afdbd91cc3a42c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2209750,
            "upload_time": "2024-03-14T14:26:57",
            "upload_time_iso_8601": "2024-03-14T14:26:57.772498Z",
            "url": "https://files.pythonhosted.org/packages/1c/11/3af79a1f5271ffa5df76b530dd1e3a18bb9f33d0af11d617adae7479d842/pyEDFlib-0.1.37-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4da8df16cda6ab076ebee5e2a96a81fca3d3fa2fd5f5e588f777d26acd6238f9",
                "md5": "47e35a097b60e5dfb519035792a13f33",
                "sha256": "bc08fd6b7e1db59d5a9d830bc7526c545fb0ef65232212e8eec959b3d6d9d4ad"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "47e35a097b60e5dfb519035792a13f33",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2203991,
            "upload_time": "2024-03-14T14:26:59",
            "upload_time_iso_8601": "2024-03-14T14:26:59.148062Z",
            "url": "https://files.pythonhosted.org/packages/4d/a8/df16cda6ab076ebee5e2a96a81fca3d3fa2fd5f5e588f777d26acd6238f9/pyEDFlib-0.1.37-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c6519975b96db7358ae4c88bca8a42788c7289c64a4c744d813c4fb98558e52",
                "md5": "8a2a6cda11d3a4d29a4a3b3e5ed9f3e3",
                "sha256": "9ac3f15f3558837adf0537f35ff9c9140f982cc449da4ae312c1095f150e9568"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a2a6cda11d3a4d29a4a3b3e5ed9f3e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2673538,
            "upload_time": "2024-03-14T14:27:00",
            "upload_time_iso_8601": "2024-03-14T14:27:00.607006Z",
            "url": "https://files.pythonhosted.org/packages/5c/65/19975b96db7358ae4c88bca8a42788c7289c64a4c744d813c4fb98558e52/pyEDFlib-0.1.37-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0bd647777c91036d4a06354df2ac1f61b9b79718ae80c12c08efa7ec6921110",
                "md5": "edc26838a4376e9ea003716c35904454",
                "sha256": "e7c17847dd3b504593fbab3399384b09fac6836c1acc0a7105768fa63484e0e7"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edc26838a4376e9ea003716c35904454",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2688220,
            "upload_time": "2024-03-14T14:27:02",
            "upload_time_iso_8601": "2024-03-14T14:27:02.390657Z",
            "url": "https://files.pythonhosted.org/packages/a0/bd/647777c91036d4a06354df2ac1f61b9b79718ae80c12c08efa7ec6921110/pyEDFlib-0.1.37-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8410109f0113ad682ec97fe1d7e60f2ce22067be90f0624ca05cf93ca7d1342c",
                "md5": "8ef1e77881726ba5440c3e06adf34b27",
                "sha256": "6884ca539959b562c8769475d59219707584e2f416b938fb1a37f3e742f1b60d"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8ef1e77881726ba5440c3e06adf34b27",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2652641,
            "upload_time": "2024-03-14T14:27:04",
            "upload_time_iso_8601": "2024-03-14T14:27:04.057965Z",
            "url": "https://files.pythonhosted.org/packages/84/10/109f0113ad682ec97fe1d7e60f2ce22067be90f0624ca05cf93ca7d1342c/pyEDFlib-0.1.37-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4caf3321bf1993a4d98cc6e0ef000451069c9e0692d6d299d476c375b3d27dd4",
                "md5": "da2cfcafd8a5a12ed62ddfd2b3fbe677",
                "sha256": "a3c42769cc1cf574f98a4e407b551ce131f91cd87bc96c52c534186632ab70d0"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "da2cfcafd8a5a12ed62ddfd2b3fbe677",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2672310,
            "upload_time": "2024-03-14T14:27:05",
            "upload_time_iso_8601": "2024-03-14T14:27:05.558109Z",
            "url": "https://files.pythonhosted.org/packages/4c/af/3321bf1993a4d98cc6e0ef000451069c9e0692d6d299d476c375b3d27dd4/pyEDFlib-0.1.37-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e873d52a0f8c0b716819d2b1f63eef46a9069f037ffe49ae4cde5d9212794c6",
                "md5": "bc258c9b1e13146172c8c4c8e0b8b940",
                "sha256": "057be5188d5b8eda2938c42c85ebad0dc42c5894a6e354689ff83473b9689bd4"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc258c9b1e13146172c8c4c8e0b8b940",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2702854,
            "upload_time": "2024-03-14T14:27:07",
            "upload_time_iso_8601": "2024-03-14T14:27:07.263947Z",
            "url": "https://files.pythonhosted.org/packages/9e/87/3d52a0f8c0b716819d2b1f63eef46a9069f037ffe49ae4cde5d9212794c6/pyEDFlib-0.1.37-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9da12f3a0ccf26a1f7fee95b3355bd4f4798a13b0dfb8a5f9c1cd8dca09f20f9",
                "md5": "0dcf431da1d8eedd195f3b5fa704314a",
                "sha256": "d83e4a8370efe81d7e831f94e192f56a59265e4af6127c89f99e6d9dd006b04b"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "0dcf431da1d8eedd195f3b5fa704314a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2182136,
            "upload_time": "2024-03-14T14:27:08",
            "upload_time_iso_8601": "2024-03-14T14:27:08.751578Z",
            "url": "https://files.pythonhosted.org/packages/9d/a1/2f3a0ccf26a1f7fee95b3355bd4f4798a13b0dfb8a5f9c1cd8dca09f20f9/pyEDFlib-0.1.37-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bce0e48f7c7af85faf9376d0476e01daf50eb81465d7e04391507f0c152b690",
                "md5": "a2e8a46489f91bcfc23aad86844e824e",
                "sha256": "674aa4b78757839c2f1300bc7b8c2bd4352169273f013b77b6e7487cc6abe2cf"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a2e8a46489f91bcfc23aad86844e824e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2194564,
            "upload_time": "2024-03-14T14:27:10",
            "upload_time_iso_8601": "2024-03-14T14:27:10.217360Z",
            "url": "https://files.pythonhosted.org/packages/8b/ce/0e48f7c7af85faf9376d0476e01daf50eb81465d7e04391507f0c152b690/pyEDFlib-0.1.37-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e47c8873cd94b0cfb4a7a64f6fbcdf66048b8693b7dc36417aa55b70061e0f7f",
                "md5": "54f72257b88a80f3613fe3a01e745711",
                "sha256": "a19328d331596757579b1d49cd80de22d55205543e0263e24adee727d39aa222"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54f72257b88a80f3613fe3a01e745711",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2210136,
            "upload_time": "2024-03-14T14:27:11",
            "upload_time_iso_8601": "2024-03-14T14:27:11.703396Z",
            "url": "https://files.pythonhosted.org/packages/e4/7c/8873cd94b0cfb4a7a64f6fbcdf66048b8693b7dc36417aa55b70061e0f7f/pyEDFlib-0.1.37-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05587fce9a8cf8287c721a8309203909fe613c66eb6e69d814641b69dcf186dc",
                "md5": "75d4f6805eabf17ffbbdcf7a7a410abc",
                "sha256": "c2feff358f9aba7ca55d9e36b06cea69c7bcc82164d7a7dba0e7a7df93980699"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "75d4f6805eabf17ffbbdcf7a7a410abc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2204235,
            "upload_time": "2024-03-14T14:27:13",
            "upload_time_iso_8601": "2024-03-14T14:27:13.088852Z",
            "url": "https://files.pythonhosted.org/packages/05/58/7fce9a8cf8287c721a8309203909fe613c66eb6e69d814641b69dcf186dc/pyEDFlib-0.1.37-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00ab1fdd28519190d112272c47c8dee2a5a7b40b603055dd261032e91aa36ed0",
                "md5": "d492600561c5226dab6484c44711bfc0",
                "sha256": "c49839ef7fbba7b909965c821e89036fc224affe08503900403f4fca8d1c8f26"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d492600561c5226dab6484c44711bfc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2671385,
            "upload_time": "2024-03-14T14:27:14",
            "upload_time_iso_8601": "2024-03-14T14:27:14.577711Z",
            "url": "https://files.pythonhosted.org/packages/00/ab/1fdd28519190d112272c47c8dee2a5a7b40b603055dd261032e91aa36ed0/pyEDFlib-0.1.37-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "980698e15b5eefbf1e02f53d3932f1ea011a55999c983ab57ebf4fb10617752d",
                "md5": "df93efd1d135fc133a420e660d0a45c1",
                "sha256": "736f317c19bedcd9563906ff8e67d32a28086f936e79b9c5c968a91ec467710b"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df93efd1d135fc133a420e660d0a45c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2685158,
            "upload_time": "2024-03-14T14:27:15",
            "upload_time_iso_8601": "2024-03-14T14:27:15.997136Z",
            "url": "https://files.pythonhosted.org/packages/98/06/98e15b5eefbf1e02f53d3932f1ea011a55999c983ab57ebf4fb10617752d/pyEDFlib-0.1.37-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e97b8230ce87735c5a5e39f13c51ace59c5531be4bc7926123bac66099fdbddc",
                "md5": "4ebf0518d015c1160ba7bfa725a40828",
                "sha256": "e3591438b96da6da23d7ddad8f618dc1a61956b822456057346f155a0f615f26"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4ebf0518d015c1160ba7bfa725a40828",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2652289,
            "upload_time": "2024-03-14T14:27:17",
            "upload_time_iso_8601": "2024-03-14T14:27:17.441991Z",
            "url": "https://files.pythonhosted.org/packages/e9/7b/8230ce87735c5a5e39f13c51ace59c5531be4bc7926123bac66099fdbddc/pyEDFlib-0.1.37-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d94c75a8098d4ac7e6172c323d0408014318e3cd87a454e726e702d003044fa",
                "md5": "4f1fd6d7c105d67df41d8d1e3aca8d74",
                "sha256": "0e11a60ad04fc15b39464a4eba65ea2c789ab52c32b91228219b8b46ec42b2f4"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4f1fd6d7c105d67df41d8d1e3aca8d74",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2656848,
            "upload_time": "2024-03-14T14:27:18",
            "upload_time_iso_8601": "2024-03-14T14:27:18.947072Z",
            "url": "https://files.pythonhosted.org/packages/5d/94/c75a8098d4ac7e6172c323d0408014318e3cd87a454e726e702d003044fa/pyEDFlib-0.1.37-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf79cba30716761290a49c8ae315806dccc148afe9affdb65d4cc99acf840a7d",
                "md5": "13301e01a279bb0b3087633989264e43",
                "sha256": "008db0a8d1f574253c8256ac3a6e0f6d7772ac564ce112fd16cb511de1cf5688"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13301e01a279bb0b3087633989264e43",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2682888,
            "upload_time": "2024-03-14T14:27:20",
            "upload_time_iso_8601": "2024-03-14T14:27:20.604175Z",
            "url": "https://files.pythonhosted.org/packages/cf/79/cba30716761290a49c8ae315806dccc148afe9affdb65d4cc99acf840a7d/pyEDFlib-0.1.37-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94a98fda7e8ba7b7aa0e6133485fd81e81a9818d4d2237202f55a8b8050100af",
                "md5": "b3b878a6455b9f5f326c0e15427fab64",
                "sha256": "4e07cebf1434a181dbb501bd895470605738dda5d4ef2c825774245650ff3fcf"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b3b878a6455b9f5f326c0e15427fab64",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2181073,
            "upload_time": "2024-03-14T14:27:22",
            "upload_time_iso_8601": "2024-03-14T14:27:22.052964Z",
            "url": "https://files.pythonhosted.org/packages/94/a9/8fda7e8ba7b7aa0e6133485fd81e81a9818d4d2237202f55a8b8050100af/pyEDFlib-0.1.37-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe43134e9e6466eb0ef8911c3efcff7479f3e60163e493fa83923127f8be3a3f",
                "md5": "a05f80c3e6b35229f5856eda829f258b",
                "sha256": "463d76f1fc24c0cb214adf38f872140e375f02e693b095a3c420d699eac375bd"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a05f80c3e6b35229f5856eda829f258b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2193290,
            "upload_time": "2024-03-14T14:27:23",
            "upload_time_iso_8601": "2024-03-14T14:27:23.453121Z",
            "url": "https://files.pythonhosted.org/packages/fe/43/134e9e6466eb0ef8911c3efcff7479f3e60163e493fa83923127f8be3a3f/pyEDFlib-0.1.37-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0051848b92ae7fce27a528c5225687b4dd98c2f0693a9ab8d376d08109123e67",
                "md5": "a4088f4e17fdafc2d265312ff21bb298",
                "sha256": "75bd8a912f5d9d130ade21f7ad333778c57621a3bcf9ed3c1611c7c90f260e2d"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.37.tar.gz",
            "has_sig": false,
            "md5_digest": "a4088f4e17fdafc2d265312ff21bb298",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2148705,
            "upload_time": "2024-03-14T14:27:26",
            "upload_time_iso_8601": "2024-03-14T14:27:26.025099Z",
            "url": "https://files.pythonhosted.org/packages/00/51/848b92ae7fce27a528c5225687b4dd98c2f0693a9ab8d376d08109123e67/pyEDFlib-0.1.37.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-14 14:27:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "holgern",
    "github_project": "pyedflib",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "pyedflib"
}
        
Elapsed time: 3.94080s