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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

efel-5.7.32-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.32-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.32-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.32.tar.gz.

File metadata

  • Download URL: efel-5.7.32.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.32.tar.gz
Algorithm Hash digest
SHA256 ecd1fed617049465a183c4609345dde69dbb38c18b2b313072f8d3b42e820727
MD5 5582c6b71f81a1c35591c9274f9cf08c
BLAKE2b-256 b1b3f18383e62684601a4860696a19c09ec5599b6ce6624617f736459f0acf4a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.32-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.32-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 71e0f6ba73f353fd37d373f40a32fdfe952931b0ca808797d879094b44934c4d
MD5 3e771346f8ebf92872f12a1ff8e236e6
BLAKE2b-256 923b3aaf580f2919ae98b7059409b14149fa4e36ad9a9b88cbd14f79ab8f6246

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fd4f161871b18e6b298456ed32984a3ce5b75cca306addafb3fa77bfda7a20b
MD5 1b5fae7ee2af4d7bbe78a62b732f449f
BLAKE2b-256 55104e1a73fcd47b8084aa4123366f52dd7ec36038fbd4fd8a87ca208f08671d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b6352d868e4666be0815e2ba4142d098cda760ad8c3d2eee45516d7acf5d764
MD5 d00363cf448df4392d998265c3f02b5d
BLAKE2b-256 ef2c2c615e280f6afa8b944d43391bc5f581a8a6f2cef603bf92ad34b8631177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57f7660434adb528b15667c644ea08f23a62229e2c04d7de34d25c2c1f72a39b
MD5 8938f4463799451bf6ee1f11c9db1dfd
BLAKE2b-256 2411fff8b744a7c84a6167083a6f92726a5e1e1ec29523be9c29dfeda4a686c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.32-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.32-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ea3d434a8bad8cf287812edd6ee5d6e69d7fd587d8ad3dd4afe66a04acd711ef
MD5 634b8479c2984c5627caa624726aa165
BLAKE2b-256 0a93b27e6cd6c745e017e778074d7f33c81e8adad599deb6fbefde0395e02593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 629e6c8a2b1a13c6527593b5d13614cc90f71a0e6aff0b32041f9546060aedbd
MD5 2d03547f2b5021d97d59b38aafb05a7f
BLAKE2b-256 7c9c839c765e65692c88e079e5f837e847d8192865894581cce4c3181fef9abf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d166d032affd377ea4e2db78806dd4eda49a0a16d87de8c487e5f98c1bf6ee72
MD5 255603b393cac0ac33c63f076ad0c466
BLAKE2b-256 dd618444bd4587211adeb7cef3e5ee8714add65d81c38a0cd4744d66085b0c82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4441112a56f616a58d38837b369b26c27c1525261054455cb7b65fe33f99f24b
MD5 10c2ac53d4b08777e76444ccf4c350e7
BLAKE2b-256 be5458f6b1ab0397d2145a1158e5993b0af1422a308d66470172c7b0ceb4d30d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.32-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.32-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ac8e7180d34eb23faf46ab61dc02abccd169e71b42a1f68a82a67d329aea17f0
MD5 73820964a00a4edc8c4e93cadd837ee3
BLAKE2b-256 55f7b83340f94e87b6a30bfccf72beda9045de8c851588db0fffb5aa597f4e44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f75e91f2da32ea8b56f8d2dfe238ec9d74f3ae2d0cca4fdd292e3744afba6990
MD5 f039222755e8137ea8154fbcd5a8810b
BLAKE2b-256 22d81938c58dea64064ecd08cf3e8f3b020525ac901e1d139f794b394f866f51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5aab66a9e8f38caef713c96a6bc45488bffea278e3971621161b7cb37642c9c8
MD5 3c731541eaa9b6995a7f928b151f74c1
BLAKE2b-256 7bb3e696085f4f650b60bf09f7fc1e34c7089ce68ee08b18f6d306f023801741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 696bc6376d5ad0ceb58e5ce371097a8edc881e890f22eeb27099a28c5fd8400b
MD5 d496855d326734da14945d37d8faad43
BLAKE2b-256 edee9dea732fee0701f633d477394bb7f02b5c3f903df77bcbd7915175f617b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.32-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.32-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bed238f7a668b82404d439d010fbe65a52abf8bef3e8a3de1e3dea15c0452d36
MD5 8e0f9177c6f47cb74482433bc923da0b
BLAKE2b-256 15908f382222f3ec457b99fc2b2d7d29b2f8f4fa288860e6d042d357e4dd0e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25bf60e1c86bacd4b0691c15a311f65fa150c6a2e60f1ab3e03e12fc93bbd21c
MD5 d0c997cf643d1e4a200f9a5638d7852a
BLAKE2b-256 b7b035c8030d9eabf5b1ff995e3b5ef9473c504e30ad01e0ebec99db6db428d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9099b238f64d9452c0b4a1898599079ba92dfad8808573e401acb0e2d216bc68
MD5 8484d846c0118ccd896cc227f738f9a8
BLAKE2b-256 fc8712d0d4ddab3b3d269661cdf32e2460b2e5ed67a7649423bcf9c58bb38dce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff7a62cea99a386b041f820d17b951a30062479b80cf9f98a6c443b4bfd91f77
MD5 e0d0fb75292f322c3fd0664685fae8f9
BLAKE2b-256 da086e18075e81271e165014bca2b9496fc222767917c5b2a718ea4972ed3349

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.32-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.32-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 265ef126492eae96e768c416128542da19071ba3e6588d499a82f50f5568a787
MD5 2b1875998bdf38431c8a48f5ea965233
BLAKE2b-256 47b083a0cbed54b4ffc8802d887198662798eac38e6ee397d0b3e9a67047a02e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b3b236b6a0fb124c3e36fa925f6dbdc1dbbbce621c4296f5c325d3cc06c070c
MD5 c5691870f265b410adffa3a67ac4d2d4
BLAKE2b-256 bd95591b3105c1360dafc23ee22d3fbb4236c8f25870f711e6596be9e8bd6a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc9c4e89bfecd7da27b1b5c18717b20c35e4c88c54b41ff082fdc17ea8f5b80a
MD5 10213259585f3de2822610de0a9bd38a
BLAKE2b-256 7b21179fb54e3fb75bb6ab98255e0a9cc8082bad13a45c2e2f51e92edb33d3e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3251482368f3ea22f5d47861737cac5b36af3ded7ee4f825a2c1b6fdad49abf4
MD5 2ad284feeba6a37edadf486f5d2a3bff
BLAKE2b-256 c96350e96906dfa7f385c0a9104b0b06daddfacc1823072bf1483ac022e7f990

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.32-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.32-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6f610f4dcad0d58cd605cb2f8ffa17ffb39bd02c37bce9fd411f0a3cac0c271a
MD5 5a0d664858228dd8ba19f388044a56e5
BLAKE2b-256 5471a2ddfe81ad8856564c60c62df67f61b597133a127a22d5ab27bf57941025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec9d205723b0abbe6ad7dc6014cdbe153453d9995a77b0370495f31a635c9d8f
MD5 72555eeea8251592034b973223c5d3f6
BLAKE2b-256 86b80da644d383c738fa11b5eadc40b82ddcc5836e14dc7ea27bb86bff36e077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 910fe231a78bf3301f84434fd6660922185cce7bfc092b14fb29597718ad71c7
MD5 1de2cc10b7348ee235f694c1f85dc7ef
BLAKE2b-256 aa2d0de792682b571e106c27f51e4dd3b40ec52c6d551051e4fe9da99f764070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.32-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b390c07be4b5502a3c6d25eca07415a40b15d66ca52e22471f9c960fcfdef9e9
MD5 25cdf0f40dc5015960df2e12463ba6fa
BLAKE2b-256 fdfce93d1f2579a0333074924cb2cf9be709f44576b87152efabd830bb7e245a

See more details on using hashes here.

Provenance

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