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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: efel-5.7.27.tar.gz
  • Upload date:
  • Size: 141.1 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.27.tar.gz
Algorithm Hash digest
SHA256 19be98e258f13c36dee3e6e34e2ee4e9ae1bc96853bfa3a9c370861b87858a7e
MD5 47c0329ce48127693a583d5f5eff3170
BLAKE2b-256 0cb376c1573b5a9d2649ab0004656fc908fb681be03c1657c38a48a6bada9f8f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.27-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2818141116c3e64edd5a66d3a32ebc0d5d674b99b479eac750a3f784f0426624
MD5 8ea11d7db11bc4829b984a0201b6b267
BLAKE2b-256 781ce87989380fcf9a5398bd6ec4f64011c944ca649ce8143df3616c4bb62af3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39322890e763405034d327d16231c1a18601b9b630c6a7bd958737162113926d
MD5 dd38fe0f81a1df7f689e78e150b95c40
BLAKE2b-256 bc9196bc0449a99eca79f5e43920c216c3073310f63f859f78f350e4927e8ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55a11eb872fccdc65fac5f6c277d0b0ae0a1c97f9765a093e3ca5d63384d9aca
MD5 b832689fd0cd3a2ebeb14541296e2176
BLAKE2b-256 e023dc1943b31a0f9a62137f2bc418f1c2ff6185a3ff67dca4243661b6ede14d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.27-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 276ee1fd615f55aa3763529f4f690180446b6184e436aae372e510524c75e024
MD5 1a888347115511fedcd1ec918d2c8434
BLAKE2b-256 7bb1f421378532617d9d48d51d59ef2b1b9feb7f88083008e58d922bcb89b883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80f17cb822f3f214df7c34553bb93254f041f3310640acc4bbeb057a339d98ec
MD5 42676182819b0dbbbd64775be8de5920
BLAKE2b-256 8cf933de2a9a24a3fc0dc12258318ec65ab76f39832efa36773357a2c2c742e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 788f4d88f07773c6723785272b33b99408aa8f85f27890f43f7e0e79c4659e0d
MD5 d76096af325257b34bfbae83e92183d3
BLAKE2b-256 9518c0488d4348c8fb0b5839334e115cf0df091f77fe38670b07b171f3e5b461

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e615fb6541aa0c0ce939c2f7c4a9f2966bcb2864502a73d598a95d8abf76e7cc
MD5 116bd4addeb5591329eb3818a02fc828
BLAKE2b-256 1fb69425630bf6922f54418e32947c885f48cbcc3120a84df97abf5b010537dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f8f80ef1a8c3176ec981dd617b4a51e9eb16961bf4c150a5ede15da8fbc63f7
MD5 83f19f1aec3d43dc7b9d58bd3a09c280
BLAKE2b-256 68b854e887b0bf2c01a6347b5198ec15e90e804083ccbf546fd94ca01d368520

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0edf31e21d7dbc454b9113ea5c6d6743b7cc914a1cbc953f6af3114ae561fcdd
MD5 f09dbbbcf23b93b00f511996325610fd
BLAKE2b-256 8ec2094d5576216ecd1585c0258295f24b4edd246fbf73a718edf389e12fc77e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 954c6e10046c48f20c9053a3cc5c8158dd76a963c3ac355eea4b76d053081490
MD5 787a2e08316e59b04eaf2b0ad0bcd386
BLAKE2b-256 228ecf711511dfc998d0a7df076467aaa4d8ebb8284d153a1e16007769f655aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38f165be3e4292a6d73cdb631e80c93f6bf2f68bd0740cb18b448eb92ee6f6e9
MD5 3fbf383ab14e8d04418b8cefadddb7bc
BLAKE2b-256 6e72c9bfb5674d9038d730663ccad4f8a0ecf210dca1aa4b80af38e03c320950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de08f96ea83a1ba11baee44c3faf895dd3b9b5ecb61d865efa86ead7593d2716
MD5 d66c690c40432ea41f7f87ced3b33bb8
BLAKE2b-256 644fc91ab2798467abf5b157ce63096bb0bb978a946fe99c164694508a00cb62

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f2eecdf85ac605740df8c3442151127ae33e9940353b5b21a72ee40c2671bd03
MD5 4a91dcb99c53a502fa7c0bd53f0a0e39
BLAKE2b-256 a4f98de0b2818de4477d2f8e16bb57b684c0c963cc038e2652248e8b420a88aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37add51c37e36a02a16c9aa70ad4d21ae3490869193e51ee39f44e9825af73bb
MD5 69a69d39ae43447ac8bb757b5dd96baa
BLAKE2b-256 ddb51eb4a87938945e05beb0bb5d4c8b1df6f8d30b47f999ae7f7021ae9b7320

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 165e6dd9486f060b1b471a0d5a61008cc9db4d86fd2884c2e6e6efa224378504
MD5 2a02ccb1a68c8ce8ef42fa05e0280079
BLAKE2b-256 7b7aba4e74ef6bc4d0fa1d1718fe9d16651035f733eea02592c53d6fd00753f9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for efel-5.7.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f131d1b982d35ca864f6210345fe6a7abda01c1681f495d3ca5cace0a0e9c3e
MD5 d59f0d8466841181f4f26adbffbda455
BLAKE2b-256 a053c71564261d61398be1618ce6ae782cccfbd79b053799e3f94999a77b7b22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44b1881fdaf6c88af8f0c6f82c491fd527bd31e9376c84ef6bbdba840e2e8c3d
MD5 cbf1c9a1d19071c4349b2962362cb2b8
BLAKE2b-256 0f80a2485541e3566757678fbe459ad7d0f32c65b8dfb747b5848144b5d443cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88c640f9bc33085efeb7704f543240f5511d6f67bd40303c856af6f6817bb49
MD5 771cca43facee0357cc28d73d19b81fd
BLAKE2b-256 2cbd9d680ce877b2764065211dbdb7d3f068973532f062b86028a710829032bb

See more details on using hashes here.

Provenance

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