Skip to main content

A Python library for the numerical analysis of spike train similarity - forked for PEP-518

Project description

ProjectStatus Version BuildStatus License PythonVersions

PySpike is a Python library for the numerical analysis of spike train similarity. Its core functionality is the implementation of the ISI-distance [1] and SPIKE-distance [2], SPIKE-Synchronization [3], as well as their adaptive generalizations [4]. It provides functions to compute multivariate profiles, distance matrices, as well as averaging and general spike train processing. All computation intensive parts are implemented in C via cython to reach a competitive performance (factor 100-200 over plain Python).

PySpike provides the same fundamental functionality as the SPIKY framework for Matlab, which additionally contains spike-train generators, more spike train distance measures and many visualization routines.

All source codes are available on Github and are published under the BSD_License. This fork is maintained by the Meliza Lab for PEP518-compatible builds and CI-generated wheels.

Citing PySpike

If you use PySpike in your research, please cite our SoftwareX publication on PySpike:

Mario Mulansky, Thomas Kreuz, PySpike - A Python library for analyzing spike train synchrony, Software X 5, 183 (2016) [pdf]

Additionally, depending on the used methods: ISI-distance [1], SPIKE-distance [2], SPIKE-Synchronization [3], or their adaptive generalizations [4], please cite one or more of the following publications:

Important Changelog

With version 0.8.0, Adaptive and Rate Independent algorithms are supported.

With version 0.7.0, support for Python 2 was dropped, PySpike now officially supports Python 3.7, 3.8, 3.9, 3.10.

With version 0.6.0, the spike directionality and spike train order function have been added.

With version 0.5.0, the interfaces have been unified and the specific functions for multivariate computations have become deprecated.

With version 0.2.0, the SpikeTrain class has been introduced to represent spike trains. This is a breaking change in the function interfaces. Hence, programs written for older versions of PySpike (0.1.x) will not run with newer versions.

Requirements and Installation

PySpike is available at Python Package Index and this is the easiest way to obtain the PySpike package. If you have pip installed, just run

sudo pip install pyspike

to install pyspike. PySpike requires numpy as minimal requirement, as well as a C compiler to generate the binaries.

Install from Github sources

You can also obtain the latest PySpike developer version from the github repository. For that, make sure you have the following Python libraries installed:

  • numpy

  • cython

  • matplotlib (for the examples)

  • pytest (for running the tests)

  • scipy (also for the tests)

In particular, make sure that cython is configured properly and able to locate a C compiler, otherwise PySpike will use the much slower Python implementations.

To install PySpike, simply download the source, e.g. from Github, and run the setup.py script:

git clone https://github.com/mariomulansky/PySpike.git
cd PySpike
python setup.py build_ext --inplace

Then you can run the tests using the pytest test framework:

pytest

Finally, you should make PySpike’s installation folder known to Python to be able to import pyspike in your own projects. Therefore, add your /path/to/PySpike to the $PYTHONPATH environment variable.

Examples

The following code loads some exemplary spike trains, computes the dissimilarity profile of the ISI-distance of the first two SpikeTrain objects, and plots it with matplotlib:

import matplotlib.pyplot as plt
import pyspike as spk

spike_trains = spk.load_spike_trains_from_txt("PySpike_testdata.txt",
                                              edges=(0, 4000))
isi_profile = spk.isi_profile(spike_trains[0], spike_trains[1])
x, y = isi_profile.get_plottable_data()
plt.plot(x, y, '--k')
print("ISI distance: %.8f" % isi_profile.avrg())
plt.show()

The following example computes the multivariate ISI-, SPIKE- and SPIKE-Sync-profile for a list of spike trains loaded from a text file:

spike_trains = spk.load_spike_trains_from_txt("PySpike_testdata.txt",
                                              edges=(0, 4000))
avrg_isi_profile = spk.isi_profile(spike_trains)
avrg_spike_profile = spk.spike_profile(spike_trains)
avrg_spike_sync_profile = spk.spike_sync_profile(spike_trains)

More examples with detailed descriptions can be found in the tutorial section.


The work on PySpike was supported by the European Comission through the Marie Curie Initial Training Network Neural Engineering Transformative Technologies (NETT) under the project number 289146.

Python/C Programming:
  • Mario Mulansky

  • Edmund J Butler

Scientific Methods:
  • Thomas Kreuz

  • Daniel Chicharro

  • Conor Houghton

  • Nebojsa Bozanic

  • Mario Mulansky

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

melizalab_pyspike-0.8.1.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

melizalab_pyspike-0.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

melizalab_pyspike-0.8.1-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

melizalab_pyspike-0.8.1-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

melizalab_pyspike-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

melizalab_pyspike-0.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

melizalab_pyspike-0.8.1-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

melizalab_pyspike-0.8.1-cp314-cp314-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

melizalab_pyspike-0.8.1-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

melizalab_pyspike-0.8.1-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

melizalab_pyspike-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

melizalab_pyspike-0.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

melizalab_pyspike-0.8.1-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

melizalab_pyspike-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

melizalab_pyspike-0.8.1-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

melizalab_pyspike-0.8.1-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

melizalab_pyspike-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

melizalab_pyspike-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

melizalab_pyspike-0.8.1-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

melizalab_pyspike-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

melizalab_pyspike-0.8.1-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

melizalab_pyspike-0.8.1-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

melizalab_pyspike-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

melizalab_pyspike-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

melizalab_pyspike-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

melizalab_pyspike-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

melizalab_pyspike-0.8.1-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

melizalab_pyspike-0.8.1-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

melizalab_pyspike-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

melizalab_pyspike-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

melizalab_pyspike-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

melizalab_pyspike-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file melizalab_pyspike-0.8.1.tar.gz.

File metadata

  • Download URL: melizalab_pyspike-0.8.1.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for melizalab_pyspike-0.8.1.tar.gz
Algorithm Hash digest
SHA256 f793ed4638c5197e8762d9c5586316b223e92052371ce024381324ea104b4005
MD5 4523bae6c8450ded69f34995dac5c5c9
BLAKE2b-256 0e8a1a95b78bf4ba050091ce56d8943b934fe3111bfa29651081f065915d8c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1.tar.gz:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 28f743bc804530c6293d0185c98fdfae00f0421dd5ecde57ba8f181e711ce601
MD5 e59c7bfb0755e2d0623263b0c123f37b
BLAKE2b-256 da3a9d2f230a080ea335d482d7463395a7fcc5180620d4b9c82c405e64834ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76e1885585afa3bfcda1e724871dddfd220da9755b18fe9c46a269f0601e36ec
MD5 ffa24aa48e3a06d232ebb2c72fec3331
BLAKE2b-256 d31fc414a0a244f99da82146e8e4e5625101c08a90d7aa7c93c38089bb6d02ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ec7df3474a9e6e697a501b90499fd8aa23df210ddf2b9840271db72f64304b68
MD5 5bdc0808d7fbe2a4436ee373a8cb6b80
BLAKE2b-256 57c86022cff2415599f66a1fe9545ff17b6aecc88a0bc41b43075db23e8a38cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6893e8ac7cc7a44f2d622bf207e06a012b611002217216087b8d200c96f0fbf4
MD5 5c7242bb0b8ecae094140f3e5c8293fc
BLAKE2b-256 6754a2f9ec3d778764a7240872c2feaf038625884c8bef57dfc9ee3624744ac3

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 07f78896a3c373a210e0dbffe5e87facdafeccb2e1640cbbef60d805559f9358
MD5 46ccdcb46124310640983d2bf5fb59af
BLAKE2b-256 4113f280944aa791e5070acbaa1a9ce1815a75f9fb8ecce2bb98056a228d193e

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d068fa1cb47c9d554dfefcac7b31ed62033e76929b44489a55d2e2ea6bf723d
MD5 25d2a4f9cbca7cc3881461bfbf556e7f
BLAKE2b-256 363735a9e461092cf9fe6fbd6609f630d96291f9069a417b634ab39a26537c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c7c8bfbbd35bd515861c51a4d1102c02ac72b74bbfcb149c66d6b1455991993e
MD5 6c56b230f900daf21c77be0f1f5a4367
BLAKE2b-256 59531b7a73fabccb441b2afb18ae2a61327a814d15ffaf8304f38837c1680d1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57f9984978f3c2294c48b49332e78eea5c95f5494581d597ef06afb6716a64a
MD5 6b49ab7ee907ef75ea56927305e13a41
BLAKE2b-256 ea6b925d421650d8eeeeb357539170ebf12a722c95366a7390654254d5330641

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 490b995ed16ada130ded119b7fe2e246b278ee36e8e08659a1fb287593acfd85
MD5 7f37b423473eda0c4e363f5f0fbc2d9b
BLAKE2b-256 48e84aa7cd86802c0a0c48aeeba4df53b7258a3078ac4bf805921704614f42e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4aeb90c18d20f47b06a4291d9d938881387dca715e4e369becda9e6ca9214a7e
MD5 109db6c35c0ba829920986878e38cb39
BLAKE2b-256 7f05a1a6ef66ab280b44ba424a451a2ee3eb6143fea95e09396209f6cd45ae24

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4b4709a1c09c11f8f110453448d8c9cd0f31ca7e1aa7e1cfdbf6b93486e37b04
MD5 287beec0d5ee6def86cd105394fa2c2d
BLAKE2b-256 b4a0982a20f2f003b3b68a5899af5d81acdac71ef92f04255407fbce82ae854c

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60d66f621ae280670e6ba039ee263c053311757f3ee8a3f8844d84342b04cef5
MD5 debd8e0d3dfe27645cb9a30cdd79efe1
BLAKE2b-256 e5ea559bf187d7feb6097a328f34204f387a4e79e57ee2e07a97667ccff05e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 99c64650340932b3bbd169e05994fac147afcd69cbb3a8b186fd4da90931f894
MD5 26792c947cd4805535ff8f32e54a0104
BLAKE2b-256 3ddc4946b2cbe53f3a317bd8f6878f1c88267cc002ec9600553ec9e292252629

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42586fca8412c0c65a8ba844f9b206e6e4bb8633e94f8b8be8957db65cddd7aa
MD5 3ba5880505400059fa62014a1ee7ad54
BLAKE2b-256 de6cc7613e47e2416b7cbaf7dd33a9b1f5c7d12bd07e664dfc2422a07039a5da

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 74243e7a66b4cc4b9f95581982506e0f0cfe8dd7ab9f1584bb143feabf64f0a3
MD5 c8fa3127f634ff19f0ce9aeac8e96a20
BLAKE2b-256 5a580d311e338c446c63f15e0699d3404f47fa1b97599355f87e3621ad09ce73

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 853e9c8fc56a27a7657ec6d33dc27c484716c25fe1487a0277301bffc54f9318
MD5 d8753ad7db8b18f1f2da66e23a7a0a97
BLAKE2b-256 9f4f5bc4094d0a3f68beaf0ddb055221c5bf67e23915186071f18f63dbf9b9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8125ea56518ac3319d08afe404739685c6ba63dabf60d4dffdeb2ac4ead914ed
MD5 c887d4e0c39e7d047399621558a8a490
BLAKE2b-256 07710a2b13ac3746342176a5ce049009c3f09167f295bd6c0e375561edd76e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c33b20a780bd9e8b90ae2684e0453485d948b2d3a0f0adb84a8964a85b0762af
MD5 6dcc64f4f39c257d74ef3193dd618221
BLAKE2b-256 0992cd0e71405c30488b3e1bb4bfd659165ece766b221294bbdb3faa83bac195

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 393cb8f1fe930b547b54f3b0a8ff0fcdac4d89f168824a36e5a00b8554f6b9c3
MD5 37c48738133886771ea244f5f74777aa
BLAKE2b-256 e18fd4124791ec74d5d0b8099df9795dcf8a2a7ab46f9978ecedc5b66976e884

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 349c5b300a1d0c1208977a427f240abccec3d58cd0ab5036d1cf5a4996a2da73
MD5 07d16117f16865daf168efe9ebf7ae00
BLAKE2b-256 ff10de13b07b25f59ec2fb978f30ca9277b47314e68cc49cdd77b196c83f962c

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 831afeef450f4f88c4610875b6a440d8798650885f80b0d77c4c5b19f3f66bb8
MD5 245500788799eb9d39166e7c55604fc3
BLAKE2b-256 5e6e090f0156c7f95306f226545be6300bcbb1ad590cfeffddcc181c9d96e523

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6a0c3942220714b684726436265a4caf3fbbf089dcaa5f00f6a8b3404ed023a0
MD5 95e0b76e61735b73e1cdee1e6652ef48
BLAKE2b-256 6ab396a56d77a59faaf2a963cb9847a1bc99582f86a27a683f22a1a6ed988dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5fa2514cdfa17f6cad00bbb0f9dfd3bb53e8391bb4f2ea1f547e54c3ac3120a8
MD5 82a4752e2175c33bd6bbda1f9ebf8db4
BLAKE2b-256 22c90b5b55b92915039c6a9ba004724eb7c9998335ac517f41b30b32fca2620c

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f17b05b0063cf61b281a8191554d53fbe3eb4ebcd8a0daa0cdbb19652a42e1e2
MD5 94cd660dc0c803e6882f9b54e741e1b9
BLAKE2b-256 2060a4abd9325935a7ce298ce006ec6f5fb9d4c23604e44c87fb9981ecbd5d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 913f3d835e94c9599a131d7ae0cc549b6b893cbc5d3cf4c3bfc5a3486a9fa5a6
MD5 196ad41554974a0fbbb4b7ebd75a67fc
BLAKE2b-256 5ba39ab681948c6bc98be6891d7197f871d4cf25aa574686fb01ac0db7310899

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67b988b4ba6eaf8ce90518894c6a0adbf5ee311a0f677d6cab71703403c94722
MD5 f1aac3aeb04eaf41f37aa4f6d9679aaa
BLAKE2b-256 2e67a5f17b31d9dd4d10414b83368c2fafa1957791fa8a4f9d182d1f839e49b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc1dddd88a9b90e7250c378835f43af4a73c9458b32441497e5a4361294960d8
MD5 158327cbc68f34ceed40b0bb8f955d7a
BLAKE2b-256 fdffee9a4fcf929eeeeac5afa18d88b854c2a8cbd4cdf4a9ff13332f4bdb770b

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfdaad669a79286e5056863fe5a166b0243119eb3b76feab1ddc536b24fd6704
MD5 ebec2722bc1f25e138f476e95bb9c97e
BLAKE2b-256 58aeb84cf49fae4fcf6a2470477f76d8ea15f3e240df7cc22a4ad0dd5996cb3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 242dd1d566b05b1a642553f98ae7d30bfe70bed9de5515d0851d3589dddd07b5
MD5 6b79eee469625b86dc0b7e36fd38182f
BLAKE2b-256 d2452e8541f34fc1739ff8eaec8d5d655239da3bbd35a6816d0af79d383b4043

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a2bc7bbb785b3b8484a37ea47f752aed519ee9b3714606874591173b6350430
MD5 4c52d282fd9647f5362df4ddeca5f299
BLAKE2b-256 6d282c5a56132449a81638ed410fb060a64779fec3ab515ba88aa48f08b980cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cff329887b08d3ee277deee1866f2cd02ed3fc1c34be77b12c9256830134c71d
MD5 4837d6a6e41aee734bb479f5cf480c42
BLAKE2b-256 437688207d84846bc9979838d8fd2d4f34ad1b0366ce986bbfc86369c62a68cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ac6b43b1716f2dd246c449d5e87db4e2ff2cf5262fdef2c2dfbadda349e3e84
MD5 6dcb45ec2836858c7e9391d4727b362b
BLAKE2b-256 8d574d2e8bdf58a050fe7ea33eb5890a31a0f85034600b592186bccd0ebf4495

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file melizalab_pyspike-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for melizalab_pyspike-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd3e5b0d350ef46d5129a48ea2d100d40a468ff5632347d67ecfe9e9c767692f
MD5 b811a60edefe97b850544058519a9d02
BLAKE2b-256 0b57ff2759eaa0ee3380ba8c2fc165d907a21798c45c6a1254d01b86c70dad02

See more details on using hashes here.

Provenance

The following attestation bundles were made for melizalab_pyspike-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on melizalab/PySpike

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