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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

efel-5.7.25-cp314-cp314-win_amd64.whl (418.6 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

efel-5.7.25-cp313-cp313-win_amd64.whl (408.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

efel-5.7.25-cp312-cp312-win_amd64.whl (408.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

efel-5.7.25-cp311-cp311-win_amd64.whl (408.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

efel-5.7.25-cp310-cp310-win_amd64.whl (408.1 kB view details)

Uploaded CPython 3.10Windows x86-64

efel-5.7.25-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.25-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.25.tar.gz.

File metadata

  • Download URL: efel-5.7.25.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.25.tar.gz
Algorithm Hash digest
SHA256 b17377c540114f55f5904806243a5366e7a021f9b27066f4c6135c2966938ef6
MD5 ea6efa9dd8f944d8f4ccbfef288d424d
BLAKE2b-256 3aa84b2e9516677d182a3fe834be72f787f666dc48f87bbce176fd89eccf68d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.25-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 418.7 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.25-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a09345338aabbe2a87aaaa1778ebc1962148c27d3bfe7511e5aab97b5bd872c1
MD5 5f782034df8db7e615225362f964ae9a
BLAKE2b-256 26b999e42357ee4e4ef8c9100d585e4c43cbfa142d8ac442c254f97d7b459914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd6580546411fc5a9df3541de8770eeab1e38a1279c88e7266c1f34367042592
MD5 74b62edc72465eb962ec4b426cb1d23b
BLAKE2b-256 99b4ef681763c4f091bba7a80eb01910da3399a4b2a76372dd05caad5c82f9fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3b77bc1ad6bd72ffd35c5195bf5df9b7d9b68b778b4ebcd11747589f092da54
MD5 ec599e6ca3b9ae198308aea174b191cd
BLAKE2b-256 cb06a7db70c0154d95740604fc7a13d5908df3ab00853de4ed321d37e029d63e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.25-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 418.6 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.25-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2a33ce8eee59305ee5dd99dd37a73bde4f526ea24727945498b3f020164ad573
MD5 8bdebe7e97ec4d990d6d3d738af8ea68
BLAKE2b-256 585022e667c17d530a6a8bedd2369d5b83903803ceb593a8c35c403ff9cddea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09d5486a978a3677a2628da7e5bfe028f3fa96f8480517fe7f000ea5eabc1a71
MD5 31f3c9369e4623a65a8308a18124214b
BLAKE2b-256 f7bb8a6e107d3d41a30861458f6a432e5276e859caf9c60d3a8247506e5df053

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae6ba5a51ae877b26eb881dd0e8c43ff213106285bf2b85420b470870eaa992a
MD5 1b90eb0efe97d7c48f7b99763f428108
BLAKE2b-256 c863bf2374dec2f9977693c0e8d8db9a2fd2201f8d3756127f115cefb47a507d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.25-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 408.2 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.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9651bc6f578a066e9cbe3ce29995f65dc309ed29c14e7a48fe55a55f8c9c9fde
MD5 b2b4e81a6b5312db838fae5b59c0e737
BLAKE2b-256 a98d6d51ee4da59e328e163260b99cd97268bb4d8ed34d30faef528a55d71b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d104e2b20b672cf937ea22efe491668b0a0db937a3013651d67103a801660a6
MD5 ea5595126e2c29ddb235946312543d24
BLAKE2b-256 f075b90672cdec392c83211a5cf2056e39e002fe783269af75e09d9f2cf793a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a2683228af78c705f7b78ccbd3dfa4d5f668d6892f8c87c20de755f006f4f01
MD5 05d088cb9526ed9fd714574764b9a167
BLAKE2b-256 f3d96321b6819381877d49ef6e67f2a3a90412b3f8b3db7c7640251790336adf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.25-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 408.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.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dac791ff54ac508625c9b50ed850e612cd706f994ca112ce1061ec0f73809e41
MD5 fa5a66585219395c979774d1cd966df7
BLAKE2b-256 a18bb7946c70eacf3bfb1e2e7ea47c59c478e0e29a8c74c2e0c24a3d3e6fbba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c85035c533469c545d296f3823903dd6935cdc1e1bed78d80eb9cf59007d7845
MD5 04de868e83c3d0c240c6b44bccbe1b44
BLAKE2b-256 6ea50aad95232e9b79f452dbf075adba22df8e159814341edffbb43cd771309e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f52942177c2b864da1e59c2ce94434cbe04e5a6657b4370a0d992c588f7baa0c
MD5 e67fefa2f5e91b9d28705a750b75ba5d
BLAKE2b-256 81981841fcf03e2eced6f42a9319a9b5a553a1289fa961e83fbea96079e5d0bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.25-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 408.1 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.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3512367b4bbcccac8eee07edeaaf774b03b80df457709b2d7438c9e675e06933
MD5 875cc443f12503fa82f333f519072d2b
BLAKE2b-256 8256fc114f5675427174a7e6078e6ed56e40e329e608c0fffd662f6472a337e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97027ecd84d08ab582ec8bc78d03fcb821e9568e34f5de44af79c8f513d1dca2
MD5 4eba459f366bae129947bdd444b0d06d
BLAKE2b-256 f221023b00d45419ca07a0d69c5fa289ec639158d4618f94bd70dd53388c871b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 482df0c8f4c3e9e044a3d50b568ce42cf90ad815ac419abbd94fcdc1cecad3e0
MD5 2a4fe8fb1e461ecba1eb90d1a1e2a040
BLAKE2b-256 4c725dfe7f4c96409e7e6db591490461d1650a0530ae823839d34362bb093a3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: efel-5.7.25-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 408.1 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.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f5b9190d2f45c67a4b52ca6ed82e8169dadc2ab5b38174e77af3d01a9377e946
MD5 8b5699e47294a596c1ded2da6a1a52dc
BLAKE2b-256 aed1374f07b6834c1b2e141a8856af8f27cb85153cf03119a185559b42b39416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7ea342d3ae7a3ecc4691f4a1a2689d505e8670ffcc9159eae29c6a8fca8f2db
MD5 3ae8f4797a691261693ca249e91bb369
BLAKE2b-256 721812b65aedeb7439a0c54786a20c7ea66a0c061a408e7abbb34505402d27d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for efel-5.7.25-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa6c167514ec10ae9f5bc2293526631555df31b1b97811d18a65e30a345fcf0e
MD5 20225cdea00202ebfca1d7fd9628edff
BLAKE2b-256 f1724bd861efe9b8b674f2cc3e3252f2520e1449b8667a8a9d161e481afdec23

See more details on using hashes here.

Provenance

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