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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

efel-5.7.23-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.23-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.23.tar.gz.

File metadata

  • Download URL: efel-5.7.23.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.23.tar.gz
Algorithm Hash digest
SHA256 4ce6ca44b649243a042edd8afa32994ba306c500520e7085f9171767c0f5fd00
MD5 05da434e40aa20b0136fd9e5b79e8510
BLAKE2b-256 ed5d3804433e708a4c95937575177f19e7eb185cfebfa3b549fc7db16f958efe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.23-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.23-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 630b7d6789acd7cb62cda36def2ab88fc588b575d4d4af09fe199070c13f5f65
MD5 812798d9d4ca37c6839892679ad76a61
BLAKE2b-256 0c3aca150269a6b4f056f5e75fc95816409cb82c6f6b931639c8250e04f260bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e24ec95961cc90aeeaeae1297163e9cbb67d8006d99d874f0f614966b72f670f
MD5 928be9ae3573e06d3d6ae1b99f82b53c
BLAKE2b-256 61ddb5a363c177c0021de318ddf8c82d23bc5005aa426f37397a6f16998f0244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d2f92dc1fa0553cfa8552622bf936fcce1df892737ecdfd57d43fba0d230023
MD5 b2f502b64d97a6f3cfdcd04a36e0a04c
BLAKE2b-256 b68c5b7f67440f583927e8caefcc4822ab9c9226b7b3ec537720fc7b198a881c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.23-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.23-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e52bf956265bc6060ee93ff1284fb8473a389695e4c5db4383602fe32ac6bc23
MD5 9c930d318b162ce02f720bb489ba6f22
BLAKE2b-256 1a9b297ee404d45a4b9afac85b789b7e16af4ee9140415dae8fedba1b536e120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4973ae71c53d7a0cf106006ada478f80b945013e9e5c94e88aab91c2d3acbfd9
MD5 0531b6429bb194180a9afee446b2cc85
BLAKE2b-256 608cdc7938785f2b8cec3bcb976bf3e1af497f82bbbe6b0c90c7974e79f26b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50a933bfa0d9d822f0d38106456d7a893a382c474de23374f9c363bf8b0b52a8
MD5 4ff77e421439ebf1bcbf3b5e3a4c5a93
BLAKE2b-256 fac49b8fc131b9852ea461ed252aee619724b138f52bbecff1be1df65ebe6207

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.23-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.23-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 10472b7363926e0e45e0f0a8af2360ba8447d76084de62baf6fe7426244bce54
MD5 35efeb76294a462daeebe2fa6c8ead89
BLAKE2b-256 e7c91e504fbc306b0edd82961a3b379e3ceb73b60f9758c1aac65e42c5090140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9cdf2b5bf64931f4ef65f554e367cc8a77f588bda96bab56605e49d073b64b46
MD5 931756eb254f88b75e5ab25d9ba392b7
BLAKE2b-256 358c26e840e8b6ca9416516d5ccf58e28081aacc5f14a288479fa1f22f160832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4095e6a70d49fc5f60440884366d2d57587aa980d4f809a4804afeddbc2083fe
MD5 ceb139afdea2032e50cf9632ee3ccbfb
BLAKE2b-256 1019f5842b2c88e56f5b2460343a4ae49ca57a2e19f6e33c735a366fe9e9d25f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.23-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.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2afb07c9e166f5b700c8272b451048c3e765c46f12f51cb1ef4230bbab9b55f2
MD5 e44f8fa4e9b97f1a0284de2e2f74d941
BLAKE2b-256 00e53fad5e3a4bf3789fae4c43dc2d3691cb5558a02467dcc9330d6f27516576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a6f738170ca7439e98ade2a6eb7b8ad9f4a76bbaff4e4cff61426f639cc8163
MD5 09ab75a2fbe99f65af449851b017bd00
BLAKE2b-256 9fca8e1bab2f69ddf19099fc41ffee1a9dea07b6603ee25d97bb3e3b418c792f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c626024bf59fabb212fb2bf27d69c6d072a3562b20d7016988d9501d9f2324d0
MD5 2c5a3291c33298bc40cfe7358dd89b19
BLAKE2b-256 4b6fc60bf419ccb2d9d91e9e3de8756b1007e1d493f695af20d3b603d5f09049

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.23-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.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3401838f625ae66bf9bfd06903e6bda6fcceea94eac805cb508ae1f1ad5de3ad
MD5 cb3e6646a4dea4c8d2273c7961756534
BLAKE2b-256 4ac9785b2ecf5ede3862dd4787e84e6d903b1818ed56d73961c2cc547d7ccc3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf73710705a7aa4932bbdc7eeebf6d8c5333774afc619c1a254a1e4b93e4426c
MD5 97310b45408307bdc9cec621ed518cc5
BLAKE2b-256 dd65506e50c639c4262670589eea585ea0c8491deb087ddae8210c922130df83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8bd40d8d4b2a17f0831f682d8b8ab8fc2552907175f8b18c7ba41875a2b2bfa
MD5 3dc5643d2f1ab4b7eded98f7754920d7
BLAKE2b-256 0907dde14f93970474dce79e4bf5b1accb9ef731b9ce8027c52521770b026f69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.23-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.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b60ce058fe848745fc52d815bfd9270fdff387fe7fd19ef5e33296e49f8f7de9
MD5 51d726a789a9b29e06c9134299ad0403
BLAKE2b-256 c4116f63617841a8ce77d5f7eaf5fa6de0f9ca1f04295a8730a6900fb24a2714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcbe0cbe6410a1a4f708bd4b9742fede95e5ac0e2d474206b3a9ba3e6bb06a1d
MD5 840743f28f91c37a7bbf362e660c7c3d
BLAKE2b-256 61a1f71d437292f745b22b0390d2366dbdaba0be4555f7c92e9387ee074ccc17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c84743b0ee3b5cfbdf61b97251fb82ae0be6e52a67fd1e3784eebd3375731b0
MD5 1959c435f20a19675c916fcd12b321e5
BLAKE2b-256 de7c509b8a273bd2127548591b8f8c914d81f07b40e9708fac954d9db35bde08

See more details on using hashes here.

Provenance

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