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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

efel-5.7.21-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.21-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.21.tar.gz.

File metadata

  • Download URL: efel-5.7.21.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.21.tar.gz
Algorithm Hash digest
SHA256 934a014ef229231dcaa299b75e558f98b9597056070e3aa90f0db4c44a8f1c6a
MD5 20e2eea07dda4e34868bffc63f365274
BLAKE2b-256 e80cd86988ffa3e9e597f6a514245f492fb102334ccc057e897d32ccc28d9791

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.21-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.21-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f574ee55532f8ab931936c5f97fbeb4e16846edeade6d7ab65749c667a86f045
MD5 636aac61d84afe3daf04c3d29fb85dc9
BLAKE2b-256 0e5229f4bf32bf84661025e278d440adb9f92f0a93b2daa8c4e9b25260f48ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f7e2cabe2f640ffc8fa209b79e731054822ddc3a953630f9550f86c6727f7ae
MD5 c787ac336e1f9720c3b3e6592ce9eb4c
BLAKE2b-256 7c93a12178c2d3086cd1e117b74936b6b9a5ad2ce93a9221bd44f4cf97739599

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad51fa7b28fb024c1fca4301acee70a2bbe3bc24bb41203516306d80c9a8431c
MD5 a1768aa7e64a06bd9c9592b623b93c63
BLAKE2b-256 303f59be02473e27e515d3d535d0bf5ed05d7336c34b651fb52f6e44af3c33cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.21-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.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2427daf4f23a0abe13a798cd0ad8c58052a50dfa86fc517042c4625d0480ff8f
MD5 fe7a79ca2c3847a23def6769831dbb3b
BLAKE2b-256 03f22c5d4185a385feac9803f7070ecb33f390d234f1a5d17f37f68da4ddbffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73c7386737af43c45947361e53dce3e0ae5bfa72b7e50d6d99e4fe69596c77b2
MD5 5b6db76ff58217ec006d44f77c4e3c54
BLAKE2b-256 9561f4740bae259fad21aabd016a7ce11c15b90e8e539026d329c4b446355e31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85eed7e7e2c63f9b438d67ab8c44bc9ac9f4fed76985dbe529f464afed13c47c
MD5 29980f4bda5a3f6e7029ffc5bd70e9f9
BLAKE2b-256 3f1edc044030ad2595a46955a2f4d587795062bce2c90191493513b33bf42214

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.21-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.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d015839dd663f059f849b1565c37d17772bbf1ad9e349f1b6c763c26eb8ee1d6
MD5 45b31556bac9a8a505227ce5cc1dfc29
BLAKE2b-256 5b0ecac2774023fe957a3f2ba84052f97e32505944032653bb9645f987aa9d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3475063dc79a266428dda1be0fe9547b87b21d771db759ad992242903053f0d0
MD5 4a2e704bc8cc8a201a281a186364879f
BLAKE2b-256 719be2a28f865d424657d1e5cba5eb023f22a1372c370f2ab2c73171919eba50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06605dad05fe7f9d73a6b3e4b4bebf33dbb6eb6eae3c3c9bb275d7cd7f74ac9f
MD5 8c768d926af657560a4d0a79bf3ef529
BLAKE2b-256 23bf42951a481dc644eda372faa73b2d0db1ce4613e7235753c49a80bb6520a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.21-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.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c975dba2025713845a43151e62e964205ac3bcc6ad4e884df86b95d7df3b186e
MD5 a2d815677edd1b70b5f98afac6f4c84e
BLAKE2b-256 c66fce9dbea3f78fe4dd444db41b79ddeac07dd21a2fd977d779c468bc5a3b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25c49ab84d12be627b156dea4e139067826c3e6cfd0e2fc6f11b4a8a222fc6eb
MD5 abb24aa693c970515b19bb9fd28d1881
BLAKE2b-256 5e470289a4f752bd78c56e6155fe88da466b5ea0fa364038b08497dfb280f6e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65b17876329ae2a1f4ae30a6be49f3ab9f807cddd53e65a1e17dd78a5e837ea5
MD5 20d6234831e874f5e2567b6c8470c785
BLAKE2b-256 c013e5868b9e09e72605039cf75dbcfa5bd0cd93580a22941a1076563aa63c0f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.21-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.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4b4389fe485234f88ff872f8ba3f57fa563047d7c04df085f8e2e76fc62783d5
MD5 546e35a647e9969abd3340c30460a53c
BLAKE2b-256 f0c8b5f5299b55331ca5d67eb042ca9517fadfe2d8a9dae044891b7013f8ae6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f4d879189992a1e592972ec0acef077cb48cc01f27fc0fdc2e49e6f91685600
MD5 385b5a366d5f092976ae87a959011d07
BLAKE2b-256 de99bce22155be4791fca570c814891b8247b9a198370ee28f6ce27700ab02a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21f89761ea387fb8da02a963bacc265c2ecb548cdedae3a2e4b34c8d0aae9878
MD5 67419b4724589d92cd3d8518217b4bbb
BLAKE2b-256 1b7c5a4d482afdeb9d3f031700bf5344dfe22300491a13d4dea36e2685d2f249

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.21-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.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a9c26b7678ef939afd3f35bbf7a1a36ca01bcc036d748b6d566a11ccbadc436
MD5 219ca2cf35f101e15fff65113d1f6dfe
BLAKE2b-256 7ebbb5509dcf1034eb2181d95ea44fce290cff87d659810534b1ce5ec818613f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 691a4e85630eea80fba76610a420973121655d26f928669df2e5a767acf5b68b
MD5 73d04af44c230f5c9f6f539a6ad8a628
BLAKE2b-256 216738591f7d98a55b9fef76420ad49f36dfc7191dd6ddf19743b248b7932c4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.21-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ecdeda05fd91a200dfd7a9ad14202fc5278dbf1a601dd3965efed73a1085470
MD5 313297b68852d33dd9863301d3e44b2e
BLAKE2b-256 f9ad6523ebcd96b9e02ebdf4ca4c00877e59ec365e4adb3189cd17256a84adf0

See more details on using hashes here.

Provenance

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