Skip to main content

Electrophys Feature Extract Library (eFEL)

Project description

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

Introduction

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

The core of the library is written in C++, and a Python wrapper is included. At the moment we provide a way to automatically compile and install the library as a Python module. Instructions on how to compile the eFEL as a standalone C++ library can be found here.

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 "Cite this repository" button at the top of the repository page to get various citation formats, including APA and BibTeX.

For detailed citation information, please refer to the CITATION.cff file.

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

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

pip install efel --user

Or you could use a python virtual environment

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

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

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 Open Brain Institute

Project details


Release history Release notifications | RSS feed

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.29.tar.gz (141.2 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.29-cp314-cp314t-win_amd64.whl (418.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

efel-5.7.29-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.29-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.29-cp314-cp314t-macosx_11_0_arm64.whl (254.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.29-cp314-cp314-win_amd64.whl (418.8 kB view details)

Uploaded CPython 3.14Windows x86-64

efel-5.7.29-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.29-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.29-cp314-cp314-macosx_11_0_arm64.whl (254.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.29-cp313-cp313-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.13Windows x86-64

efel-5.7.29-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.29-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.29-cp313-cp313-macosx_11_0_arm64.whl (254.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.29-cp312-cp312-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.12Windows x86-64

efel-5.7.29-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.29-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.29-cp312-cp312-macosx_11_0_arm64.whl (254.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.29-cp311-cp311-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.11Windows x86-64

efel-5.7.29-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.29-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.29-cp311-cp311-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.29-cp310-cp310-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.29-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.29-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.29-cp310-cp310-macosx_11_0_arm64.whl (253.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for efel-5.7.29.tar.gz
Algorithm Hash digest
SHA256 62b43f3146d151d0bb6d938ce4482a55fe48550d4b0a8c53895ef6205023dc99
MD5 89f20c2f8bcaa98ee1e4b178df52bfe7
BLAKE2b-256 c64f0841337bebf6c740a49abbbc439976f354da0452cb1da0a67466622cfe44

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.29-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1fce931e837740f4876964f2f4a76d52090fdb48c957ca43e163691a6da06dfb
MD5 32cf579efe7bb546162aca4b33930ff1
BLAKE2b-256 cd2707c24b607b38bd5d0cfcf165025d4707e6ab9b50e196f42d3b958c0cc622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 edaab78fd8fe4438dc1235ce86ec2926ce04656b60d21f7133ba6611cd0e5aeb
MD5 4e6840a8c3822c4200204613b21c74e7
BLAKE2b-256 b612985fb85ce52e9e8bca0a011d0c5ef2972467d4f99f7afe26281f1e728ff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e248e38a2f880ded95ee490705a454386b77ebe1b54a7473a362002378396ed
MD5 8af43cc9e8c4298672444677013d7db8
BLAKE2b-256 3707c63b6531bd323986111da481f85a029bf39bd8606d116f6c79a97379155f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7fb27906d6a56c22d97947185f46f85772883546e991c8fa4a1e19abc54b70b
MD5 ce8d24fe11f100c8038c9d5afe393e72
BLAKE2b-256 caae836dde2d7b60af9d8bad70497d1e24bf4ba78b65fe034cd6f60d955db42e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.29-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8c3c3348200fe05a53760a71b33fe51b89fd73e9904e946e83c21f4f5df967e0
MD5 3bd6d3d088841c6424b82bc0fb548090
BLAKE2b-256 9b2e0a402163a75358b732045117742a84239fbfb1d08cf19ddda565e617ea2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9e6fc335b8f158eebc6ccae066e5d44eae5b8d47f7e63bec6819ca9ae96faff
MD5 ca1761f17494ecd62e7b50c27e908be4
BLAKE2b-256 3655cb8dd1e6f1f3aca6edfacaa2f07d609049e39da22908f0e5c02d9be56ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62387433c792e5dddfb305caef54cf86c3d374a5a51f77725ad5427140a96a23
MD5 dbdfb4b86e647a50d87397322f077a05
BLAKE2b-256 e19a4fb7333d1c38b34d4a7fb943a9b9492e32f4ddbefa1976544a864ea2b1d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13c913227b72fd5eb829ffbd8b7ad4cb693e69ac1213189c3853d6c597c8df6a
MD5 fd2e65a4a3b401216d33cd15329bb344
BLAKE2b-256 14dfd9d34c6e1ade8da6fed7a3590bff1b25dcb3bf751179282a2bb23b684371

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0e038d4165b0063b6fb99ac96afab145c226cb0f9cf9d0dc3dcfa8a74415510e
MD5 001acd8798d4c1e43455c4af94e3f955
BLAKE2b-256 441912bd68a29185ded05a94541c08d4c864ea30e2439d5acf1b3e450332d89e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 553b0805fa682fe59a15fa2ed67621db88d5f3d03ce4e605e0cd20648a046144
MD5 bc92542e3d676b1f5f595e8b21054562
BLAKE2b-256 d39fcc386c970b7d682d066bf06fc8e4974ee7ac0ada1dc062808215fc865705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f55661909d3aef670bc44fcb595f1067a5bad19d3e9b363d3b4b43c25bd2d2a6
MD5 f46b8534c1e8e9484a1ed1f172f198b0
BLAKE2b-256 47dedcd0f103e490360d727c35786d074696335dcdb90c28f6820014bd9386b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48d6c5340d7431ff961d4c44204c47417910b78717b2f601db900097d3bbaf9a
MD5 8969e6c88b075ff7a89dbd467b62dad7
BLAKE2b-256 deb4206b712d523af2f5cd7177c4aa01d5e5c95583c2c376f9c6c35818a29275

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 031f8ccdf83a88384bb0365d12d9c4c8a0dffd454fcff4dab401ff5261c86b7e
MD5 70728f7539783bf55f8e9097c194a278
BLAKE2b-256 25b1a23864d7985c133c4c29e9ebde2621912544edfbd60054422a3c3c462d9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83219b52a0798255f139ced8a044e1a50a0340175b56f3063f3fcf00450a8d8c
MD5 e7afe4e6f610ab8b4a6b6e6090cba707
BLAKE2b-256 183a6749ce128754c3e708f6276fe77ab0deda23e262023e67b31ea534dd1881

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 407b653aa5114bdf27030b75172bc83c41668f31de68cd132dcebcc27716419d
MD5 b7109e93fd69b689eafce618b24ab1a8
BLAKE2b-256 0dd98a78d3afb79e5da51339877fbfb540eb52d18c2c26d8a3a6a4f59db05726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b454d44bcc5d0505d76240dd36c92756ae994d9eb445174e20fe80b7a952faf9
MD5 86a6fe08bc369a45d66f53b2872acdf6
BLAKE2b-256 69b04fc56d501ee25680f53d4d49114c052458c4b10d3c13350ed23ce76292fe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 570c9f8460370d0f1a13ca2c47b08486e4bf9c486aa137bc86167cd1ce4cf6e0
MD5 b0066727934f096f18e6a144acc3789e
BLAKE2b-256 a5403b4510907f55b49d2877c359f150e16d27f6ec0a1b9bf7c4a98959c7f109

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27576c8248db7d7380b65e43bf012f320098d3b01de57cceb1583558ba77fcab
MD5 27370d68cbeba6513f23e00943cd2dc6
BLAKE2b-256 512580a0614119e45e63eab99636c746d18529de699f567aeace67b9111bda2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 035f6eeedebbb97338c0f101ae70ce516951eb47e85eb2698aa1f4ed266c4497
MD5 9a24493beb4880a35009f23deda10785
BLAKE2b-256 baeb0d1d2e2396e58bfc8c9d63f261c179e9d5519bdab4d35485092e06d592f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6020ab5d8f87634f9759e8622e031bcedcfa3f29bc05f9fccfae97ccdcc4344
MD5 fd05b4ea72a3dffbf1272b222357ae07
BLAKE2b-256 e5b080f9d35a2085dbd88cec2cb0a4ff8fd473cb03ad6a90cc315d9b7949ec19

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 622b09750a309c756cad2cad5730e11eee8727ef5e3860c1c685ea9bb2a9791d
MD5 a5fed50dbe3760f5b0aab10de62b65f5
BLAKE2b-256 89b885d1f802ad7e8b7461f198fb524785f8d85bd3d271c68cac7a73ac25aa24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff3c0209d542e15da13f56f27201e3dd43291fded0fceedf7071beebd3f58d71
MD5 5ccb9971812d37353b4dcf09cc2489f8
BLAKE2b-256 d29c4d8a775660bda11e14f05b10553b0cc773ca0eb474df4c61f3c9cd4b50d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb1c7c09951942c4cbeef392470c3d5dd7a3495585a9777fdb89138d4ef34bfc
MD5 2aaad8e57a6e1714e3b1b6ec44719dbd
BLAKE2b-256 68e5c31368e9c055d6ce73f50b44ae7624e665f579962d58bc19c8354c791158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.29-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b732cc0e8c7da315b9320b38c5e2dae7cb68b1ba765b4ec6834fa6f000fd932
MD5 d7006df7d71c57f373f532ca35db6639
BLAKE2b-256 55d35681e65e9e04ec1b1f810a8eb8f22ae66f3e22aa0c0e1da25ca216704d5e

See more details on using hashes here.

Provenance

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

Supported by

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