Skip to main content
eFEL banner
Latest Release latest release
Documentation latest documentation
License license
Build Status actions build status
Coverage coverage
Gitter
Citation DOI

Introduction

eFEL is an electrophysiology feature extraction library that 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.

How to cite

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

Mandge, D., Tuncel, A., Jaquier, A., Kilic, I., Damart, T., Markram, H., Van Geit, W., & Ranjan, R. (2026). eFEL: Electrophysiology feature extraction library. Bioinformatics, 42(6). https://doi.org/10.1093/bioinformatics/btag328
BibTeX
@article{10.1093/bioinformatics/btag328,
    author = {Mandge, Darshan and Tuncel, Anıl and Jaquier, Aurélien and Kilic, Ilkan and Damart, Tanguy and Markram, Henry and Van Geit, Werner and Ranjan, Rajnish},
    title = {eFEL: electrophysiology feature extraction library},
    journal = {Bioinformatics},
    volume = {42},
    number = {6},
    pages = {btag328},
    year = {2026},
    month = {06},
    issn = {1367-4811},
    doi = {10.1093/bioinformatics/btag328},
    url = {https://doi.org/10.1093/bioinformatics/btag328},
}

If you want to cite a particular version of eFEL, you can find the DOIs of all versions at: https://doi.org/10.5281/zenodo.19604220

Note: The earlier versions of code can be found in the Blue Brain Project eFEL : https://github.com/BlueBrain/eFEL, Zenodo: https://doi.org/10.5281/zenodo.14222078 and PyPI: https://pypi.org/project/efel/#history repositories.

Requirements

  • Python 3.10+
  • Pip
  • A C++17 compiler that can be used by pip when a source build is required
  • Runtime dependencies (NumPy, Neo, SciPy, and typing-extensions) are installed automatically by pip
  • The instructions below assume access to a command shell on Linux / UNIX / macOS / Cygwin

Installation

The easiest way to install eFEL is to use pip

python -m pip install efel

Or you could use a Python virtual environment

python -m venv .venv
source .venv/bin/activate
python -m pip install efel

If you want to install straight from the GitHub repository, you can use:

python -m pip install git+https://github.com/openbraininstitute/eFEL.git

Quick Start

First you need to import the module

import efel

To get a list with all the available feature names

efel.get_feature_names()

Note that the extra-cellular features, the bpap_attenuation feature and the check_ais_initiation feature are not listed above because they have to be used in a special way, as described here for extra-cellular features, here for bpap_attenuation feature and here for check_ais_initiation feature.

To change the spike detection threshold setting (default is -20 mV)

efel.set_setting('Threshold', -30)

For a full list of available settings, please refer to the Setting class

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

"""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]

    # set the threshold for spike detection to -20 mV
    efel.set_setting('Threshold', -20)

    # 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

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

Copyright (c) 2025-2026 Open Brain Institute

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

efel-5.7.33.tar.gz (142.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

efel-5.7.33-cp314-cp314t-win_amd64.whl (419.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

efel-5.7.33-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.33-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

efel-5.7.33-cp314-cp314t-macosx_11_0_arm64.whl (255.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.33-cp314-cp314-win_amd64.whl (419.5 kB view details)

Uploaded CPython 3.14Windows x86-64

efel-5.7.33-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

efel-5.7.33-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

efel-5.7.33-cp314-cp314-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.33-cp313-cp313-win_amd64.whl (409.1 kB view details)

Uploaded CPython 3.13Windows x86-64

efel-5.7.33-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

efel-5.7.33-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

efel-5.7.33-cp313-cp313-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.33-cp312-cp312-win_amd64.whl (409.1 kB view details)

Uploaded CPython 3.12Windows x86-64

efel-5.7.33-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

efel-5.7.33-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

efel-5.7.33-cp312-cp312-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.33-cp311-cp311-win_amd64.whl (409.0 kB view details)

Uploaded CPython 3.11Windows x86-64

efel-5.7.33-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

efel-5.7.33-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

efel-5.7.33-cp311-cp311-macosx_11_0_arm64.whl (254.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.33-cp310-cp310-win_amd64.whl (409.0 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.33-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (3.0 MB view details)

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

efel-5.7.33-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

efel-5.7.33-cp310-cp310-macosx_11_0_arm64.whl (254.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file efel-5.7.33.tar.gz.

File metadata

  • Download URL: efel-5.7.33.tar.gz
  • Upload date:
  • Size: 142.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33.tar.gz
Algorithm Hash digest
SHA256 45197e17e85fc0e43f8eb8d38c4eed6362b1c34b9fd7a418d07be9454025a657
MD5 639535449b8e326c182971e37d9cb1bf
BLAKE2b-256 8eeebab70c125a7c2203cf01e64ead8ceaffd78c17b5ca21883b583dd1111ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33.tar.gz:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.33-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 419.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4b6c81384930e0c45b2e4632dec121b10dc48406e522ad1c87db25af2d85aaff
MD5 9e3958da38117473aee03dbbb2b19a5c
BLAKE2b-256 432cad8b68b37b149f3090343f6f7538ac718ff4851e6b3d6540cee9efdd61c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7aede014d5678720b8ef03ec889e504ea4e82fa52677ae7c6b8b640797ccb613
MD5 ab668bbd1bd4619ea82f2a79550df89f
BLAKE2b-256 e48c9adb70f2d597bd632a99a1ce5a3b4c4881b7dbe10ca5d0a2ed574bd2a0e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3821ee866b207c1e522921873979e4bdccd514ece3f5c2f586c9b0642eeb80d
MD5 d64f72e69d87a43d67f9d9b9743a0b13
BLAKE2b-256 799f7b8120373c560c85c242e15cd3d0d509ff1ff97ef9083b46de9e0d7b634c

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3495d04ae0239bec39da2d5344afa15ca2aa3c979e3e953efefa5e938dbd1b6
MD5 77dff5c66f3658bb4ad28aadc34c3142
BLAKE2b-256 3c66b98ef963fb1e1934816e9dafd77eb5eee3f4d7dbfeb6de29e1f1380284ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.33-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 419.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ecf0efcbfc4b370fe1d6fd2b44613c4edfbe0952d31f76ca794d416d348a711
MD5 1761735d98ccb4304a99a4d9f500f31f
BLAKE2b-256 43da76099e377dabd911c2369a6bea61fe3558872594414a8048ec9b8118c52f

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae5e7e4adb3908bcd9e1adb2cc39f63d4cc2f0b676faf57e638e1ba4f5ffef86
MD5 ae9b5eb830bc82f1997c11f934982335
BLAKE2b-256 90477755187872a255f18b40fa25fb2a72ea21ef5f8b0725a0e16f63be6caada

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a5aaa1b60383b980f77f8d0d47aa3d2981d0c6548c27d879c297fca3596943a
MD5 e2b584944dda72be15862ba4364bf932
BLAKE2b-256 ae3c939326dd3d2a0f4605f41c92d1295bae42f27b7c1f91e3f8cab5bba5d8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d56eefa34f30fe25734c7bf16bd1dd88d1c041a72e7e3db4a1152d1e86dac8c
MD5 688c8020c52c65331873e78c9ac98ebf
BLAKE2b-256 072a5b5afb7d01a9ebac372d9b88757a85210117f00604bb11eafb9b94cd6864

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.33-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 409.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8af215f7aaf676cfb18fdc0896e6ca55bf94bc173c03946e30322b14c3a822a9
MD5 60aabfdb2a09ea3cd1a2c78cc9d421e4
BLAKE2b-256 89e151a04239d991c451c472e5658e6552c2e33813d9bebd7d89950b160fba05

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3825aa79f3225ab6699fa99bfa192945552c65ec307bca3faed2122b89757014
MD5 6a354c1da86ef0e7678c4046f8eafe6e
BLAKE2b-256 859cee5bb45790f7a7f867b20e0587a92c8f65955c127669719025403a11938a

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 786ceecfead5accb649daa65f9b3c3b16ee3ea6610051d560c842df502254afc
MD5 3c7c6b952a0b5cb6fe46ce58ee048b49
BLAKE2b-256 f507afac734703b049d10568dc4bb02c293ab08c20d0b8a2c30abcd33dc4f8f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64f574c3450033baa8c41d52e53edcf38bc11f29ff402570032678ab9fef7068
MD5 6261274aa076441e2d58fe63f2f26f01
BLAKE2b-256 7902692cd2180e86a3ca2b923fe27be50728bade7e623c5cce228920e5ab315d

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.33-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 409.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5def4ecd5e5ea8b3d57fdbb70d0ec75524f74ffccc26cc383a118764db8256e2
MD5 7c0fc9f62e6bb1ac67460f77dfc99ab6
BLAKE2b-256 b1164084bea702043c8c8d6a57f2eefc92d2d6e688968e806970f838ebc28501

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fa361769e24483f8f2aa3c7c8fc48b786fa7af433d8f2aa7cc410c899f1319f
MD5 8524763bc4c4bd0b1e545f9bc9997a6d
BLAKE2b-256 b599d61bfaa05f9aa8eb8b90cf667ffda9f8b3d4abcee48876ee48d43e5bf839

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 549a00652da2f2c024aae05f4997f66d51b54ebdc80656c27e34e3ec9d669190
MD5 2fcb9df091f825361f84a3081b99c157
BLAKE2b-256 54867259efb10b5ee13c5641e8668ebbda557fbf97fb5e44a4ba99e52eeb7886

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb6b2d36ae96bd4cc5c3e68edb6e478b4dae1fd4f63f521c3d3966c6e788a0d0
MD5 eb30f95699a411d40155461e930d9010
BLAKE2b-256 8515a1a1db280e35f1c8e4fef4ddc7927d4c1298a405bece23c96ef920c59b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.33-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 409.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a918c04f2bfb786c51fdfd26a38ba26880fafac918d9720153b5ec98194738b
MD5 735a1633d7e562d664c54ab1a2a26b6e
BLAKE2b-256 1405faa65aa74aecdaa0f15dc52703e0f0cee41010f51bc28a296dbfffe7bb6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca786a3a6e4d6d96aad5d9a51b085b5a524c486a37c421c4efa92a5ad8ffb644
MD5 531de91d19b71168e9018c864de586c3
BLAKE2b-256 828d271a17c9f2f7e9171d65969e42d2675df0e7a4580c05cdd59e44b2192125

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8844bc7f654d6bf0c494101b427c9b25f82155ed8616f9789724340faea87090
MD5 6ab8d6586d6fe4ee283cd4de072135b7
BLAKE2b-256 b43d7a88c2144ed9072218fbf270004aed694f1934ff3c9aa6ccd94de358e2f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cf2c533c732018d147a0f53f93952a936e47ca7b007d4dc535de29a0cd4e699
MD5 f9939a7941414440161c9595896643d5
BLAKE2b-256 e655b14c255be8826c9620793297e72eb7dc96b6199b1e305451220430ff5296

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.33-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 409.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for efel-5.7.33-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8694a54818711eead158b5672b287b3f94da23baa648bba09384de2d0abb084
MD5 ff4a1ee6e36148c6c6752e87c456a728
BLAKE2b-256 2a18441e60e88160d94391a4597ac2005e708d4da6156714e0ee8e3071f6d424

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0130fb28a43a6eb6cd8698001c15da6a8b665bf8ae63147241f8bde8e66edd4
MD5 79795586166efff19e906594b8287d2f
BLAKE2b-256 3e1a31eeaa83d35157fd6c0a6b701ad74de176dc621c4f5cd2a379ea313128ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 339f8deb5713dfadca47a46b1c5a581461301236f262e994a985d085bb85bd56
MD5 cc81903e30ad9d4942efb87c1868f2c4
BLAKE2b-256 76257682c6bd9aaea0cb9a65788e8126a3848da79c76f809d906fe7e9a2e055b

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file efel-5.7.33-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.33-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9973ac8862077cbac0bde2843edc934e702115ade558edcabb1a209214a375d3
MD5 129c685865afcdac9f4bbb5effdbc8f3
BLAKE2b-256 dc936714124b5894188b72c3b0479a03e37ff5c546dfa377a7b858b9c0997285

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.33-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on openbraininstitute/eFEL

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

5.7.34

25 files

This release

5.7.33 This release

25 files

5.7.32

25 files

5.7.31

25 files

5.7.30

25 files

5.7.29

25 files

5.7.28

19 files

5.7.27

19 files

5.7.26

19 files

5.7.25

19 files

5.7.24

19 files

5.7.23

19 files

5.7.22

19 files

5.7.21

19 files

5.7.20

13 files

5.7.19

13 files

5.7.18

13 files

5.7.17

13 files

5.7.16

13 files

5.7.15

13 files

5.7.14

13 files

5.7.13

13 files

5.7.12

13 files

5.7.11

13 files

5.7.10

13 files

5.7.9

13 files

5.7.8

13 files

5.7.7

13 files

5.7.6

13 files

5.7.5

13 files

5.7.4

13 files

5.7.3

13 files

5.7.2

13 files

5.7.1

13 files

5.7.0

13 files

5.6.29

13 files

5.6.28

13 files

5.6.27

13 files

5.6.26

13 files

5.6.25

13 files

5.6.24

13 files

5.6.23

13 files

5.6.22

13 files

5.6.21

13 files

5.6.20

13 files

5.6.19

13 files

5.6.18

13 files

5.6.17

13 files

5.6.16

13 files

5.6.15

13 files

5.6.14

13 files

5.6.13

13 files

5.6.12

13 files

5.6.11

13 files

5.6.10

13 files

5.6.9

13 files

5.6.8

13 files

5.6.7

13 files

5.6.6

13 files

5.6.5

13 files

5.6.4

13 files

5.6.3

13 files

5.6.2

13 files

5.6.1

13 files

5.5.7

16 files

5.5.6

16 files

5.5.5

16 files

5.5.4

16 files

5.5.3

16 files

5.5.2

16 files

5.5.1

16 files

5.5.0

16 files

5.4.1

16 files

5.4.0

16 files

5.3.10

16 files

5.3.9

16 files

5.3.8

16 files

5.3.7

16 files

5.3.5

16 files

5.3.4

16 files

5.3.3

16 files

5.3.2

13 files

5.3.1

13 files

5.3.0

13 files

5.2.10

13 files

5.2.9

13 files

5.2.8

13 files

5.2.7

13 files

5.2.5

13 files

5.2.4

13 files

5.2.1

13 files

5.2.0

13 files

5.1.6

13 files

5.1.5

13 files

5.1.4

13 files

5.1.3

13 files

5.1.2

13 files

5.1.1

13 files

5.1.0

13 files

5.0.7

13 files

5.0.6

13 files

5.0.5

13 files

5.0.4

13 files

5.0.1

16 files

4.3.6

16 files

4.3.5

16 files

4.3.4

16 files

4.3.0

16 files

4.2.12

16 files

4.2.10

16 files

4.2.7

16 files

4.2.5

16 files

4.2

16 files

4.1.98

16 files

4.1.95

16 files

4.1.93

16 files

4.1.91

16 files

4.1.86

16 files

4.1.84

16 files

4.1.81

16 files

4.1.78

16 files

4.1.76

16 files

4.1.73

16 files

4.1.63

16 files

4.1.61

16 files

4.1.58

16 files

4.1.56

13 files

4.1.54

13 files

4.1.49

16 files

4.1.47

16 files

4.1.40

16 files

4.1.31

20 files

4.1.23

20 files

4.1.19

20 files

4.1.14

20 files

4.1.1

20 files

4.0.50

20 files

4.0.47

20 files

4.0.44

20 files

4.0.42

20 files

4.0.40

20 files

4.0.34

20 files

4.0.32

20 files

4.0.30

20 files

4.0.26

20 files

4.0.4

21 files

3.2.4

28 files

3.2.1

28 files

3.1.100

28 files

3.1.98

28 files

3.1.96

28 files

3.1.92

28 files

3.1.90

28 files

3.1.88

28 files

3.1.82

18 files

3.1.77

18 files

3.1.75

18 files

3.1.72

18 files

3.1.70

18 files

3.1.63

18 files

3.1.60

18 files

3.1.58

18 files

3.1.56

18 files

3.1.54

1 file

3.1.52

1 file

3.1.50

1 file

3.1.46

1 file

3.1.44

1 file

3.1.42

1 file

3.1.40

1 file

3.1.39

1 file

3.1.37

1 file

3.1.10

1 file

3.0.113

1 file

3.0.103

1 file

3.0.99

1 file

3.0.93

1 file

3.0.87

1 file

3.0.84

1 file

3.0.82

1 file

3.0.80

1 file

3.0.73

1 file

3.0.72

1 file

3.0.70

1 file

3.0.68

1 file

3.0.66

1 file

3.0.62

1 file

3.0.60

1 file

3.0.58

1 file

3.0.56

1 file

3.0.43

1 file

3.0.39

1 file

3.0.36

1 file

3.0.34

1 file

3.0.31

1 file

3.0.30

1 file

3.0.22

1 file

3.0.19

1 file

3.0.16

1 file

3.0.12

1 file

3.0.7

1 file

3.0.5

1 file

3.0.3

1 file

2.13.13

1 file

2.13.6

1 file

2.13.3

1 file

2.13.1

1 file

2.12.11

1 file

2.12.9

1 file

2.12.6

1 file

2.12.4

1 file

2.11.52

1 file

2.11.50

1 file

2.11.47

1 file

2.11.45

1 file

2.11.41

1 file

2.11.35

1 file

2.11.33

1 file

2.11.31

1 file

2.11.28

1 file

2.11.26

1 file

2.11.14

1 file

2.11.12

1 file

2.11.10

1 file

2.11.9

1 file

2.11.7

1 file

2.11.5

1 file

2.11.3

1 file

2.11.1

1 file

2.10.150

2.10.147

2.10.146

1 file

2.10.144

1 file

2.10.135

1 file

2.10.134

1 file

2.10.132

1 file

2.10.130

1 file

2.10.129

1 file

2.10.127

1 file

2.10.124

1 file

2.10.121

1 file

2.10.120

1 file

2.10.118

1 file

2.10.116

1 file

2.10.115

1 file

2.10.114

1 file

2.10.112

1 file

2.10.111

1 file

2.10.109

1 file

2.10.107

1 file

2.10.105

1 file

2.10.102

1 file

2.10.99

1 file

2.10.97

1 file

2.10.95

1 file

2.10.93

1 file

2.10.86

1 file

2.10.85

1 file

2.10.83

1 file

2.10.80

1 file

2.10.78

1 file

2.10.76

1 file

2.10.74

1 file

2.10.72

1 file

2.10.66

1 file

2.10.65

1 file

2.10.63

1 file

2.10.61

1 file

2.10.60

1 file

2.10.59

1 file

2.10.57

1 file

2.10.53

1 file

2.10.51

1 file

2.10.49

1 file

2.10.47

1 file

2.10.45

1 file

2.10.43

1 file

2.10.41

1 file

2.10.39

1 file

2.10.38

2 files

2.10.36

1 file

2.10.34

1 file

2.10.33

1 file

2.10.32

1 file

2.10.31

1 file

2.10.30

1 file

2.10.29

1 file

2.10.28

1 file

2.10.25

1 file

2.10.21

1 file

2.10.20

1 file

2.10.18

1 file

2.10.15

1 file

2.10.13

1 file

2.10.11

1 file

2.10.9

1 file

2.10.7

1 file

2.10.6

1 file

2.10.5

2.10.4

1 file

2.10.3

1 file

2.10.1

2 files

2.9.22

1 file

2.9.19

1 file

2.9.17

1 file

2.9.15

1 file

2.9.14

1 file

2.9.13

1 file

2.9.12

1 file

2.9.11

1 file

2.9.10

1 file

2.9.4

1 file

2.9.3

1 file

2.9.2

1 file

2.9.1

1 file

2.8.8

1 file

2.8.2

1 file

2.8.1

1 file

2.8

1 file

2.7.10

1 file

2.7.9

1 file

2.7.8

1 file

2.7.7

1 file

2.7.5

1 file

2.7.4

1 file

2.6.40

1 file

2.6.38

1 file

2.6.37

1 file

2.6.36

1 file

2.6.35

1 file

2.6.34

1 file

2.6.32

1 file

2.6.31

1 file

2.6.30

1 file

2.6.29

1 file

2.6.26

1 file

2.6.25

1 file

2.6.24

1 file

2.6.23

1 file

2.6.22

1 file

2.6.21

1 file

2.6.20

1 file

2.6.19

1 file

2.6.18

1 file

2.6.17

1 file

2.6.14

1 file

2.6.13

1 file

2.6.12

1 file

2.6.11

1 file

2.6.10

1 file

2.6.9

1 file

2.6.7

1 file

2.6.3

1 file

2.6.1

1 file

2.4.28

1 file

2.4.27

1 file

2.4.24

1 file

2.4.22

1 file

2.4.21

1 file

2.4.18

1 file

2.4.13

1 file

2.4.12

1 file

2.4.11

1 file

2.4.9

1 file

2.4.8

1 file

2.4.2

1 file

2.4.1

1 file

2.3.90

1 file

2.3.73

1 file

2.3.71

1 file

2.3.70

1 file

2.3.68

1 file

2.3.67

1 file

2.3.66

1 file

2.3.64

1 file

2.3.63

1 file

2.3.62

1 file

2.3.60

1 file

2.3.59

1 file

2.3.57

1 file

2.3.49

1 file

2.3.48

1 file

2.3.47

1 file

2.3.46

1 file

2.3.44

1 file

2.3.37

1 file

2.3.36

1 file

2.3.35

1 file

2.3.34

1 file

2.3.33

1 file

2.3.32

1 file

2.3.31

1 file

2.3.29

1 file

2.3.28

1 file

2.3.27

1 file

2.3.26

1 file

2.3.25

1 file

2.3.24

1 file

2.3.23

1 file

2.3.22

1 file

2.3.21

2 files

2.3.20

2 files

2.3.19

2 files

2.3.18

2 files

2.3.17

2 files

2.3.16

2 files

Supported by

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