pyEDFlib


NamepyEDFlib JSON
Version 0.1.38 PyPI version JSON
download
home_pagehttps://github.com/holgern/pyedflib
Summarylibrary to read/write EDF+/BDF+ files
upload_time2024-08-07 19:39:25
maintainerHolger Nahrstaedt
docs_urlNone
authorHolger Nahrstaedt
requires_pythonNone
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": null,
    "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/25/5f/8b63b5cc4f27526ffe99a21fee2531aa877d85d3ca84ec65101623d4c588/pyedflib-0.1.38.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.38",
    "project_urls": {
        "Homepage": "https://github.com/holgern/pyedflib"
    },
    "split_keywords": [
        "edflib",
        " european data format",
        " edf",
        " bdf",
        " edf+",
        " bdf+"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8fb39eedbdd0466a087e0fdce82ac51b67491d596886f375c05ada79c3c0396",
                "md5": "164a87efeb9544fcadcba47c51ea4c07",
                "sha256": "9b8e8b92d697f31c30d30b505e56b518d9f53a8d3372fdc74feeb0388ac8c319"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "164a87efeb9544fcadcba47c51ea4c07",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2207927,
            "upload_time": "2024-08-07T19:37:42",
            "upload_time_iso_8601": "2024-08-07T19:37:42.184134Z",
            "url": "https://files.pythonhosted.org/packages/f8/fb/39eedbdd0466a087e0fdce82ac51b67491d596886f375c05ada79c3c0396/pyEDFlib-0.1.38-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1871e0b2f900a26474446e9fc8f90bbe06d6fac620b6ef677cff9c0d3a6dc2ef",
                "md5": "099cd3f154054ffeb386ea21e8395683",
                "sha256": "2e851a344946752abaf9811a9cb3bc13f0d9cd08725c9871daee4e500babbee7"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "099cd3f154054ffeb386ea21e8395683",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2198551,
            "upload_time": "2024-08-07T19:37:46",
            "upload_time_iso_8601": "2024-08-07T19:37:46.710449Z",
            "url": "https://files.pythonhosted.org/packages/18/71/e0b2f900a26474446e9fc8f90bbe06d6fac620b6ef677cff9c0d3a6dc2ef/pyEDFlib-0.1.38-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3daa8b0d09b86772923ed43f4301a4a757d63addb684abeead1b92abe0d71c0",
                "md5": "8534251a5979724dc95e38c9b40b57c5",
                "sha256": "3dec3668f247d186b67a43764411f2f5f989968d1e4cce5b5bb50dcb068c7166"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8534251a5979724dc95e38c9b40b57c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2665147,
            "upload_time": "2024-08-07T19:37:48",
            "upload_time_iso_8601": "2024-08-07T19:37:48.604324Z",
            "url": "https://files.pythonhosted.org/packages/d3/da/a8b0d09b86772923ed43f4301a4a757d63addb684abeead1b92abe0d71c0/pyEDFlib-0.1.38-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "742cdb215a1f69f4de0d9a0d87e6f06f4bc80642ab7fe85f11578228c786e185",
                "md5": "a1baffd1dfcdaef4e7ed2af4368265c7",
                "sha256": "b9ec363d2549351e67046df6319468c1c4ef48120ed1d62c214de40a04a62b2b"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1baffd1dfcdaef4e7ed2af4368265c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2680752,
            "upload_time": "2024-08-07T19:37:50",
            "upload_time_iso_8601": "2024-08-07T19:37:50.550247Z",
            "url": "https://files.pythonhosted.org/packages/74/2c/db215a1f69f4de0d9a0d87e6f06f4bc80642ab7fe85f11578228c786e185/pyEDFlib-0.1.38-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17771819c8f6e98d6cd23bd27f2f837debe2e47372e11710f79d795f673a512a",
                "md5": "8f816910247533d2b59c0dcc3fcf4856",
                "sha256": "a4091585e38ce3a5ff8f5ec9b917fc3deb0787bc122cfd52bf40cf7e61ff10ec"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8f816910247533d2b59c0dcc3fcf4856",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2647141,
            "upload_time": "2024-08-07T19:37:52",
            "upload_time_iso_8601": "2024-08-07T19:37:52.034449Z",
            "url": "https://files.pythonhosted.org/packages/17/77/1819c8f6e98d6cd23bd27f2f837debe2e47372e11710f79d795f673a512a/pyEDFlib-0.1.38-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": "0e96e21c0917282d2ad580043a965abe4fa860f6fa3c4695d60b16e9aca4f9a2",
                "md5": "093741b4705c0ca98142785939cecf49",
                "sha256": "49cd5a8d8a9c0f2e21fe74ca6eca420617383d163f79142d34ff4c790a1faf49"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "093741b4705c0ca98142785939cecf49",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2642719,
            "upload_time": "2024-08-07T19:37:53",
            "upload_time_iso_8601": "2024-08-07T19:37:53.713258Z",
            "url": "https://files.pythonhosted.org/packages/0e/96/e21c0917282d2ad580043a965abe4fa860f6fa3c4695d60b16e9aca4f9a2/pyEDFlib-0.1.38-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de1011b7c5073c4b2aff1bb83fa4a3ae7e289b82a5170789f401f0c7bcc4f0d5",
                "md5": "39c65b11e02d60324bba5748c431dc45",
                "sha256": "47e037bc273f76bd6e7ab6284917a958797db6880933b21f11a23d7f076b250f"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39c65b11e02d60324bba5748c431dc45",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2663548,
            "upload_time": "2024-08-07T19:37:55",
            "upload_time_iso_8601": "2024-08-07T19:37:55.420929Z",
            "url": "https://files.pythonhosted.org/packages/de/10/11b7c5073c4b2aff1bb83fa4a3ae7e289b82a5170789f401f0c7bcc4f0d5/pyEDFlib-0.1.38-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1960779ee428a285f8efb75b3b5fbeba2eb10c8576fa2a3aa7e7bbf89bc72853",
                "md5": "32bd0310e20ae3a72e21d1361fa623f7",
                "sha256": "87cfaab20b67689965af98750b4427b8d5f5832967ad511e28c33a25122000e0"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "32bd0310e20ae3a72e21d1361fa623f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2181257,
            "upload_time": "2024-08-07T19:37:57",
            "upload_time_iso_8601": "2024-08-07T19:37:57.370037Z",
            "url": "https://files.pythonhosted.org/packages/19/60/779ee428a285f8efb75b3b5fbeba2eb10c8576fa2a3aa7e7bbf89bc72853/pyEDFlib-0.1.38-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64593dacf10d7ee76c3439e49021c3ec9815cde4eed3d8f850e99af45eeaaff1",
                "md5": "a484ad2a3f2b1c7eb7bafaa5172783c0",
                "sha256": "99c2f5382def5d3b0a7990c72ae219ccbd404b30a59f6ee08adabc1677e5605a"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a484ad2a3f2b1c7eb7bafaa5172783c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2192942,
            "upload_time": "2024-08-07T19:37:59",
            "upload_time_iso_8601": "2024-08-07T19:37:59.404762Z",
            "url": "https://files.pythonhosted.org/packages/64/59/3dacf10d7ee76c3439e49021c3ec9815cde4eed3d8f850e99af45eeaaff1/pyEDFlib-0.1.38-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d2147cc7f282474c361536edf04a974e15149eae959f7e1ae98a02c26c10156",
                "md5": "b3c487d2770ddc7dcc7a92fc9329185d",
                "sha256": "3055460e7b8f4bfb5e950ba5032017006654cfbc44ee2c9bd0a1cf966d2f9dde"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3c487d2770ddc7dcc7a92fc9329185d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2209563,
            "upload_time": "2024-08-07T19:38:01",
            "upload_time_iso_8601": "2024-08-07T19:38:01.468825Z",
            "url": "https://files.pythonhosted.org/packages/9d/21/47cc7f282474c361536edf04a974e15149eae959f7e1ae98a02c26c10156/pyEDFlib-0.1.38-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b5322c30f2049fa2624b86dee9e2625faaeac0233c1417886bcb294467d00be",
                "md5": "ced03d50ca4b78a193d9661ab1e18a7c",
                "sha256": "865fcbb658925b2f971672d8aef6c0482abee340988e75f4d16815aa8ee0a0bf"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ced03d50ca4b78a193d9661ab1e18a7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2199442,
            "upload_time": "2024-08-07T19:38:03",
            "upload_time_iso_8601": "2024-08-07T19:38:03.080211Z",
            "url": "https://files.pythonhosted.org/packages/2b/53/22c30f2049fa2624b86dee9e2625faaeac0233c1417886bcb294467d00be/pyEDFlib-0.1.38-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77394b6294dccbc85aeee9b0a553a046605e6b441c8ed0322aa106d134773ed0",
                "md5": "4fe27701be7796cd4a146613e257bae6",
                "sha256": "549cb7188235a41ccd9b1f2acbe614739d5ad01d05bb1d28c750205c2a44c4dd"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4fe27701be7796cd4a146613e257bae6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2698828,
            "upload_time": "2024-08-07T19:38:06",
            "upload_time_iso_8601": "2024-08-07T19:38:06.138658Z",
            "url": "https://files.pythonhosted.org/packages/77/39/4b6294dccbc85aeee9b0a553a046605e6b441c8ed0322aa106d134773ed0/pyEDFlib-0.1.38-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bece7f651d44bacd8390e23dcd8f2e2e3a49541f2698c1d0ee357eaf882c12d",
                "md5": "63e51d3f0ae7c3846fc510d8ea125451",
                "sha256": "7a44ac4ddf9c75116b3d60955a6ef70c2d31f7028c5b60aad11cb4bc6ea0a82c"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "63e51d3f0ae7c3846fc510d8ea125451",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2712161,
            "upload_time": "2024-08-07T19:38:08",
            "upload_time_iso_8601": "2024-08-07T19:38:08.141416Z",
            "url": "https://files.pythonhosted.org/packages/8b/ec/e7f651d44bacd8390e23dcd8f2e2e3a49541f2698c1d0ee357eaf882c12d/pyEDFlib-0.1.38-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8376135c407661a409ee1db676738aec60e92c8c77d8179e76990e4cbc234c49",
                "md5": "372add9a6e0cd982626e49368568ba3f",
                "sha256": "e4d96733cdf24bf738c9bee2398bff3c566ababe60441a24fb15d4af39939140"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "372add9a6e0cd982626e49368568ba3f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2685520,
            "upload_time": "2024-08-07T19:38:09",
            "upload_time_iso_8601": "2024-08-07T19:38:09.617475Z",
            "url": "https://files.pythonhosted.org/packages/83/76/135c407661a409ee1db676738aec60e92c8c77d8179e76990e4cbc234c49/pyEDFlib-0.1.38-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": "cfce86a2b0e04773a17e7c662b270199c52b84f92f4ab835a07d059e3ac53e24",
                "md5": "26946c376cba531bf730b60c8750fc02",
                "sha256": "89b8100c6e9bf5a94a86ea09d8a69181b30d6f9b3726541630913a562de73672"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "26946c376cba531bf730b60c8750fc02",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2678912,
            "upload_time": "2024-08-07T19:38:11",
            "upload_time_iso_8601": "2024-08-07T19:38:11.041342Z",
            "url": "https://files.pythonhosted.org/packages/cf/ce/86a2b0e04773a17e7c662b270199c52b84f92f4ab835a07d059e3ac53e24/pyEDFlib-0.1.38-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90f114ae1f1ee56a381c509fbe98a0e16fc537ca43362a3a1e8a008451b7e34d",
                "md5": "9392ce9ab14246bde862a83cc13f9d2e",
                "sha256": "af3b12b31d0d8647466f41b9887304c38b45e617b0b25ced7f0a91b739ff0196"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9392ce9ab14246bde862a83cc13f9d2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2689136,
            "upload_time": "2024-08-07T19:38:12",
            "upload_time_iso_8601": "2024-08-07T19:38:12.969094Z",
            "url": "https://files.pythonhosted.org/packages/90/f1/14ae1f1ee56a381c509fbe98a0e16fc537ca43362a3a1e8a008451b7e34d/pyEDFlib-0.1.38-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4129d6559fb9e5c9deeab4e326c07a60f2a8910862e70845b51599404f91bf7",
                "md5": "91234a6aeac10743cf40adaf522e3ff5",
                "sha256": "1581a132d94c0bd5d7bb9cf08446faf41e89b8cb6ee1bd9946cc3c08d870db89"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "91234a6aeac10743cf40adaf522e3ff5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2181248,
            "upload_time": "2024-08-07T19:38:14",
            "upload_time_iso_8601": "2024-08-07T19:38:14.421117Z",
            "url": "https://files.pythonhosted.org/packages/e4/12/9d6559fb9e5c9deeab4e326c07a60f2a8910862e70845b51599404f91bf7/pyEDFlib-0.1.38-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c921db3a777e23cf160f9dc20f20a4a09b6414698b3df94977b75e4078da942f",
                "md5": "ea57d6511fedcd2f57e6bf2a6804896c",
                "sha256": "4c045c2161c6c683a13826949032c0eeb4116b2285d92436685222d3e861bfd1"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ea57d6511fedcd2f57e6bf2a6804896c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2193195,
            "upload_time": "2024-08-07T19:38:16",
            "upload_time_iso_8601": "2024-08-07T19:38:16.369051Z",
            "url": "https://files.pythonhosted.org/packages/c9/21/db3a777e23cf160f9dc20f20a4a09b6414698b3df94977b75e4078da942f/pyEDFlib-0.1.38-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "819777ed8c043d5a4159f925c538b8732959e630c4f30b1ae3d9836a5f85064d",
                "md5": "f288e67145b21a3ee6807d1a22e706a7",
                "sha256": "3f24bd990f79ce0f1896132b74041cf20986975e9cc5aae8238d3dc45351c0e3"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f288e67145b21a3ee6807d1a22e706a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2211536,
            "upload_time": "2024-08-07T19:38:17",
            "upload_time_iso_8601": "2024-08-07T19:38:17.700481Z",
            "url": "https://files.pythonhosted.org/packages/81/97/77ed8c043d5a4159f925c538b8732959e630c4f30b1ae3d9836a5f85064d/pyEDFlib-0.1.38-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f37921524fca6f2e873984f2a612fb73bf680c173e0012380e2cd83b87b73cb",
                "md5": "d540070741f1cffff449ce12abb63d5c",
                "sha256": "9b3f55b8bc712d615a9bbac5d47cbc7a737ee64db19436baaf4769b79a9dcab3"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d540070741f1cffff449ce12abb63d5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2200748,
            "upload_time": "2024-08-07T19:38:19",
            "upload_time_iso_8601": "2024-08-07T19:38:19.470695Z",
            "url": "https://files.pythonhosted.org/packages/5f/37/921524fca6f2e873984f2a612fb73bf680c173e0012380e2cd83b87b73cb/pyEDFlib-0.1.38-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6949445691095fe7c01906c40a9a66dbe6cd1b926af24ba3cc3852943d8aa454",
                "md5": "988ed62adbd9495e1544691cdf3d2a26",
                "sha256": "b489405e332b875ee253d1a267055d2da2e29a2f38ce7beff891f0bb6edfa615"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "988ed62adbd9495e1544691cdf3d2a26",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2701660,
            "upload_time": "2024-08-07T19:38:20",
            "upload_time_iso_8601": "2024-08-07T19:38:20.823641Z",
            "url": "https://files.pythonhosted.org/packages/69/49/445691095fe7c01906c40a9a66dbe6cd1b926af24ba3cc3852943d8aa454/pyEDFlib-0.1.38-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b27b5052b3fd6746f41965da9fdcee598808f92e9bff2893f40da283023efbd",
                "md5": "97da4cf04113c3cf1fa85eb363daa866",
                "sha256": "c8464d6b42c240a19c67fbf02e05011bc055c5b702e9021376987822ece31c05"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97da4cf04113c3cf1fa85eb363daa866",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2716604,
            "upload_time": "2024-08-07T19:38:22",
            "upload_time_iso_8601": "2024-08-07T19:38:22.591151Z",
            "url": "https://files.pythonhosted.org/packages/3b/27/b5052b3fd6746f41965da9fdcee598808f92e9bff2893f40da283023efbd/pyEDFlib-0.1.38-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49e1765b866c9b07c2563a967af16e775955a081885a91c7fa98f6df4b3ae394",
                "md5": "287f830030609ac718052caba24558cd",
                "sha256": "1bd06e28e67e4ecd623c1db32cdd6cb333c81ab0d247ab51a9be4d62784ad056"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "287f830030609ac718052caba24558cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2696137,
            "upload_time": "2024-08-07T19:38:24",
            "upload_time_iso_8601": "2024-08-07T19:38:24.876774Z",
            "url": "https://files.pythonhosted.org/packages/49/e1/765b866c9b07c2563a967af16e775955a081885a91c7fa98f6df4b3ae394/pyEDFlib-0.1.38-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d0c2700631b5e9551b75d34837fc1b07bce1b49d292cc60a59c0e6e9430442d",
                "md5": "3656d1bc6977b61a85050c64163f4d8b",
                "sha256": "107825562d03e24b4fdfff9eb6d3eccbe6e4229898b1b683e6cac693b5bcb133"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "3656d1bc6977b61a85050c64163f4d8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2181752,
            "upload_time": "2024-08-07T19:38:26",
            "upload_time_iso_8601": "2024-08-07T19:38:26.305353Z",
            "url": "https://files.pythonhosted.org/packages/6d/0c/2700631b5e9551b75d34837fc1b07bce1b49d292cc60a59c0e6e9430442d/pyEDFlib-0.1.38-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "895996b153d2bb0e06566a46fba124aeba367a755635938e6c61ff4d9f3a8ac7",
                "md5": "67d73a7831bf58178c527492a99e3d2e",
                "sha256": "6a49c6bd5e5ca265fec0f00b60e10516d6b6b6ff3e3d4824fd9390e8a922fe6d"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "67d73a7831bf58178c527492a99e3d2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2194520,
            "upload_time": "2024-08-07T19:38:27",
            "upload_time_iso_8601": "2024-08-07T19:38:27.861513Z",
            "url": "https://files.pythonhosted.org/packages/89/59/96b153d2bb0e06566a46fba124aeba367a755635938e6c61ff4d9f3a8ac7/pyEDFlib-0.1.38-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2458edcc14f0785ba53dae8534b29e1d3383456adb190967e9c9812dcd8a9fda",
                "md5": "d9a97003d845ae734c5a1627d8794f23",
                "sha256": "9c7dbac3c6857c780b5fb0b0f8f5bbc064997d28ee6a6fec860a78d069a8e304"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9a97003d845ae734c5a1627d8794f23",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2205025,
            "upload_time": "2024-08-07T19:38:30",
            "upload_time_iso_8601": "2024-08-07T19:38:30.000974Z",
            "url": "https://files.pythonhosted.org/packages/24/58/edcc14f0785ba53dae8534b29e1d3383456adb190967e9c9812dcd8a9fda/pyEDFlib-0.1.38-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0b2acbaacf58420d8d0b1b692557f5c20fa93558098e520f3c1f7461eb6aa9f",
                "md5": "66b81e1405f2e3c7853e2579daf8138a",
                "sha256": "755fec5279f6f2fe41561f7065aa5100b1370e28cda15f60977e615fcd22577a"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66b81e1405f2e3c7853e2579daf8138a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2641330,
            "upload_time": "2024-08-07T19:38:31",
            "upload_time_iso_8601": "2024-08-07T19:38:31.926603Z",
            "url": "https://files.pythonhosted.org/packages/f0/b2/acbaacf58420d8d0b1b692557f5c20fa93558098e520f3c1f7461eb6aa9f/pyEDFlib-0.1.38-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf1b63b60b6f677b3024ef364fab70f21f2bfa262fd75945bfd35d97481422b7",
                "md5": "d69ae9b15989bbbb75a60b1b576189d4",
                "sha256": "dcfbf7877ad8535dc2fc5f3a771b2ea4552cba32057b2f1bded093203767eb35"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d69ae9b15989bbbb75a60b1b576189d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2602275,
            "upload_time": "2024-08-07T19:38:34",
            "upload_time_iso_8601": "2024-08-07T19:38:34.190212Z",
            "url": "https://files.pythonhosted.org/packages/cf/1b/63b60b6f677b3024ef364fab70f21f2bfa262fd75945bfd35d97481422b7/pyEDFlib-0.1.38-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": "2ef303adb167980702bec7d5907e3806bda42d7e81e14410ac31babcccc9aca3",
                "md5": "6695e581aa0fa067ad375e2b8eae01f2",
                "sha256": "1624ee681b94632e385a9186ba7b5fbe4becfbfbd43ed74e81cc1fe1f73253c4"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6695e581aa0fa067ad375e2b8eae01f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2606447,
            "upload_time": "2024-08-07T19:38:35",
            "upload_time_iso_8601": "2024-08-07T19:38:35.665514Z",
            "url": "https://files.pythonhosted.org/packages/2e/f3/03adb167980702bec7d5907e3806bda42d7e81e14410ac31babcccc9aca3/pyEDFlib-0.1.38-cp36-cp36m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b27efda1ca58a2e0f1d543cfb523bf0d4019e46e1edc040fe9e4fe8acd062e40",
                "md5": "eb483aef15121f4de193ffef6d56650c",
                "sha256": "7d7536e38217b6cbab0f9ec80a7fa6314e4cf8f0f69d974e9781f99ba4708ff5"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb483aef15121f4de193ffef6d56650c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2618654,
            "upload_time": "2024-08-07T19:38:37",
            "upload_time_iso_8601": "2024-08-07T19:38:37.437409Z",
            "url": "https://files.pythonhosted.org/packages/b2/7e/fda1ca58a2e0f1d543cfb523bf0d4019e46e1edc040fe9e4fe8acd062e40/pyEDFlib-0.1.38-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef48381251c27a506d68bbf80681183744d23b227708ac48f3d99481f0bd2979",
                "md5": "f0efa057cf2d4d7b3eef745175f4d68c",
                "sha256": "3a182a4ab9722a46117ffd46f1efcb266e666d586a3236258ef6e65f57626658"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "f0efa057cf2d4d7b3eef745175f4d68c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2188431,
            "upload_time": "2024-08-07T19:38:39",
            "upload_time_iso_8601": "2024-08-07T19:38:39.447453Z",
            "url": "https://files.pythonhosted.org/packages/ef/48/381251c27a506d68bbf80681183744d23b227708ac48f3d99481f0bd2979/pyEDFlib-0.1.38-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0deb8e9313db030e44fe8f1235ff285e46ceff1f89a8b508628daef5b145ce7",
                "md5": "a76d61c35db36c2821c717ac4be9b43b",
                "sha256": "9cda2632f2cc9e4b3094e08aeffd619c234335da69d66759f56f13cbade9c0f7"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a76d61c35db36c2821c717ac4be9b43b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2205784,
            "upload_time": "2024-08-07T19:38:40",
            "upload_time_iso_8601": "2024-08-07T19:38:40.799817Z",
            "url": "https://files.pythonhosted.org/packages/f0/de/b8e9313db030e44fe8f1235ff285e46ceff1f89a8b508628daef5b145ce7/pyEDFlib-0.1.38-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "875d3a9db9283921534a6db077fb5926a778e67aea5de80f09732e872bc515c6",
                "md5": "38e4587567eb5d4bde1174359206be82",
                "sha256": "0adbb2d131fac959ee7140b9925322733819e4a60d84fb4f2a4c7f56aa8f2c94"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38e4587567eb5d4bde1174359206be82",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2207686,
            "upload_time": "2024-08-07T19:38:42",
            "upload_time_iso_8601": "2024-08-07T19:38:42.412828Z",
            "url": "https://files.pythonhosted.org/packages/87/5d/3a9db9283921534a6db077fb5926a778e67aea5de80f09732e872bc515c6/pyEDFlib-0.1.38-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b95eb63392911d9cdb51d7e1e75187797d160f4848f570198b300e07145020d",
                "md5": "7067f1eecdf2278d31f0dfed6129e682",
                "sha256": "e650fe1597a0ef01a619d0a5164c5bfb90781ccc963c2f2533bb0c4cb10891ce"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7067f1eecdf2278d31f0dfed6129e682",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2640029,
            "upload_time": "2024-08-07T19:38:43",
            "upload_time_iso_8601": "2024-08-07T19:38:43.761174Z",
            "url": "https://files.pythonhosted.org/packages/1b/95/eb63392911d9cdb51d7e1e75187797d160f4848f570198b300e07145020d/pyEDFlib-0.1.38-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b009793f82b197401049bc272471c9f5359926f9c461a53e7b80c7e7f35c99f",
                "md5": "e6a300c0523e56dfea88647dad0901e3",
                "sha256": "21371686690844da570b4c292428be5cef5f07dd9b5a24d9410be2de0076ead5"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e6a300c0523e56dfea88647dad0901e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2655693,
            "upload_time": "2024-08-07T19:38:45",
            "upload_time_iso_8601": "2024-08-07T19:38:45.199916Z",
            "url": "https://files.pythonhosted.org/packages/4b/00/9793f82b197401049bc272471c9f5359926f9c461a53e7b80c7e7f35c99f/pyEDFlib-0.1.38-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3af9791a42b33466c0b788e06504adabd94b6b0040304e145b8409bcfa8a9b0d",
                "md5": "d0a523f1106234928c0275f8f9a6b320",
                "sha256": "8bd68ad7d634bfe34d97a42956cb0c2dbc184b841502d242c6be69debf99d4da"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d0a523f1106234928c0275f8f9a6b320",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2618087,
            "upload_time": "2024-08-07T19:38:46",
            "upload_time_iso_8601": "2024-08-07T19:38:46.883702Z",
            "url": "https://files.pythonhosted.org/packages/3a/f9/791a42b33466c0b788e06504adabd94b6b0040304e145b8409bcfa8a9b0d/pyEDFlib-0.1.38-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": "13dc1483ca59b40ec799379413d97e542a5ce0b402bd07c0c1e93bc6baff3162",
                "md5": "dc5765e59b6b53415e9f96dd8cfec39a",
                "sha256": "0b0859259c9a76e0b240ac9483bfd0bda12c9999f76ffce1619747c3954b346d"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "dc5765e59b6b53415e9f96dd8cfec39a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2614696,
            "upload_time": "2024-08-07T19:38:48",
            "upload_time_iso_8601": "2024-08-07T19:38:48.730128Z",
            "url": "https://files.pythonhosted.org/packages/13/dc/1483ca59b40ec799379413d97e542a5ce0b402bd07c0c1e93bc6baff3162/pyEDFlib-0.1.38-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1659317431ce8e0316386442f14bde44886925104b7bb1b9de0c309298488715",
                "md5": "627e2bec98332137ce84e554922ee1bb",
                "sha256": "d7897b56d6fb93dcb4442fde35948d02f6003d7f739bed980d21c7f21066687c"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "627e2bec98332137ce84e554922ee1bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2638207,
            "upload_time": "2024-08-07T19:38:50",
            "upload_time_iso_8601": "2024-08-07T19:38:50.598586Z",
            "url": "https://files.pythonhosted.org/packages/16/59/317431ce8e0316386442f14bde44886925104b7bb1b9de0c309298488715/pyEDFlib-0.1.38-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a12803668eabdd8d5c7caa3c064acb7c2da9ee2b239eb98d0fd50984283daeb",
                "md5": "3a2546c62d0ed513d552a0a23f5f331d",
                "sha256": "19f5eb7c28628b7cf966e0a553e7286900d35b01d0b5600cd8aa44e731df2249"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "3a2546c62d0ed513d552a0a23f5f331d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2181062,
            "upload_time": "2024-08-07T19:38:52",
            "upload_time_iso_8601": "2024-08-07T19:38:52.522594Z",
            "url": "https://files.pythonhosted.org/packages/4a/12/803668eabdd8d5c7caa3c064acb7c2da9ee2b239eb98d0fd50984283daeb/pyEDFlib-0.1.38-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f907be80ae01e98a61349005f998885d6d4c15e7ccc53e32d5c91651be6b59d4",
                "md5": "4920563d62c8f3fa1970cba5418d1058",
                "sha256": "da053c6e14f3dac16b78c5a3a75d1551bf1b3df73b65c04c7d44ebbd41064dfa"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4920563d62c8f3fa1970cba5418d1058",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2193290,
            "upload_time": "2024-08-07T19:38:54",
            "upload_time_iso_8601": "2024-08-07T19:38:54.141349Z",
            "url": "https://files.pythonhosted.org/packages/f9/07/be80ae01e98a61349005f998885d6d4c15e7ccc53e32d5c91651be6b59d4/pyEDFlib-0.1.38-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a22210e13ab611366efdccf95547decec4576b433f7487929817511f9887387",
                "md5": "3377d7ebad73b4354460ed07f9c9cfb1",
                "sha256": "8fced328a9e3c90cfa0bec041c681780bffd63a0057bca6cb5def6f402a2dc5f"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3377d7ebad73b4354460ed07f9c9cfb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2208578,
            "upload_time": "2024-08-07T19:38:56",
            "upload_time_iso_8601": "2024-08-07T19:38:56.333355Z",
            "url": "https://files.pythonhosted.org/packages/1a/22/210e13ab611366efdccf95547decec4576b433f7487929817511f9887387/pyEDFlib-0.1.38-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03d30b826a88cdbbf5fee8e7b6677d9fa4ec0502d96f72037eccf839b054ab38",
                "md5": "357d9731c3f9b88a934efa51d767db98",
                "sha256": "3f9566f12a32bbf6ae1a251c671fd714e47a5ed3bd5fa42a4f0c4e96b458a97f"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "357d9731c3f9b88a934efa51d767db98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2198919,
            "upload_time": "2024-08-07T19:38:57",
            "upload_time_iso_8601": "2024-08-07T19:38:57.688478Z",
            "url": "https://files.pythonhosted.org/packages/03/d3/0b826a88cdbbf5fee8e7b6677d9fa4ec0502d96f72037eccf839b054ab38/pyEDFlib-0.1.38-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ac8ffd6c4959592871a9bd4a844aa2acd14394f66c56c5bdaf51411b62db777",
                "md5": "d1528dd7b0a810cb6746927aeea70fbf",
                "sha256": "3c34caa7b2752085da09c5689dee1c8f405ff3b81a3053c1c8f6f1c7de35f0b1"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d1528dd7b0a810cb6746927aeea70fbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2674133,
            "upload_time": "2024-08-07T19:38:59",
            "upload_time_iso_8601": "2024-08-07T19:38:59.032919Z",
            "url": "https://files.pythonhosted.org/packages/7a/c8/ffd6c4959592871a9bd4a844aa2acd14394f66c56c5bdaf51411b62db777/pyEDFlib-0.1.38-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "089aa171100533a4cdaf24470e986a178664304c64b73498098acf3a5be336ef",
                "md5": "3af1f84fd40e4ca345f3113884c92b1d",
                "sha256": "55886a301665b5f8f908e8dbcd6f47b748430e7636017c87293516ed2bc07ce5"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3af1f84fd40e4ca345f3113884c92b1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2688435,
            "upload_time": "2024-08-07T19:39:01",
            "upload_time_iso_8601": "2024-08-07T19:39:01.242432Z",
            "url": "https://files.pythonhosted.org/packages/08/9a/a171100533a4cdaf24470e986a178664304c64b73498098acf3a5be336ef/pyEDFlib-0.1.38-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3693b8f6c9198b1fe1b3e30a2a25ba522f2a391d3408bafbb111f99a33410552",
                "md5": "7ebb05375176da8b188ca81785dd5a5e",
                "sha256": "b3fcd854d2d82c3d45cb9c36f6fc7fd17fdc20a9b15858b781e6fb98853a9e87"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7ebb05375176da8b188ca81785dd5a5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2652291,
            "upload_time": "2024-08-07T19:39:02",
            "upload_time_iso_8601": "2024-08-07T19:39:02.803384Z",
            "url": "https://files.pythonhosted.org/packages/36/93/b8f6c9198b1fe1b3e30a2a25ba522f2a391d3408bafbb111f99a33410552/pyEDFlib-0.1.38-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": "2b2b2ae30caf646637601ac8bba8d8723f4a63aa73afbb2b1c4e4a1ca4c41280",
                "md5": "4124911762ffdf2cd35adb04bdde7e72",
                "sha256": "4ef60431484671e2fd6b9a7620630c0e1f8955abbbca820a30c40df44c8a1158"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4124911762ffdf2cd35adb04bdde7e72",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2651518,
            "upload_time": "2024-08-07T19:39:04",
            "upload_time_iso_8601": "2024-08-07T19:39:04.390159Z",
            "url": "https://files.pythonhosted.org/packages/2b/2b/2ae30caf646637601ac8bba8d8723f4a63aa73afbb2b1c4e4a1ca4c41280/pyEDFlib-0.1.38-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1645842180fe15b31aba0dc4321d41f7db3cf6e1249d15f10d48f051ab5adfc7",
                "md5": "b1f9ff6fb1aec25b7ba1fee1e0cac57b",
                "sha256": "7a7e9b73252b72917b3232eb9e748d8f1cadffdc71450b5e1423689a861094bc"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1f9ff6fb1aec25b7ba1fee1e0cac57b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2669374,
            "upload_time": "2024-08-07T19:39:05",
            "upload_time_iso_8601": "2024-08-07T19:39:05.957119Z",
            "url": "https://files.pythonhosted.org/packages/16/45/842180fe15b31aba0dc4321d41f7db3cf6e1249d15f10d48f051ab5adfc7/pyEDFlib-0.1.38-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69d6758385e7e7048f702fa45815944711c1b620195f8b60f58c9d515a10eb41",
                "md5": "9ac93ccc81b562b740c3cf0bc24caf49",
                "sha256": "e0259ab0a09b5ed4651149a0d990e3b77bdd5b2e7c7be45728df6c6bd1fe75e3"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "9ac93ccc81b562b740c3cf0bc24caf49",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2182472,
            "upload_time": "2024-08-07T19:39:07",
            "upload_time_iso_8601": "2024-08-07T19:39:07.384812Z",
            "url": "https://files.pythonhosted.org/packages/69/d6/758385e7e7048f702fa45815944711c1b620195f8b60f58c9d515a10eb41/pyEDFlib-0.1.38-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8727d4ce48478f7d59e25a1b60852c328ce5e31c0589ab87cbae1f730000df41",
                "md5": "eddce180bf765db8f7e5f926878aeaf2",
                "sha256": "01d488d72b394a859a4b3de1ef6d29770e83bcc837f9f87a1a340b3d8bbf6b3a"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eddce180bf765db8f7e5f926878aeaf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2194781,
            "upload_time": "2024-08-07T19:39:08",
            "upload_time_iso_8601": "2024-08-07T19:39:08.949411Z",
            "url": "https://files.pythonhosted.org/packages/87/27/d4ce48478f7d59e25a1b60852c328ce5e31c0589ab87cbae1f730000df41/pyEDFlib-0.1.38-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3481ddf29d7ffbebc05e5d8a807016529449f958406b8442e7fc12f7d90acb9c",
                "md5": "edc262dd2a57d12be2f906cadc4073c6",
                "sha256": "767f5d0e74c033f3a4f093b82549d572e7cfac73542c058b248820a6b734aac9"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edc262dd2a57d12be2f906cadc4073c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2208613,
            "upload_time": "2024-08-07T19:39:10",
            "upload_time_iso_8601": "2024-08-07T19:39:10.290982Z",
            "url": "https://files.pythonhosted.org/packages/34/81/ddf29d7ffbebc05e5d8a807016529449f958406b8442e7fc12f7d90acb9c/pyEDFlib-0.1.38-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "928ee959d994946bd06348f35bed4ea7a546101a2268c6ed1c1337e43131ae34",
                "md5": "d7d05553876a45157390198a2ce999f5",
                "sha256": "9d58a692cad872f2f72bc0d920fed2ecf5da10856f1501c0ed68874846fe5a04"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d7d05553876a45157390198a2ce999f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2199062,
            "upload_time": "2024-08-07T19:39:11",
            "upload_time_iso_8601": "2024-08-07T19:39:11.758365Z",
            "url": "https://files.pythonhosted.org/packages/92/8e/e959d994946bd06348f35bed4ea7a546101a2268c6ed1c1337e43131ae34/pyEDFlib-0.1.38-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31186f6fa7be900d57dfc76f786941c8dba507736439543aa47544682c1d709c",
                "md5": "9ba9620c3064edc31a2f822a25429e93",
                "sha256": "aaf057938e19e87ef72cf04f204df41e288f67885a090d2356a7a18373d5a105"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ba9620c3064edc31a2f822a25429e93",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2668267,
            "upload_time": "2024-08-07T19:39:13",
            "upload_time_iso_8601": "2024-08-07T19:39:13.347783Z",
            "url": "https://files.pythonhosted.org/packages/31/18/6f6fa7be900d57dfc76f786941c8dba507736439543aa47544682c1d709c/pyEDFlib-0.1.38-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccc40e0e02f82c6d3f6c3204eab62f7c1f43c6c4f594d54de36920398b6008d6",
                "md5": "38f992cf5f3a6701c26216bdc2602ddd",
                "sha256": "61f9360ef25595ece3c4c7cdb9b0123a09ec3d23c3b1339707fc1b05432899a6"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38f992cf5f3a6701c26216bdc2602ddd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2682899,
            "upload_time": "2024-08-07T19:39:14",
            "upload_time_iso_8601": "2024-08-07T19:39:14.777125Z",
            "url": "https://files.pythonhosted.org/packages/cc/c4/0e0e02f82c6d3f6c3204eab62f7c1f43c6c4f594d54de36920398b6008d6/pyEDFlib-0.1.38-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd3b89c598d3c96a12a6b51fb49a0be7b86c93c83fbef0f5368179a3f948ff15",
                "md5": "a08a6348e1c6a8652ac1b64bb19832dc",
                "sha256": "a9bf7b8eeca4f273d4ce3c50e8a4d595a8a59e94e2783033511474757e809604"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a08a6348e1c6a8652ac1b64bb19832dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2649443,
            "upload_time": "2024-08-07T19:39:16",
            "upload_time_iso_8601": "2024-08-07T19:39:16.163263Z",
            "url": "https://files.pythonhosted.org/packages/fd/3b/89c598d3c96a12a6b51fb49a0be7b86c93c83fbef0f5368179a3f948ff15/pyEDFlib-0.1.38-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": "7f2c0ef09b461937a39d2799e420261c05fe99d734fc1b7751b25759097c0eb6",
                "md5": "ece73291c4d46ffdb40130b638506196",
                "sha256": "0b13ad2cb0f6e7628c04164498ac0ee12ae792c0f2a61c479d6093eb8b198488"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ece73291c4d46ffdb40130b638506196",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2645119,
            "upload_time": "2024-08-07T19:39:18",
            "upload_time_iso_8601": "2024-08-07T19:39:18.243441Z",
            "url": "https://files.pythonhosted.org/packages/7f/2c/0ef09b461937a39d2799e420261c05fe99d734fc1b7751b25759097c0eb6/pyEDFlib-0.1.38-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69f5259284c8b49dda108ea82fa5ba056a740f367134767268add810864c1de1",
                "md5": "738ca4795ec7e5c53fb90eb13f32cc6a",
                "sha256": "4f6718a0b7c83e5ca1ad78fd7aecee70df0dfb6b63a354f66effd5d6277b9ecf"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "738ca4795ec7e5c53fb90eb13f32cc6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2665961,
            "upload_time": "2024-08-07T19:39:20",
            "upload_time_iso_8601": "2024-08-07T19:39:20.817480Z",
            "url": "https://files.pythonhosted.org/packages/69/f5/259284c8b49dda108ea82fa5ba056a740f367134767268add810864c1de1/pyEDFlib-0.1.38-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05e4cb03986a895c4f655e5a26b2ca4a9e78b4968a6dd246adc86d7a94dec747",
                "md5": "879240d03752c3153bdceb3142cfc247",
                "sha256": "0695960ce011d9efa4c8e36a9ffc05f04144a6104ae32911cf674f805f7b817e"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "879240d03752c3153bdceb3142cfc247",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2181566,
            "upload_time": "2024-08-07T19:39:22",
            "upload_time_iso_8601": "2024-08-07T19:39:22.243996Z",
            "url": "https://files.pythonhosted.org/packages/05/e4/cb03986a895c4f655e5a26b2ca4a9e78b4968a6dd246adc86d7a94dec747/pyEDFlib-0.1.38-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2223807949be999fad2f817a6f9d8496763ae557d5790b5f9be9f8c09ee6cc3",
                "md5": "ab74287c5a50dc553edf2c69ee0073c8",
                "sha256": "05d38a182bef6efdedc9e90c1d4a89ece4ee150b047153b1bc66073ec6289e41"
            },
            "downloads": -1,
            "filename": "pyEDFlib-0.1.38-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ab74287c5a50dc553edf2c69ee0073c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2193516,
            "upload_time": "2024-08-07T19:39:23",
            "upload_time_iso_8601": "2024-08-07T19:39:23.699285Z",
            "url": "https://files.pythonhosted.org/packages/d2/22/3807949be999fad2f817a6f9d8496763ae557d5790b5f9be9f8c09ee6cc3/pyEDFlib-0.1.38-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "255f8b63b5cc4f27526ffe99a21fee2531aa877d85d3ca84ec65101623d4c588",
                "md5": "92e57efda4308b01013ab13588f46139",
                "sha256": "6a0fe727ea4cf18de63c6ede43a6c2d151f474aba6ebde0c6f9a5cf09711bbdd"
            },
            "downloads": -1,
            "filename": "pyedflib-0.1.38.tar.gz",
            "has_sig": false,
            "md5_digest": "92e57efda4308b01013ab13588f46139",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2148716,
            "upload_time": "2024-08-07T19:39:25",
            "upload_time_iso_8601": "2024-08-07T19:39:25.128181Z",
            "url": "https://files.pythonhosted.org/packages/25/5f/8b63b5cc4f27526ffe99a21fee2531aa877d85d3ca84ec65101623d4c588/pyedflib-0.1.38.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-07 19:39:25",
    "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: 0.45728s