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.22.tar.gz (140.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.22-cp314-cp314t-win_amd64.whl (242.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

efel-5.7.22-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.22-cp314-cp314t-macosx_11_0_arm64.whl (254.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.22-cp314-cp314-win_amd64.whl (242.3 kB view details)

Uploaded CPython 3.14Windows x86-64

efel-5.7.22-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.22-cp314-cp314-macosx_11_0_arm64.whl (253.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.22-cp313-cp313-win_amd64.whl (238.1 kB view details)

Uploaded CPython 3.13Windows x86-64

efel-5.7.22-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.22-cp313-cp313-macosx_11_0_arm64.whl (253.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.22-cp312-cp312-win_amd64.whl (238.1 kB view details)

Uploaded CPython 3.12Windows x86-64

efel-5.7.22-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.22-cp312-cp312-macosx_11_0_arm64.whl (253.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.22-cp311-cp311-win_amd64.whl (238.0 kB view details)

Uploaded CPython 3.11Windows x86-64

efel-5.7.22-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.22-cp311-cp311-macosx_11_0_arm64.whl (253.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.22-cp310-cp310-win_amd64.whl (238.0 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.22-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.22-cp310-cp310-macosx_11_0_arm64.whl (253.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for efel-5.7.22.tar.gz
Algorithm Hash digest
SHA256 a1e29ab55f04297bd7f1b5d269d786f5fdf8d25c193ea7242c8b780fc596fb34
MD5 deacce9275ad3877b36cd4e839d37d18
BLAKE2b-256 2207b93541840a45c4f823308c09ad017c21d17ad9e3b83ddd08c162bb8efac1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.22-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 260454026eb9411b84522ff52465a6f54c7006a64d461c7caff99aac9e9888ac
MD5 a3af786f4f62844234cee647a6d292a0
BLAKE2b-256 9e5148e57314d61972e39fddf34eb26a5e06b5aee295ffcfde9464c2e5b18ba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3dd5ba0c9919456dac2419fad6452dbeb6ecea4dda547b57c839910b33108dc7
MD5 0bc5717836e80e153a02e7048a16ae82
BLAKE2b-256 0e6594d23b4cdd30fb1a1389857bcc8d2c52fe34bde2416d889a6569bb077cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df8feda1be7bcd2b3015e85ab65c3d6e188b40a1b13ff8b34c2d75314ca65bb0
MD5 752e4f84bc510be3ce627dbf57661591
BLAKE2b-256 f34a58fe795d80bde496ab8b394cb5a5d8f9f6f082f8a3b907cf79bfc2129b18

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.22-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 88050931419ce2fed06ec6b87736aa717d28df06b82271180f088117b6f3178d
MD5 8b38d56ba55e37cd47c7691a5ccb6b95
BLAKE2b-256 7dd837332e7d3199a7ec371ebadbe18bbf379d809bf7f6bcc08abb491c91e9ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c4faefe69e483a1045e50891ca122cae871c0c012c897ba8e5a334ff09c7f16
MD5 55065b7ee91eb0f6d16ca51c08bc8235
BLAKE2b-256 22ccbcd7020dd42e4eb7d301746e3dc5d6264af63205176e1660f66277698d18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f286b17fb7f56364d17a259dc39465c1c9899347afaa51d9dd462f3e17e71b3e
MD5 ad7d68c25641a31363d2c257f4aa67bc
BLAKE2b-256 72776c00d4655e0d50804179c555b5b12d3261faffd0e62b4adbfe3828633596

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.22-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab6ba64ba5820575a05033ef0fbdf81c41e024db18fd80e0f739b0025a8d5a08
MD5 d595a9fbccea96662e3f3ebbbfe77745
BLAKE2b-256 3c96fe9b9bc2e190b07d4a443dcafdc5649d607a246190d660ce1bfc2f5e3a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c14794e9c031c10822d228802a99ccd83d12fadc929102f21a548df245149c21
MD5 04f8d01917995d91d63acdea8fc6b88e
BLAKE2b-256 a446e1c8951f7d5165dc2a96831007f4d07f5713ee48b29d4706051bbce17ac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cd7f769ed974b1919005756a06f0ca981633f7fa12e73082ad0c8837e507af3
MD5 65d139e197cd6ca4be7be2f756e033ce
BLAKE2b-256 10e95f0621b4619013711c70f92a7cf5b050c4cb3aab5f653fa6d2d1483b9dbe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.22-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b751680479662170df7b64ecc882e0dca6a18208012f5869541efd58c418148
MD5 ab6b14d6dddb2e7bcd39c194c05c7f1b
BLAKE2b-256 a0e230ac4bd92431d7496a606bdc202c294d0c70036d9d0a750e330e19cfb15d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 424effba978067bd17e76d65b2a1d89921f9e591e00eec4fbeab3dec7b002fd6
MD5 c3b7ed531e246daaf846d0bab08bf909
BLAKE2b-256 e4b0ae87f503427cf4b12cabba3014b6b475fe924b16ba1c2e8ecfec4325e2b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d600d3ab9fc27f250e4b32617ff79fe816e1d9e359c7288c42de1d5a7fa323
MD5 64a4a6a3f8a4b08db6be9c37dd4b9e8e
BLAKE2b-256 0f81a5b5db700ada0983a7c9effc22b62ec5d90c9f18fe373a90c9feace095a7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.22-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1dca145b4052aed362ff07a60d18a0ca9706b34403d792e39eeb7f5eda21e478
MD5 e58f74e385c1c03403a55512652ad0fe
BLAKE2b-256 6d870874758b3cc91c61bd0f7f257036d4150cece94d87774641ccf8f0a8027a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49de507944fed97970b12d1eff7f326d1d904b17d556724c25a0814066e300e8
MD5 f71a7a4d9641fefa4f5a74b5e9c753fc
BLAKE2b-256 55f7655687afd05fcb4a2d9f9e19557cf961781f7824d5013f4e18ddfeff3b47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7a242e741c583cafc9001a8be4bfb92c3c9c5b139c4ad6aa8fdcca8730f23ba
MD5 38663c06f960a383ddd9e8b29e3f82d0
BLAKE2b-256 853faef52225cf0040b64add509ca54b01f930144e8171e822ec099b835e2ec3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8292ab32a41357c23afacf09f3a21b0eb1447b8397f87a7fa255fccf358bdfad
MD5 7f34f67551cd9f5cb864b8ee2b06e6b8
BLAKE2b-256 b2df1d5a827fba0a233976375cbcbeaa793542ed3a29af6ad7af20a32c55f4fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c409e54e1028d070c0cc97843f7f7f50c14aeb1b6a60d6cc252dc6e7010ff656
MD5 9df497ec774b70f93b4e41e763d748dc
BLAKE2b-256 b200c26c7975460a75bda4137340667c8b8a3466e930c7a13f8b9af23654fad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.22-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eca2447fe6619d07db557fd1787708c33159f316414542b4602b23d8fd0de2a2
MD5 c0da5ac31d764e5888dca77881d2dfe4
BLAKE2b-256 3939df295d72ac1b86816a8d0fdc749722c37419333b185ac603e30834ac9550

See more details on using hashes here.

Provenance

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