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

The Electrophysiology 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.

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 (installed by default in newer versions of Python)
  • C++ compiler that can be used by pip
  • Numpy (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

pip install efel

Or you could use a python virtual environment

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

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

pip install git+git://github.com/openbraininstitute/eFEL

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.31.tar.gz (141.9 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.31-cp314-cp314t-win_amd64.whl (419.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

efel-5.7.31-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.31-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.31-cp314-cp314t-macosx_11_0_arm64.whl (254.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.31-cp314-cp314-win_amd64.whl (419.1 kB view details)

Uploaded CPython 3.14Windows x86-64

efel-5.7.31-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.31-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.31-cp314-cp314-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.31-cp313-cp313-win_amd64.whl (408.7 kB view details)

Uploaded CPython 3.13Windows x86-64

efel-5.7.31-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.31-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.31-cp313-cp313-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.31-cp312-cp312-win_amd64.whl (408.7 kB view details)

Uploaded CPython 3.12Windows x86-64

efel-5.7.31-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.31-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.31-cp312-cp312-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.31-cp311-cp311-win_amd64.whl (408.6 kB view details)

Uploaded CPython 3.11Windows x86-64

efel-5.7.31-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.31-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.31-cp311-cp311-macosx_11_0_arm64.whl (254.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.31-cp310-cp310-win_amd64.whl (408.6 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.31-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.31-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.31-cp310-cp310-macosx_11_0_arm64.whl (254.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: efel-5.7.31.tar.gz
  • Upload date:
  • Size: 141.9 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.31.tar.gz
Algorithm Hash digest
SHA256 09f9c8a85249765d123b5a54baeae033977b77399e0ea6ce48dab06d7fb1e7e9
MD5 9b3c4dd6c7a70aea0a24a3af79dcfc3c
BLAKE2b-256 d8962d8a411ad53fa7563384732b822a3e8ee25bfc2d939e2662e5c03ec5ab62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.31-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 419.3 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.31-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5428bf0f2316a70a4fdf7b849d3833ce649a16330d3d0e95e8f7c12218d4ce15
MD5 b3b0ab6938bb11ec6ec39daedd505e3b
BLAKE2b-256 b7cfc27aea731499f656844622b16a67ec5af80452d9e5e499bce5a2283dcb3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bb409848c4f280cac44541a6b1cd4bafa724daab6dcf99b8005f57df23d415a
MD5 580b8cc9de78ba061d11427786054c62
BLAKE2b-256 24f322f57d4d3449030b87441321244b1f585ce28c5dd863346ae85637a9aaf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edc697c0cae99b87fba038a3b8784f05a7dbebae8c76c3b83d2db78260f96b2a
MD5 7fd61cbbb83da6d389d9981a57db85ad
BLAKE2b-256 4ca2fcecfec21e3ea11efb25616d10ec28c77b4fad275df619c2307b8957a8cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b9e2976fe39c0d3fdce7ae445421d90c042956d6b063aa91ff426e40a2c0463
MD5 014205431b399a080aa3c7c8e38e246a
BLAKE2b-256 db65d6332081825cd4f2bc8dec8f00d489427c7b5359f314e7a951f2a331fbde

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.31-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 419.1 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.31-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0a492d121170f5d65b249764ee8e396e557bd57b640b2836b49c2063f8682e36
MD5 58ad585aa731e810f0c468ec0323cb1e
BLAKE2b-256 6dcb75eb8d0e0223647a385f89dfe9c4a9f3962ba904f44ea10904972c1b245f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e6c874ba4f9fd3e5ed5465b3f6a3f8b90e34351dc587a22f550e9fc7c4707a8
MD5 f62d59c6daa648aa63ea2ab14df432ab
BLAKE2b-256 746ec0cf0c9a60830dd1dc1556dc96e8553d8c3a55b0108b98700500447579f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f25b7b7390d0c4b186bad5b795966a753edfb2551eff69542f04f561e1dabdc
MD5 6b59eefe800a3831a61c95c52f1117b1
BLAKE2b-256 4c856d967e0d02cdff8cccbebd5e95f39cfa4566b63f6d90f604c8c1be7a09c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b4c546cdf5cbd1fe9f721b3cd9a7c44dbc652bbddc9f297bbd2348df835817d
MD5 0cabaaf95029c9e500e73d3793718410
BLAKE2b-256 afad3c444c40cb1391521d7b47792029dc65fc18272d5fdab962d83db5ee2640

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.31-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 408.7 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.31-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a2bfc434e1c444f2f96f86fdc6ada751a020ea2b7d0cec2c2702c3b819e45c4f
MD5 1d43f1ecb27ed29f3f74f80e5a64a1ba
BLAKE2b-256 09883017bb64c4ec2c10b7e66f68c0eb3bf0c59ce3e9250ee2e762910f7ae554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e6c4c090a0b3f4d1bdd029ee3c0ed66b00439356d44662c520481e22bf0e8ca
MD5 ef08882257d68c4dac540f38dd925a1f
BLAKE2b-256 93fc81b312cdb531bb84b498aeba97ba4557e81d56917d4c35d74aa1ac30ae62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04b1e16f25ad13ba9b4e066f82a86552983d420ef5ca9af9346ab5add9a074fc
MD5 480d27e85671d638ceb766e1337f5aaa
BLAKE2b-256 c9b9d088a48bed74b64e83315d83059124ce339c366dc0f5852c78da1ef00cc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63da32fa53345d31fef19f7197fbb24690b79dc40c1056a1017e36afc28ec952
MD5 08b5b2830f51dea9ff1cb29ffeaf0904
BLAKE2b-256 8de035eb68bc4ee5b79cca7ca1fb81f5379d69939b1bffeba5726b60984d6770

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.31-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 408.7 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.31-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7fc1a4663b7805659ee480da2945cbd9664d3f4cf0407f973a4a5983a2732c00
MD5 99ad67eabcbec215a3792ef44ecb0ded
BLAKE2b-256 25315e774215a58dab68aaa8b6b32c24af72c1d8f6228e6ee1824beb15ae8f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39a42d333fc092b4bb875e79458318b725486635ca7d89d71ae292d24b13061d
MD5 25888ab8f3e8e7bbcda41623a9bbb472
BLAKE2b-256 6902ab1247326caa55f982b5038c62f25019f6f166f2505c1517a8ed6db317c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 566107a51ac533a99830483457c4af6f52cbdc21cdcbdb25bbdef6716a2588f5
MD5 fb57aac4bc7a165b7585a5acab04e0be
BLAKE2b-256 48c47dc1e7c65d9773860acf23658438f1cd6cbc26de73671e70e430c2fe88d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07e5e7a572010bac00a6790adb8d44f227b5c7a6a3db75230866cc06d70bee9c
MD5 6071c61ad0e3872eca7c6d3d95551f9d
BLAKE2b-256 3ad1130e656c398e5d207462dc81b5e736b7f1fbf31bbf3fa2c136120e6b306d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.31-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 408.6 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.31-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9456a186b9a100108a9c655df38db2efc057eea78da59446635a5db564267621
MD5 4704f626df18686a79801a61c67b9134
BLAKE2b-256 60932dafd66a83caeeb531e88fda797b82696114a5e655c6dca7581e02191a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f3d5955c389cdee0e084da15cc34875998f1abd4059836dac80406c4c07b675
MD5 9be473c6cc84d6835a93d690aafb130b
BLAKE2b-256 2da8a7300b44ae58ca67d76a40aed93a737ddf88ad322a99fd18b51ee28d98ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c644531abf6fea323c93e852f292cda6286f3a4f6b6ef07381163267b94bf265
MD5 106bf28b5f38d508275f5d88527665b9
BLAKE2b-256 a5f824640d75e16aa7e5aa05c585f83918aef83fe92ad7a485adf75bb7b479d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46d67fec245bc54a4aba98bd05b32804f01d3c89a58c2f1b2cff40ba75887916
MD5 56ff68210041f05f354a01d01fe5227e
BLAKE2b-256 3fe6f860ac7ab2f8df17b391a4f565d8f592790e9d7fcab29a73fce3bcbc496c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.31-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 408.6 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.31-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 daab3f8d789cc3869ca5e5bec5335fa3f4c3e8f7f50191b3e19062f4722d1d56
MD5 c38545e6083fd0885831d871b53e678f
BLAKE2b-256 9450a6fbe8345b406bc9f1b89d991cec0a603ec89d71edc3123f8e88812759fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 830e7be4c0b33277a151f17d6d0c840bc8dd1607bc32d052fa538a4bff03681c
MD5 c13aa5ffafebd13f91882a134cbad813
BLAKE2b-256 1bd5dc3df554407b8a381acaaf09a7e084a2130283ee5788b872d410675a3250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fc498d2ba7a98f12ec1f9cd8b27eda1670e0c08592fee31a078ed2c11ba49f0
MD5 1ffd021bc096c495f763636d0f8468cb
BLAKE2b-256 78c448a867535b98cb28e04449a1a8335b8aced2b050184dd8666b7e4b4411ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.31-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6d457ed4404838d7817b6819c5b068488008efb1e9dbda3a82513959de3b1ec
MD5 4a78c981abf9ebd3cee7b8ec89b294a4
BLAKE2b-256 345248a3203394fde82ca2254163b67dbd48d55dd7eadd6eb89fa29e947259b8

See more details on using hashes here.

Provenance

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

Supported by

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