efel


Nameefel JSON
Version 5.6.7 PyPI version JSON
download
home_pagehttps://github.com/BlueBrain/eFEL
SummaryElectrophys Feature Extract Library (eFEL)
upload_time2024-04-19 14:34:26
maintainerWerner Van Geit
docs_urlNone
authorBlueBrain Project, EPFL
requires_pythonNone
licenseLGPLv3
keywords feature extraction electrophysiology bluebrainproject
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img src="https://raw.githubusercontent.com/BlueBrain/eFEL/master/docs/source/logo/eFELBanner.png" alt="eFEL banner" />

<table>
<tr>
  <td>Latest Release</td>
  <td>
    <a href="https://pypi.org/project/efel/">
    <img src="https://img.shields.io/pypi/v/efel.svg" alt="latest release" />
    </a>
  </td>
</tr>
<tr>
  <td>Documentation</td>
  <td>
    <a href="https://efel.readthedocs.io/">
    <img src="https://readthedocs.org/projects/efel/badge/?version=latest" alt="latest documentation" />
    </a>
  </td>
</tr>
<tr>
  <td>License</td>
  <td>
    <a href="https://github.com/BlueBrain/efel/blob/master/LICENSE.txt">
    <img src="https://img.shields.io/pypi/l/efel.svg" alt="license" />
    </a>
</td>
</tr>
<tr>
  <td>Build Status</td>
  <td>
    <a href="https://github.com/BlueBrain/eFEL/actions">
    <img src="https://github.com/BlueBrain/eFEL/workflows/Build/badge.svg?branch=master" alt="actions build status" />
    </a>
  </td>
</tr>
<tr>
  <td>Coverage</td>
  <td>
    <a href="https://codecov.io/gh/BlueBrain/efel">
    <img src="https://codecov.io/github/BlueBrain/eFEL/coverage.svg?branch=master" alt="coverage" />
    </a>
  </td>
</tr>
<tr>
    <td>Gitter</td>
    <td>
        <a href="https://gitter.im/bluebrain/efel">
        <img src="https://badges.gitter.im/Join%20Chat.svg" />
    </a>
    </td>
</tr>
<tr>
    <td>Citation</td>
    <td>
        <a href="https://doi.org/10.5281/zenodo.593869">
        <img src="https://zenodo.org/badge/DOI/10.5281/zenodo.8146607.svg" alt="DOI"/>
    </a>
    </td>
</tr>
</table>

Introduction
============

The Electrophys Feature Extraction Library (eFEL) allows neuroscientists
to automatically extract features from time series data recorded from neurons
(both in vitro and in silico).
Examples are the action potential width and amplitude in voltage traces recorded
during whole-cell patch clamp experiments.
The user of the library provides a set of traces and selects the features to
be calculated. The library will then extract the requested features and return
the values to the user.

The core of the library is written in C++, and a Python wrapper is included.
At the moment we provide a way to automatically compile and install the library
as a Python module. Instructions on how to compile the eFEL as a standalone C++
library can be found [here](http://efel.readthedocs.io/en/latest/installation.html#installing-the-c-standalone-library).


Citation
========

When you use this eFEL software for your research, we ask you to cite the following publications (this includes poster presentations):

```
    @article{efel,
        title={eFEL},
        DOI={10.5281/zenodo.593869},
        url={https://doi.org/10.5281/zenodo.593869}
        abstractNote={The Electrophys Feature Extraction Library (eFEL) allows neuroscientists to automatically extract features from time series data recorded from neurons (both in vitro and in silico). Examples are the action potential width and amplitude in voltage traces recorded during whole-cell patch clamp experiments. The user of the library provides a set of traces and selects the features to be calculated. The library will then extract the requested features and return the values to the user.},
        publisher={Zenodo},
        author={Ranjan, Rajnish and
                Van Geit, Werner and
                Moor, Ruben and
                Rössert, Christian and
                Riquelme, Juan Luis and
                Damart, Tanguy and
                Jaquier, Aurélien and
                Tuncel, Anil},
        year={2023},
        month={Jul}
    }
```

Requirements
============

* [Python 3.9+](https://www.python.org/downloads/)
* [Pip](https://pip.pypa.io) (installed by default in newer versions of Python)
* C++ compiler that can be used by pip
* [Numpy](http://www.numpy.org) (will be installed automatically by pip)
* The instruction below are written assuming you have access to a command shell
on Linux / UNIX / MacOSX / Cygwin

Installation
============

The easiest way to install eFEL is to use [pip](https://pip.pypa.io)

```bash
pip install efel
```

In case you don't have administrator access this command might fail with a
permission error. In that case you could install eFEL in your home directory

```bash
pip install efel --user
```

Or you could use a [python virtual environment](https://virtualenv.pypa.io)

```bash
virtualenv pythonenv
. ./pythonenv/bin/activate
# If you use csh or tcsh, you should use:
# source ./pythonenv/bin/activate.csh
pip install efel
```

If you want to install straight from the github repository you can use

```bash
pip install git+git://github.com/BlueBrain/eFEL
```

Quick Start
===========

First you need to import the module

```python
import efel
```

To get a list with all the available feature names

```python
efel.get_feature_names()
```

The python function to extract features is get_feature_values(...).
Below is a short example on how to use this function. The code and example
trace are available
[here](https://github.com/BlueBrain/eFEL/blob/master/examples/basic/basic_example1.py)

```python
"""Basic example 1 for eFEL"""

import efel
import numpy

def main():
    """Main"""

    # Use numpy to read the trace data from the txt file
    data = numpy.loadtxt('example_trace1.txt')

    # Time is the first column
    time = data[:, 0]
    # Voltage is the second column
    voltage = data[:, 1]

    # Now we will construct the datastructure that will be passed to eFEL

    # A 'trace' is a dictionary
    trace1 = {}

    # Set the 'T' (=time) key of the trace
    trace1['T'] = time

    # Set the 'V' (=voltage) key of the trace
    trace1['V'] = voltage

    # Set the 'stim_start' (time at which a stimulus starts, in ms)
    # key of the trace
    # Warning: this need to be a list (with one element)
    trace1['stim_start'] = [700]

    # Set the 'stim_end' (time at which a stimulus end) key of the trace
    # Warning: this need to be a list (with one element)
    trace1['stim_end'] = [2700]

    # Multiple traces can be passed to the eFEL at the same time, so the
    # argument should be a list
    traces = [trace1]

    # Now we pass 'traces' to the efel and ask it to calculate the feature
    # values
    traces_results = efel.get_feature_values(traces,
                                           ['AP_amplitude', 'voltage_base'])

    # The return value is a list of trace_results, every trace_results
    # corresponds to one trace in the 'traces' list above (in same order)
    for trace_results in traces_results:
        # trace_result is a dictionary, with as keys the requested features
        for feature_name, feature_values in trace_results.items():
            print("Feature %s has the following values: %s" %
                (feature_name, ', '.join([str(x) for x in feature_values])))


if __name__ == '__main__':
    main()
```

The output of this example is
```
Feature AP_amplitude has the following values: 72.5782441262, 46.3672552618, 41.1546679158, 39.7631750953, 36.1614653031, 37.8489295737
Feature voltage_base has the following values: -75.446665721
```
This means that the eFEL found 5 action potentials in the voltage trace. The
amplitudes of these APs are the result of the 'AP_amplitude' feature.
The voltage before the start of the stimulus is measured by 'voltage_base'.
Results are in mV.

Full documentation
==================
The full documentation can be found [here](http://efel.readthedocs.io)

Funding
=======
This work has been partially funded by the European Union Seventh Framework Program (FP7/2007­2013) under grant agreement no. 604102 (HBP),
the European Union’s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 720270, 785907
(Human Brain Project SGA1/SGA2) and by the EBRAINS research infrastructure, funded from the European Union’s Horizon 2020 Framework
Programme for Research and Innovation under the Specific Grant Agreement No. 945539 (Human Brain Project SGA3).
This project/research was supported by funding to the Blue Brain Project, a research center of the École polytechnique fédérale de
Lausanne (EPFL), from the Swiss government’s ETH Board of the Swiss Federal Institutes of Technology.

Copyright (c) 2009-2024 Blue Brain Project/EPFL


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/BlueBrain/eFEL",
    "name": "efel",
    "maintainer": "Werner Van Geit",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "werner.vangeit@epfl.ch",
    "keywords": "feature, extraction, electrophysiology, BlueBrainProject",
    "author": "BlueBrain Project, EPFL",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/31/7c/9a48a2024450a36b817980f4bc4d8797350ba4d295b72b797eb65f3e8e29/efel-5.6.7.tar.gz",
    "platform": null,
    "description": "<img src=\"https://raw.githubusercontent.com/BlueBrain/eFEL/master/docs/source/logo/eFELBanner.png\" alt=\"eFEL banner\" />\n\n<table>\n<tr>\n  <td>Latest Release</td>\n  <td>\n    <a href=\"https://pypi.org/project/efel/\">\n    <img src=\"https://img.shields.io/pypi/v/efel.svg\" alt=\"latest release\" />\n    </a>\n  </td>\n</tr>\n<tr>\n  <td>Documentation</td>\n  <td>\n    <a href=\"https://efel.readthedocs.io/\">\n    <img src=\"https://readthedocs.org/projects/efel/badge/?version=latest\" alt=\"latest documentation\" />\n    </a>\n  </td>\n</tr>\n<tr>\n  <td>License</td>\n  <td>\n    <a href=\"https://github.com/BlueBrain/efel/blob/master/LICENSE.txt\">\n    <img src=\"https://img.shields.io/pypi/l/efel.svg\" alt=\"license\" />\n    </a>\n</td>\n</tr>\n<tr>\n  <td>Build Status</td>\n  <td>\n    <a href=\"https://github.com/BlueBrain/eFEL/actions\">\n    <img src=\"https://github.com/BlueBrain/eFEL/workflows/Build/badge.svg?branch=master\" alt=\"actions build status\" />\n    </a>\n  </td>\n</tr>\n<tr>\n  <td>Coverage</td>\n  <td>\n    <a href=\"https://codecov.io/gh/BlueBrain/efel\">\n    <img src=\"https://codecov.io/github/BlueBrain/eFEL/coverage.svg?branch=master\" alt=\"coverage\" />\n    </a>\n  </td>\n</tr>\n<tr>\n    <td>Gitter</td>\n    <td>\n        <a href=\"https://gitter.im/bluebrain/efel\">\n        <img src=\"https://badges.gitter.im/Join%20Chat.svg\" />\n    </a>\n    </td>\n</tr>\n<tr>\n    <td>Citation</td>\n    <td>\n        <a href=\"https://doi.org/10.5281/zenodo.593869\">\n        <img src=\"https://zenodo.org/badge/DOI/10.5281/zenodo.8146607.svg\" alt=\"DOI\"/>\n    </a>\n    </td>\n</tr>\n</table>\n\nIntroduction\n============\n\nThe Electrophys Feature Extraction Library (eFEL) allows neuroscientists\nto automatically extract features from time series data recorded from neurons\n(both in vitro and in silico).\nExamples are the action potential width and amplitude in voltage traces recorded\nduring whole-cell patch clamp experiments.\nThe user of the library provides a set of traces and selects the features to\nbe calculated. The library will then extract the requested features and return\nthe values to the user.\n\nThe core of the library is written in C++, and a Python wrapper is included.\nAt the moment we provide a way to automatically compile and install the library\nas a Python module. Instructions on how to compile the eFEL as a standalone C++\nlibrary can be found [here](http://efel.readthedocs.io/en/latest/installation.html#installing-the-c-standalone-library).\n\n\nCitation\n========\n\nWhen you use this eFEL software for your research, we ask you to cite the following publications (this includes poster presentations):\n\n```\n    @article{efel,\n        title={eFEL},\n        DOI={10.5281/zenodo.593869},\n        url={https://doi.org/10.5281/zenodo.593869}\n        abstractNote={The Electrophys Feature Extraction Library (eFEL) allows neuroscientists to automatically extract features from time series data recorded from neurons (both in vitro and in silico). Examples are the action potential width and amplitude in voltage traces recorded during whole-cell patch clamp experiments. The user of the library provides a set of traces and selects the features to be calculated. The library will then extract the requested features and return the values to the user.},\n        publisher={Zenodo},\n        author={Ranjan, Rajnish and\n                Van Geit, Werner and\n                Moor, Ruben and\n                R\u00f6ssert, Christian and\n                Riquelme, Juan Luis and\n                Damart, Tanguy and\n                Jaquier, Aur\u00e9lien and\n                Tuncel, Anil},\n        year={2023},\n        month={Jul}\n    }\n```\n\nRequirements\n============\n\n* [Python 3.9+](https://www.python.org/downloads/)\n* [Pip](https://pip.pypa.io) (installed by default in newer versions of Python)\n* C++ compiler that can be used by pip\n* [Numpy](http://www.numpy.org) (will be installed automatically by pip)\n* The instruction below are written assuming you have access to a command shell\non Linux / UNIX / MacOSX / Cygwin\n\nInstallation\n============\n\nThe easiest way to install eFEL is to use [pip](https://pip.pypa.io)\n\n```bash\npip install efel\n```\n\nIn case you don't have administrator access this command might fail with a\npermission error. In that case you could install eFEL in your home directory\n\n```bash\npip install efel --user\n```\n\nOr you could use a [python virtual environment](https://virtualenv.pypa.io)\n\n```bash\nvirtualenv pythonenv\n. ./pythonenv/bin/activate\n# If you use csh or tcsh, you should use:\n# source ./pythonenv/bin/activate.csh\npip install efel\n```\n\nIf you want to install straight from the github repository you can use\n\n```bash\npip install git+git://github.com/BlueBrain/eFEL\n```\n\nQuick Start\n===========\n\nFirst you need to import the module\n\n```python\nimport efel\n```\n\nTo get a list with all the available feature names\n\n```python\nefel.get_feature_names()\n```\n\nThe python function to extract features is get_feature_values(...).\nBelow is a short example on how to use this function. The code and example\ntrace are available\n[here](https://github.com/BlueBrain/eFEL/blob/master/examples/basic/basic_example1.py)\n\n```python\n\"\"\"Basic example 1 for eFEL\"\"\"\n\nimport efel\nimport numpy\n\ndef main():\n    \"\"\"Main\"\"\"\n\n    # Use numpy to read the trace data from the txt file\n    data = numpy.loadtxt('example_trace1.txt')\n\n    # Time is the first column\n    time = data[:, 0]\n    # Voltage is the second column\n    voltage = data[:, 1]\n\n    # Now we will construct the datastructure that will be passed to eFEL\n\n    # A 'trace' is a dictionary\n    trace1 = {}\n\n    # Set the 'T' (=time) key of the trace\n    trace1['T'] = time\n\n    # Set the 'V' (=voltage) key of the trace\n    trace1['V'] = voltage\n\n    # Set the 'stim_start' (time at which a stimulus starts, in ms)\n    # key of the trace\n    # Warning: this need to be a list (with one element)\n    trace1['stim_start'] = [700]\n\n    # Set the 'stim_end' (time at which a stimulus end) key of the trace\n    # Warning: this need to be a list (with one element)\n    trace1['stim_end'] = [2700]\n\n    # Multiple traces can be passed to the eFEL at the same time, so the\n    # argument should be a list\n    traces = [trace1]\n\n    # Now we pass 'traces' to the efel and ask it to calculate the feature\n    # values\n    traces_results = efel.get_feature_values(traces,\n                                           ['AP_amplitude', 'voltage_base'])\n\n    # The return value is a list of trace_results, every trace_results\n    # corresponds to one trace in the 'traces' list above (in same order)\n    for trace_results in traces_results:\n        # trace_result is a dictionary, with as keys the requested features\n        for feature_name, feature_values in trace_results.items():\n            print(\"Feature %s has the following values: %s\" %\n                (feature_name, ', '.join([str(x) for x in feature_values])))\n\n\nif __name__ == '__main__':\n    main()\n```\n\nThe output of this example is\n```\nFeature AP_amplitude has the following values: 72.5782441262, 46.3672552618, 41.1546679158, 39.7631750953, 36.1614653031, 37.8489295737\nFeature voltage_base has the following values: -75.446665721\n```\nThis means that the eFEL found 5 action potentials in the voltage trace. The\namplitudes of these APs are the result of the 'AP_amplitude' feature.\nThe voltage before the start of the stimulus is measured by 'voltage_base'.\nResults are in mV.\n\nFull documentation\n==================\nThe full documentation can be found [here](http://efel.readthedocs.io)\n\nFunding\n=======\nThis work has been partially funded by the European Union Seventh Framework Program (FP7/2007\u00ad2013) under grant agreement no. 604102 (HBP),\nthe European Union\u2019s Horizon 2020 Framework Programme for Research and Innovation under the Specific Grant Agreement No. 720270, 785907\n(Human Brain Project SGA1/SGA2) and by the EBRAINS research infrastructure, funded from the European Union\u2019s Horizon 2020 Framework\nProgramme for Research and Innovation under the Specific Grant Agreement No. 945539 (Human Brain Project SGA3).\nThis project/research was supported by funding to the Blue Brain Project, a research center of the \u00c9cole polytechnique f\u00e9d\u00e9rale de\nLausanne (EPFL), from the Swiss government\u2019s ETH Board of the Swiss Federal Institutes of Technology.\n\nCopyright (c) 2009-2024 Blue Brain Project/EPFL\n\n",
    "bugtrack_url": null,
    "license": "LGPLv3",
    "summary": "Electrophys Feature Extract Library (eFEL)",
    "version": "5.6.7",
    "project_urls": {
        "Homepage": "https://github.com/BlueBrain/eFEL"
    },
    "split_keywords": [
        "feature",
        " extraction",
        " electrophysiology",
        " bluebrainproject"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "550c6dcfc2090fd3c1f69bcce92732e38964c41b98851606b5ae47def725dbfa",
                "md5": "bd72d8743c17ae10d75b0989a704098d",
                "sha256": "76249c2d07989423ca845b098afaa1611fc6a0644135de3b2c6fe2eca0d5cb15"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd72d8743c17ae10d75b0989a704098d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 248135,
            "upload_time": "2024-04-19T14:33:51",
            "upload_time_iso_8601": "2024-04-19T14:33:51.100547Z",
            "url": "https://files.pythonhosted.org/packages/55/0c/6dcfc2090fd3c1f69bcce92732e38964c41b98851606b5ae47def725dbfa/efel-5.6.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d08632e2bedaca71a874e0ae8d55927998418d474248259a2ba0c8821b0a3d27",
                "md5": "5aa4d97db9cd566e693c6a4cb76378c1",
                "sha256": "ac08ffaec7162fe37ec49352a6a0cbec844e5d2f98e2dfa0d727cc414b3f6b6d"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5aa4d97db9cd566e693c6a4cb76378c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3520710,
            "upload_time": "2024-04-19T14:33:54",
            "upload_time_iso_8601": "2024-04-19T14:33:54.665689Z",
            "url": "https://files.pythonhosted.org/packages/d0/86/32e2bedaca71a874e0ae8d55927998418d474248259a2ba0c8821b0a3d27/efel-5.6.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0378706b4ce922e67d1689a9fc443935bd4c61130d110fb4a00013d041cb6c9",
                "md5": "ff89c9be3af89587acb18d072d290da8",
                "sha256": "e775ccb8be0dcd231d592ea82e2f74dc8297b239f620f4a38f1c5d54c36e42c0"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff89c9be3af89587acb18d072d290da8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 201753,
            "upload_time": "2024-04-19T14:33:57",
            "upload_time_iso_8601": "2024-04-19T14:33:57.623566Z",
            "url": "https://files.pythonhosted.org/packages/a0/37/8706b4ce922e67d1689a9fc443935bd4c61130d110fb4a00013d041cb6c9/efel-5.6.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e800f1316b0af15a97b3eecf623bd20a913d34db47fdc725b528b3e7d594b7be",
                "md5": "1bd76e39b9a6dab5f709c95f8faceb84",
                "sha256": "28a7ddd6a4bec10a5ca24396a4127a8c041cdb45786a52b0424c8b9c82bc4c7c"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1bd76e39b9a6dab5f709c95f8faceb84",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 248135,
            "upload_time": "2024-04-19T14:34:00",
            "upload_time_iso_8601": "2024-04-19T14:34:00.729668Z",
            "url": "https://files.pythonhosted.org/packages/e8/00/f1316b0af15a97b3eecf623bd20a913d34db47fdc725b528b3e7d594b7be/efel-5.6.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bbcb601aafa300f7ceb547f3f08e3cac6ae9d45ef59cf0e6ed02d116cbbbe63",
                "md5": "fa68d4e9cf74d611e94930e834dfc0be",
                "sha256": "bbdd88200b65f7a8f329ca4fcb0fbd4930a635ee84f209b5d5138ed5e0e3a2be"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa68d4e9cf74d611e94930e834dfc0be",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3520824,
            "upload_time": "2024-04-19T14:34:04",
            "upload_time_iso_8601": "2024-04-19T14:34:04.134085Z",
            "url": "https://files.pythonhosted.org/packages/7b/bc/b601aafa300f7ceb547f3f08e3cac6ae9d45ef59cf0e6ed02d116cbbbe63/efel-5.6.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c744a220a8a595513c6e02b68ab680c32506e02e533bd6bb69db616bb28f9162",
                "md5": "e67070110094a9da3ae1633865f7c7ec",
                "sha256": "92a830655251d7665d065147bea30a1cfca23ba541227a5d204a702261d9c5c2"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e67070110094a9da3ae1633865f7c7ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 201755,
            "upload_time": "2024-04-19T14:34:06",
            "upload_time_iso_8601": "2024-04-19T14:34:06.779167Z",
            "url": "https://files.pythonhosted.org/packages/c7/44/a220a8a595513c6e02b68ab680c32506e02e533bd6bb69db616bb28f9162/efel-5.6.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "516794688e6cdc0f40c509a61bf215edb767cc65c1301a7b4a323bea9e89924a",
                "md5": "f495cf27cbca2c6440ffda4fa7f9b5c1",
                "sha256": "facada9cca53d8a83e25cf5fb5f2c69cb48af809cf4307fc8881c6516c4b7b02"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f495cf27cbca2c6440ffda4fa7f9b5c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 248230,
            "upload_time": "2024-04-19T14:34:09",
            "upload_time_iso_8601": "2024-04-19T14:34:09.380290Z",
            "url": "https://files.pythonhosted.org/packages/51/67/94688e6cdc0f40c509a61bf215edb767cc65c1301a7b4a323bea9e89924a/efel-5.6.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc4fdb629003f18b936182419744480300481285c3cd328d00cc5a243ca6f742",
                "md5": "a2f1040859f54d76cccee7cd38888368",
                "sha256": "49c42944356517925009cf1b43be8b655850d63ba69a7fa66d62abc0e4ba388f"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2f1040859f54d76cccee7cd38888368",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3520982,
            "upload_time": "2024-04-19T14:34:12",
            "upload_time_iso_8601": "2024-04-19T14:34:12.130621Z",
            "url": "https://files.pythonhosted.org/packages/cc/4f/db629003f18b936182419744480300481285c3cd328d00cc5a243ca6f742/efel-5.6.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "562db164b63608c87a009b9063df565e6de42b984e771f1676bdc70c3ce2669f",
                "md5": "64633a010191635fa3382a50c64be4fc",
                "sha256": "fb0dfe9392fce54c0eade00db8b0e782824ba7c77d653c61603d4bb6994ce5ec"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64633a010191635fa3382a50c64be4fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 201766,
            "upload_time": "2024-04-19T14:34:15",
            "upload_time_iso_8601": "2024-04-19T14:34:15.746791Z",
            "url": "https://files.pythonhosted.org/packages/56/2d/b164b63608c87a009b9063df565e6de42b984e771f1676bdc70c3ce2669f/efel-5.6.7-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9c8f283f5a3045d588795adb218f275ea7fbf3e8bc18d7ffb05cb5c9ddfadf2",
                "md5": "73c271e791f1d9e1ff3082a923f77238",
                "sha256": "fda2616571ec45d3cf304fa49f46786cd1d70ba1865da5f2fc1980fdd3dd4da0"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "73c271e791f1d9e1ff3082a923f77238",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 248117,
            "upload_time": "2024-04-19T14:34:18",
            "upload_time_iso_8601": "2024-04-19T14:34:18.554196Z",
            "url": "https://files.pythonhosted.org/packages/a9/c8/f283f5a3045d588795adb218f275ea7fbf3e8bc18d7ffb05cb5c9ddfadf2/efel-5.6.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ee22413e4fb6816b9d21e101308318a968173a7ea0e2e4017009d17d17adc99",
                "md5": "e55d05be610625e323f9530866bb2b88",
                "sha256": "01a6309c3f9beb6827cee4eab69a7f5071752715d30944dd414ff55ab3b05869"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e55d05be610625e323f9530866bb2b88",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3520617,
            "upload_time": "2024-04-19T14:34:21",
            "upload_time_iso_8601": "2024-04-19T14:34:21.240354Z",
            "url": "https://files.pythonhosted.org/packages/9e/e2/2413e4fb6816b9d21e101308318a968173a7ea0e2e4017009d17d17adc99/efel-5.6.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79fcc62fe263ee7e001a214aa59062917b0dbcb2a4cf9690828059ddd12ca9a1",
                "md5": "555cb8d6a4cf405af387cec2f5983f02",
                "sha256": "41915d08d78921fcae5be7bec55f319e335c462fa63500d0dd83c900769df056"
            },
            "downloads": -1,
            "filename": "efel-5.6.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "555cb8d6a4cf405af387cec2f5983f02",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 201756,
            "upload_time": "2024-04-19T14:34:24",
            "upload_time_iso_8601": "2024-04-19T14:34:24.136320Z",
            "url": "https://files.pythonhosted.org/packages/79/fc/c62fe263ee7e001a214aa59062917b0dbcb2a4cf9690828059ddd12ca9a1/efel-5.6.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "317c9a48a2024450a36b817980f4bc4d8797350ba4d295b72b797eb65f3e8e29",
                "md5": "38025e5d78e76fe80a9f60c18de9f695",
                "sha256": "c1a0dfc72198e96f23c26d7c5e68b308d5c52c180d068867c486d8e6b7b8f5dc"
            },
            "downloads": -1,
            "filename": "efel-5.6.7.tar.gz",
            "has_sig": false,
            "md5_digest": "38025e5d78e76fe80a9f60c18de9f695",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 99643,
            "upload_time": "2024-04-19T14:34:26",
            "upload_time_iso_8601": "2024-04-19T14:34:26.951285Z",
            "url": "https://files.pythonhosted.org/packages/31/7c/9a48a2024450a36b817980f4bc4d8797350ba4d295b72b797eb65f3e8e29/efel-5.6.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 14:34:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "BlueBrain",
    "github_project": "eFEL",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "efel"
}
        
Elapsed time: 0.33357s