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.34.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.34-cp314-cp314t-win_amd64.whl (419.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

efel-5.7.34-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.34-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.34-cp314-cp314t-macosx_11_0_arm64.whl (255.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.34-cp314-cp314-win_amd64.whl (419.6 kB view details)

Uploaded CPython 3.14Windows x86-64

efel-5.7.34-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.34-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.34-cp314-cp314-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

efel-5.7.34-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.34-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.34-cp313-cp313-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

efel-5.7.34-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.34-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.34-cp312-cp312-macosx_11_0_arm64.whl (254.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

efel-5.7.34-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.34-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.34-cp311-cp311-macosx_11_0_arm64.whl (254.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

efel-5.7.34-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.34-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.34-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.34.tar.gz.

File metadata

  • Download URL: efel-5.7.34.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.34.tar.gz
Algorithm Hash digest
SHA256 0afde70ca992e35050c8bc36cdbfd0249e2dc0c1f89987967eef34fae3192470
MD5 fade7bee1471d6c588d080a0bdde6d82
BLAKE2b-256 c48a3906a8534c58964ee7813f2ac0ab36ad79bfc51b428c1928984dad0cced2

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34.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.34-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.34-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.34-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fd9cb91b9864ecc32ef653b43c35e7efa3ca326cc1f5eecf6b93ff83b8838551
MD5 97bbef7e5b532b13b36bd0d4d061c51f
BLAKE2b-256 6769e2e26c83b193ba77f85f4fd6b1b0b360e6e5779ba401d9d92950757d5e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6455550de21be818f69c262f4edcca01f17420050aa164a2a0bd2a91f3fb8b78
MD5 9e402a1e127c9aa43294e971febcd01f
BLAKE2b-256 6f242830d4a14bc97ae43535c5f1f3fb5e6cca5276a3d125e081f2bca6b2c0dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b156440fbb2488fda91f678311c2dbdb7d04f212c3d3a097346c4d9d66865249
MD5 3dda3a15044612e6707f3e8609b1f841
BLAKE2b-256 053925a7639a15d9b1f101bd9e3b8d3305e58e267a915665cdacee774d9c538d

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b502420b84b8dc5a8a71378003bd80e773f4c7f7ce9b6c5a7f5cded54bf2a651
MD5 9a52fe7c42d89f7308dc231aa900084a
BLAKE2b-256 498332110c4e43aba207e173969d351ca87da721f379fd9aa9c7ae18422da300

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.34-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 419.6 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.34-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 58710c3ce20764611b4e28d818c944506d87b0b3fd1eef91fc412b086d3b5efe
MD5 b5802e2a793e93268cb8d3618351152a
BLAKE2b-256 f8e3693207cf8ee501a4418d204d82c0f5162cb7eb02a4e1c1e609d7aeb56433

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71c8b2df28b6bf981689e08e6e297493e945e30b4431bfbacd58f87fe45cfb55
MD5 5c03cc6e7fc0991973c97de977b73f3f
BLAKE2b-256 5384e83a08ea4974200dcb1bf0c12427f21d50c8a41208880711268734708c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe5cc649239b5df85fa9f67a5c0f98927c6283ad1ce72fa6ce6206b933252159
MD5 4ee0d4b5c9deb7243e90fa367fe98eb8
BLAKE2b-256 2bc62e9c274ccb5442e26c11f7a7b3148a45da925edfa826133bbd4c83de5ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53ede5573380c05413950c0770bb21fa416fdc632ecfb4ba7ce41e6b5b77f348
MD5 8a4416777035e02804bbbc34e0af7d96
BLAKE2b-256 8d1b0789825db1ec33f5843bdfc37fb656db52052be845c636ba1dda4fa78d7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.34-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.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ec9d0e6a6583b56eb86bd1d4b58e6ee09931bdce9f20ecea7aadc6732c07d46
MD5 9ff37fce1c9c1731f8f97d6eac256db3
BLAKE2b-256 5ddc61ff800d8363a17f6d95a272f0984d84aaa2a5435878b0d721aa444c6f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25ebdfbf330e7ae95440d6c15c23e7a1d9de209159569f5549e9774788e7d865
MD5 445a23c4d47237a286231425e8038c9e
BLAKE2b-256 a248dc5026f0644308f10cb68f743a1ed5356fe09892b00affd7e812615e578b

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 42f22183760f1f6e7fedc08ef9c94bc963ed8e9e2cddf3bff7a531b037718aeb
MD5 bfa301f669ca1243ebaa73276241ac6a
BLAKE2b-256 9c7b5553f4203b94941c779348f909fd90dac9c96e63bc37e6d31f59244df99c

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12183638cbebf4b9ac98c952880872284dfdf2c9d71095ad31159f1177e030a6
MD5 c9de451730ec07397ab50687259ea9aa
BLAKE2b-256 f2675e27644df8589da4f41c9d27a61d57680fa93d9eff16b55aeb6e865ca13d

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.34-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.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b9c8e491fe6125dd8f48e7458183b6f5c2ba154e6f5e30287ed1eae8da452f78
MD5 46544e288a2f442fc36654516a6847a3
BLAKE2b-256 55ced28b023d21f9c4abefa1e3b0f981aecda7e7b871ec43801f9d33ce064367

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 313ce5a45bf7772fd247ae766773c27340cabb6f863a39a04241337349dfd29d
MD5 60f6815c4e5b472a891b90aa6f2ce440
BLAKE2b-256 c36e9c05d1b26c9b73a477f47d6800c6d2272885cf8b3ed938f11a5b000cc7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43de07e0bca8f590da2abc2d81017b3a73b7ac372d5c173cbd3c6838cefbd37f
MD5 e773808fcb771ca8a3a2fd6ae720fcf7
BLAKE2b-256 b9951446d8176e6bc67bd17d14caead82d376f68838598c955ba1f0a8a30a720

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3565a403653673cc725ff8132c8111918d81856de7e1d1f0ff288d65e12c987
MD5 9e0bb023e761fd713d697fce883c8499
BLAKE2b-256 f627e52581da4d94c66b5e0d315e1263e930da4ceed50d572c649c6d0ddb2a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.34-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.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 715bab5b628242ea51d2d16183a9001092e717fe3b1dd2e238662265315a8c0d
MD5 bf13363e65c94fecb765a5f001d084d0
BLAKE2b-256 fb7fb343206e4044624da46f46b73e9f797c48bdb3df3bb9214e176258bb96e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dde4d984472be7a1e2f0f7506a63c55742511e06eea58e436efa65db469a159d
MD5 043b02816c4b19af49a8650766191216
BLAKE2b-256 f935d2d4cb75f32379a11fb9ae59395bc4f717f5fd88f4d00eacbe15c188e757

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d232be13f58feff8061236c1081d612326682c631a0305eedf488feacc5b9c2
MD5 6efb4d5ae751695bacdc14ab1f452e44
BLAKE2b-256 7acb7e999ef32f2fa7b0d44d1a7803ec485a6819739e2bd2fe5a2f6efc906706

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77e3173ee32b17c6bd75ef36d80cd67188c372c4b426283c737e37c3f19ccfa8
MD5 618de659e901d3e864c53f9f01df1e30
BLAKE2b-256 d81075c97c81424bab9878f735f5db6ad3f618492af2588b5bd5caf65e145a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: efel-5.7.34-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.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1e10cea3b4a1b112bae71397ec3b5181207786571832c66bed7d5bf2e19ca2cd
MD5 d9b1d71383195635e41548b886d0b840
BLAKE2b-256 b78727d9719c84d0407a8faed3c8171f472599dd01eeef532ec2b8ae61d3d945

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 308554ab19d755f6b1136144f727c5ab3d6aae7c8485e8a6256e6683b3accdee
MD5 5d799ed06cdc186c2971386e749c5409
BLAKE2b-256 fc5bc0ee7c3f3ddb89dfeb6db9190bb348ebad1e5a21cba5ec2518d2287295cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e5e44194e9bd51758f065bfb7adc1958e527a92d92cb378f25b7f8444d007bb
MD5 12b2e2cbac2ede4c0dea19e15c9c36b2
BLAKE2b-256 e3a02011020e166bc113df505f58bf87ba083a581e4f01eb235a7bec5dd52757

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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.34-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for efel-5.7.34-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98442621c3b608019e47e7a199afad5b219aa9aac41ec35e1aa95bec10c60d8e
MD5 c09035d8466f5c6bdcf8bbc212b87af7
BLAKE2b-256 6d445d9e81bc2908ab841c598eb0f71fba7797f7caeab49dfe3304181769da30

See more details on using hashes here.

Provenance

The following attestation bundles were made for efel-5.7.34-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

This release

5.7.34 This release

25 files

5.7.33

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