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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.24-cp314-cp314-win_amd64.whl (435.8 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.24-cp313-cp313-win_amd64.whl (424.8 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.24-cp312-cp312-win_amd64.whl (424.8 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.24-cp311-cp311-win_amd64.whl (424.7 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.24-cp310-cp310-win_amd64.whl (424.7 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.24-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.24-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.24.tar.gz.

File metadata

  • Download URL: efel-5.7.24.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.24.tar.gz
Algorithm Hash digest
SHA256 4a2812eb837977a19e39e5c48650d558bc8e5d6d911915d5238d16cde3fc6a78
MD5 e724d09e294f7ac2c102340c0ea7c0a7
BLAKE2b-256 0200fd72427b40802072865bb0b56edff01f016ec1487d9aae6b5ab55fc26462

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.24-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 435.9 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.24-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8ffd1c4a45c234ccc112cfd46fb1e1e764d4bc42387c184ee379e6c3f589c9f9
MD5 9f5389e060356864d8efdf54c86d502c
BLAKE2b-256 0ca8df5b605d1fd5df0e5732e1a4bccce583367aa81034ba7e742308b7544ac3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96473512d3274acac8a4557844de32fac218c7d7b452c1da00c2d6a5a2b5bfe3
MD5 3d53c1875ae0a67c24b4e305546d20ee
BLAKE2b-256 d11c384220546d4fe6eb29c6a67489805ddfce97d85dd2016b3797386ba0f317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7a25a8fb95706718d34912b64d5b01720d9d1764ce223339db7be0d10652fb3
MD5 c3ea2477fd938ff93abd1a8fbf6bead1
BLAKE2b-256 d6af1ff8859d7e42fd5e6828d358e41f1b684f255da7a43be7bd4dc98f3b3349

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.24-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 435.8 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.24-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e8e8dd656eaf3747a5ddac06ec5446090af0253465d4a674e81fa17ea352c7e
MD5 a78f6fef4964b1900232cccb80677e62
BLAKE2b-256 5173c8dd9916aa3ba896910e75914b751c7b88e2a6707043ace8f492310d3af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69d265426a6922b4989b821a67f042d23f3247288ae708a586ef79a68832727c
MD5 05781264bdee41e1a00ab643627f7fd1
BLAKE2b-256 fd7f5591f9316f9dcf2ab68f902a1583f57c408a9f211890865b0721e0cbba9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bc307e99e4f49571cf6706f6334258ce53ecaa84a5757eab9639f6d4710066
MD5 20581500650de1a232a71b17734f1b27
BLAKE2b-256 7f5992b8c9ccf50e39392f7dadf6a285d61962599e1b5a9ab2984ccf4ac04737

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.24-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 424.8 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.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9104311ca166ccd31bb4fb5f671aeee586b0bcebe742ede797188a00f1b81fdf
MD5 b220a9f764f85fd27d5d5a6bc0399232
BLAKE2b-256 97bda1ba04e95b1e3cecae7bc4155aa7515ac661a139829442344b342fe76750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 260ec5cf293198d2aea8a62453cfa7dd01cf5809e7cb3da14a2bbc2ab008f3b0
MD5 1a1f4eb5f64180e14faee8c08df2af43
BLAKE2b-256 40beda8b747fd71eca70a18fe4a108c406e8db61e1316e3830645ba5ecb89068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a626a15a3cbf3e254761cb046358c68e82283492031c86d7ccd0f31cdc45fff
MD5 ec6144fcd82511aea53acc543af616cc
BLAKE2b-256 68a160eb78461a7e31c66ca4077f3f224e0619f1839c47bd274c95e2dcb736b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.24-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 424.8 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.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 924b9a8190b20f6221dc33e70fb9c843bfafad46592a4edd03f6f8f0e5ca95be
MD5 2826c5ed3383ec328b26e266a66315f6
BLAKE2b-256 6fa17b0b5f99c743b3efbd216c248ffb37c8a2c9a7c9458addd6d8a714ab8731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f653a357496c23e9108fa620ec3387893bf9b774c1be31328794709824047c4
MD5 db5b8600b208350c65bcbafb47fba908
BLAKE2b-256 4f7108bd504559ab1fc9937dbcb71867672d552e582ccb638a78e149071c5f39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b248387c332d347408c9bb88b7c75d0c8474c13b7372baa5dfcd021976e5741
MD5 845a3ee9c683dae5ed3f7ffdc49f77fb
BLAKE2b-256 78ee3093ca14bd19a4f2e3ee7b0f7456391025f474ffa5a95eec57e41134e108

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.24-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 424.7 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.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62dad5ce0fb4697850447fac6544b1f200f94a393bf675ed2e88d69940c7843a
MD5 ea69b58ce958141fb261c785986e29ed
BLAKE2b-256 3c21fa09b12873947cc0216cb55a711abf229b388f6d47726b28cc3468727013

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e113afabc215feffe1c4ff8fce5f3c342201715c77e0d25c2a8804ebc5b85eb
MD5 3fc0111ba9ba2f8925cdd4403ca68ab1
BLAKE2b-256 d95553a040b228e16cd1b3a6d611dfe68eb1c19978e962b31e11c803b13113b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79b83f3e3101ee8efba77f1cab277dece3870743da24d49aec7082f940adf5fa
MD5 a5b2c7a7545e0178f51d995e13bcfa94
BLAKE2b-256 4e09aa2c645f421ac77b8f9c1d7071b6dc01bde5550a0dfb1ad45da46f59763c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.24-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 424.7 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.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8e588c5d5165c90afa6e1969dcd7af882f1d49f983290f8d8e5f9535693847ce
MD5 ef09d99fc655e19414a7c69857fe3f5e
BLAKE2b-256 48efbb8c7290afc1dd290033dce86b79179edf5562ea5fe4d74823e5dd27a709

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e00280f24d2ff3bc8a681b0bb3aaa4492a6f6c47f2c15fa41f23a715119d82f
MD5 476defa8ba7eeb48b55733fa59b7bdd2
BLAKE2b-256 f9cda705944aa3df784e237311c9b7569e26ce9fec42861ce897a4546b3649aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcba5ce0a3a4f94f90ac444dea234a719baf76e6aee6b5a0730e148b99cea31c
MD5 7d8a8c7831d3edb4bb27a00dfb447ebc
BLAKE2b-256 3cccfb2139082d0ec39ebdd37b11f86e189f1ed19afc24bf38b70016bb4887b1

See more details on using hashes here.

Provenance

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