Skip to main content

ProjectStatus Version BuildStatus License PythonVersions DOI

This is a very basic but fast window discriminator for detecting and extracting spikes in a time series. It was developed for analyzing extracellular neural recordings, but also works with intracellular data and probably other kinds of time series.

Here’s how it works:

detection diagram

detection diagram

The algorithm iterates through the time series. When the signal crosses the threshold (1) going away from zero, the algorithm then looks for a peak (2) that occurs within some number of samples from the threshold crossing. The number of samples can be adjusted to filter out broad spikes that are likely to be artifacts. If a peak occurs, its sample index is added to an array. These times can be used as-is, or they can be used to extract samples to either side of the peak for further analysis (e.g. spike sorting).

The algorithm uses a streaming pattern (i.e., it processes chunks of data and keeps its state between chunks), so it’s suitable for realtime operations. Many signals of interest will require highpass filtering to remove slow variations.

Installation and Use

The algorithm is written in cython. You can get a python package from PyPI:

pip install quickspikes

Or to build from a copy of the repository:

pip install .

To detect peaks, you instantiate the detector with parameters that match the events you want to detect, and then send the detector chunks of data. For example, an extracellular recording at 20 kHz stored in 16-bit integers may have noise with a peak-to-peak amplitude around 2000, and the spikes will be on the order of 20 samples wide:

import quickspikes as qs
det = qs.detector(1000, 30)
times = det.send(samples)

You can continue sending chunks of data by calling send(). The detector will keep its state between calls, so you can detect spikes that occur on chunk boundaries. For example, if you’re receiving data from some kind of generator, you could use a pattern like this:

for chunk in my_data_generator():
    times = det.send(chunk)
    # process times

Conversely, if the data are not contiguous, you should reinitialize the detector for each chunk.

You can adjust the detector’s threshold at any point, for example to compensate for shifts in the mean and standard deviation of the signal:

reldet = qs.detector(2.5, 30)
reldet.scale_thresh(samples.mean(), samples.std())
# (or just set .thresh property directly)
times = reldet.send(samples)

To detect negative-going events, you’ll need to invert the signal.

There are also some functions you can use to extract and align spike waveforms. Given a list of times returned from the detector.send() method, to extract waveforms starting 30 samples before the peak and ending 270 samples after:

f_times = qs.filter_times(times, 30, samples.size - 270)
spikes = qs.peaks(samples, f_times, 30, 270)
times, aligned = qs.realign_spikes(f_times, spikes, upsample=3, jitter=4)

Note that the list of event times may need to be filtered to avoid trying to access data points outside the bounds of the input time series. If you care about these events, you’ll need to pad your input signal. The realign_spikes function uses a sinc-based resampling to more accurately locate the peak of the event.

There is also a reference copy of an ANSI C implementation and an f2py wrapper in f2py/. This algorithm is slightly less efficient and flexible, but may give better results if included directly in a C codebase.

Intracellular spikes

There are some specialized tools for working with intracellular data. Intracellular recordings present some special challenges for detecting spikes. The data are not centered, and spike waveforms can change over the course of stimulation. The approach used here is to find the largest spike in the recording, (typically the first) and locate the onset of the spike based on when the derivative begins to rapidly increase. The peak and onset are used to set a threshold for extracting subsequent spikes.

The following is an example for a recording at 50 kHz of a neuron with spikes that have a rise time of about 1 ms (50 samples). Spikes waveforms will start 7 ms before the peak and end 40 ms after, and will be trimmed to avoid any overlap with subsequent spikes.

from quickspikes.intracellular import SpikeFinder
detector = SpikeFinder(n_rise=50, n_before=350, n_after=2000)
detector.calculate_threshold(samples)
times, spikes = zip(*detector.extract_spikes(samples, min_amplitude=10))

License

Free for use under the terms of the GNU General Public License. See [[COPYING]] for details.

If you use this code in an academic work, citations are appreciated. There is no methods paper describing the algorithm, but the most relevant reference is:

C. D. Meliza and D. Margoliash (2012). Emergence of selectivity and tolerance in the avian auditory cortex. Journal of Neuroscience, doi:10.1523/JNEUROSCI.0845-12.2012

Download files

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

Source Distribution

quickspikes-2.0.8.tar.gz (106.2 kB view details)

Uploaded Source

Built Distributions

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

quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (119.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (114.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quickspikes-2.0.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl (100.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

quickspikes-2.0.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (102.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

quickspikes-2.0.8-cp314-cp314-win_amd64.whl (108.8 kB view details)

Uploaded CPython 3.14Windows x86-64

quickspikes-2.0.8-cp314-cp314-win32.whl (87.7 kB view details)

Uploaded CPython 3.14Windows x86

quickspikes-2.0.8-cp314-cp314-musllinux_1_2_x86_64.whl (705.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

quickspikes-2.0.8-cp314-cp314-musllinux_1_2_aarch64.whl (701.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

quickspikes-2.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quickspikes-2.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (749.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quickspikes-2.0.8-cp314-cp314-macosx_11_0_arm64.whl (122.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quickspikes-2.0.8-cp314-cp314-macosx_10_15_x86_64.whl (123.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quickspikes-2.0.8-cp313-cp313-win_amd64.whl (106.4 kB view details)

Uploaded CPython 3.13Windows x86-64

quickspikes-2.0.8-cp313-cp313-win32.whl (85.9 kB view details)

Uploaded CPython 3.13Windows x86

quickspikes-2.0.8-cp313-cp313-musllinux_1_2_x86_64.whl (714.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

quickspikes-2.0.8-cp313-cp313-musllinux_1_2_aarch64.whl (703.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

quickspikes-2.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (757.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quickspikes-2.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (750.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quickspikes-2.0.8-cp313-cp313-macosx_11_0_arm64.whl (122.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quickspikes-2.0.8-cp313-cp313-macosx_10_13_x86_64.whl (123.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quickspikes-2.0.8-cp312-cp312-win_amd64.whl (106.5 kB view details)

Uploaded CPython 3.12Windows x86-64

quickspikes-2.0.8-cp312-cp312-win32.whl (86.0 kB view details)

Uploaded CPython 3.12Windows x86

quickspikes-2.0.8-cp312-cp312-musllinux_1_2_x86_64.whl (724.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

quickspikes-2.0.8-cp312-cp312-musllinux_1_2_aarch64.whl (710.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

quickspikes-2.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (769.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quickspikes-2.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (757.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quickspikes-2.0.8-cp312-cp312-macosx_11_0_arm64.whl (123.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quickspikes-2.0.8-cp312-cp312-macosx_10_13_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quickspikes-2.0.8-cp311-cp311-win_amd64.whl (105.7 kB view details)

Uploaded CPython 3.11Windows x86-64

quickspikes-2.0.8-cp311-cp311-win32.whl (85.3 kB view details)

Uploaded CPython 3.11Windows x86

quickspikes-2.0.8-cp311-cp311-musllinux_1_2_x86_64.whl (734.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

quickspikes-2.0.8-cp311-cp311-musllinux_1_2_aarch64.whl (727.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

quickspikes-2.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (775.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quickspikes-2.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (773.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quickspikes-2.0.8-cp311-cp311-macosx_11_0_arm64.whl (121.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quickspikes-2.0.8-cp311-cp311-macosx_10_9_x86_64.whl (123.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quickspikes-2.0.8-cp310-cp310-win_amd64.whl (105.7 kB view details)

Uploaded CPython 3.10Windows x86-64

quickspikes-2.0.8-cp310-cp310-win32.whl (86.0 kB view details)

Uploaded CPython 3.10Windows x86

quickspikes-2.0.8-cp310-cp310-musllinux_1_2_x86_64.whl (695.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

quickspikes-2.0.8-cp310-cp310-musllinux_1_2_aarch64.whl (695.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

quickspikes-2.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (737.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quickspikes-2.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (734.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quickspikes-2.0.8-cp310-cp310-macosx_11_0_arm64.whl (121.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quickspikes-2.0.8-cp310-cp310-macosx_10_9_x86_64.whl (122.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file quickspikes-2.0.8.tar.gz.

File metadata

  • Download URL: quickspikes-2.0.8.tar.gz
  • Upload date:
  • Size: 106.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8.tar.gz
Algorithm Hash digest
SHA256 459ff1cd98f8ed7d61fff9403c4895d10281074688e8c4b98c52a4fb9413fcb8
MD5 bd16db34fda7279b2f2d605e9a915c07
BLAKE2b-256 b02472c66f92d1950f288625bc33dbf4f086f7a8f606620c5bd89f484d52db53

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8.tar.gz:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6539a5aa5039a8fec6fc17d0521fd2b0e839e8d5e7ac4ba2fd1656df2d242e04
MD5 0724485c0b1cd425186a8527d23a8fcb
BLAKE2b-256 44f62a1a0a34ec6fe31f4219f8318722ca981e994a4e680374bc84ebd02d18ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80e9f692c58a5f4e28b47bde9de07178cfce1e07120a2214fd73982b27a23071
MD5 e4d5693f62ff2f83bdaf2bf5dcb16f24
BLAKE2b-256 fcf8b1de624fc50fa14c859e9a1c03c5051ef619aa2a35c5c55789eda1bee810

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 512beafb1ab1c41b9d3c21336f3b0e7098cc31fac16bef961c1e0c81acd23086
MD5 37611d668ab99d507d98ca29f8eb62e5
BLAKE2b-256 ccf0b4efd690bbfbf762c422d335071f2edbf13df5572e288a8e63227926eb72

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0175d4f79dafca2185d540c601ca205841fcf3c5b9562a468bd86e78505f7b1b
MD5 32ce1ba6674b632630b41c2da1e40d30
BLAKE2b-256 1f248ed6143e886496553a958235928ebcf825ed82642da8396a053917dbba29

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 108.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bcd476252d335a915a0d3542a0dfb364d6d974e2df5a1f9ec43c64da4612c2f6
MD5 8dbc2d8a58b9d5c43e422be0e8589fab
BLAKE2b-256 0d38c2e99f615ce10890ae93ca230f756ec3f9d2be19e88422f189f0c2425e5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 87.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 71e06d9fb8937c99d0b7cd874319fd519bd32dce58dd4b27116d933c79823a3d
MD5 e70d7f5971606987d28694836f3345a3
BLAKE2b-256 226528204c6982cb5a3d436cd3800ed012250f0749d965c1d43038d6dcc928cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500e93f0c8a39a32deba4484b2df3bc4026d7bb9722219cd9c387c9e7428c2bc
MD5 130e8818394c278b23145c798609e831
BLAKE2b-256 73742707d629717f485dc54f5ff07f89e91853a00f2d16a8bef9039aa7936108

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58f87b2fd9da5bf87d3eaf7c741394b38c37f75bf7c224024b4aff7bcce63c84
MD5 4582fed6c572cc8d9bf5b26e320fe3e7
BLAKE2b-256 f4f5dca76dddbee5ccfd0600d1630aed1c6cd82e0e45c520686d62c1c831a547

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a510e7ffa739998bf285534d6a7aef88dfcc1c507accc09f6b0160e2500864e4
MD5 dbbf3c3cefc5f63c79460a3b72ee2613
BLAKE2b-256 3477d42fbc6e88d989a8ea2bff583f3df4a6960338f546f66ceaaceff84f8fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91cec9ff8e24f2c55916d0fbf5feb80c2b1727e3d8faefa08e45502590c28ce3
MD5 7db35e5fe87bc2b60e575d5d91b2b524
BLAKE2b-256 4b7daae618e04cb0d661f7274902c8e91c8c86abf0acde6f2951ad4bcea5bb73

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b53007c1866e21954b25ae61236c1b5715bc4a65d6266a4b05d4a819a6a03ab7
MD5 0e1bfe533ec7bb0a179bc7432b8f8006
BLAKE2b-256 58bff3d64d4503db6d70b7eac8999c7d567dd6b2601ad7ff1289417153ad8c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f152c7c6dc8d42a72b5c6df99f8d4e6a455dca644c57e413f91c3d7c6b935129
MD5 d8b54f975fbf64239ae6955163ac0306
BLAKE2b-256 7a0965a8ebe8e9948fba863fe95d42ef1bb318d5bac593c289b66e4ac981d8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 106.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9bef290b8e234530044e1472d606ef75d807e0796706ac80da073ab60862ee5f
MD5 bc78e95d4933517b355699580642a4d0
BLAKE2b-256 6df4eb66d8e0147da50dc37b61a3efec8bd8bc5c32be1875e502cde08219c27d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 adc0255d79815af2e1343ce745b4b9d7960cb83150e1364f0b10ad9f34f09c91
MD5 558f1e848505f7eee4a995ec54e9815a
BLAKE2b-256 66f429ac9ff5b8caaaf2705a0f7e93fe1ecf151edd98082a5c8e389d0a4ceb51

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e814a91eea9b3e852fa4f78d602c18985941112fa0533d722733dc50018f5bfa
MD5 8abc11e189d33a1d932ccf008916d8cd
BLAKE2b-256 9106200e941d21be8e71ff2396da2d4407a3e0a5d5f7efdab1b5b204ad1e918d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dcd7df08c3a99b1906d798cca3341e922d968dd06fa4f4e4f6099192c10c2a5
MD5 0e2e183b3565c8e36b072bb9db36ee58
BLAKE2b-256 17477562723375a321832b3234b357eeccab04edc8a9b184683820edae5058d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5460c0c7c9040cc71366f98aae41f023dad968e8e0df44db51e811cf5183a824
MD5 30018e1ac4596339540ddb228950f23d
BLAKE2b-256 a253c553dc7812bf809f4d19af0f5a1ea06ddc9343ec0b86a3a3c723efa060e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30ebb9ff877db5b79bab331620620867e19fc11df99aada7cff0bb6afd5e2683
MD5 e12b10e38658a3b569a2838ff00337fc
BLAKE2b-256 632353e33dce9771655d79b3f914e39a44ac5d34c2101b9160253eb826f4253d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 097de532f93297b9126a25773cf3bd24ad1dd27e13ceafbe54981d0e0df44741
MD5 7f4e320d0bc017393a72405d4ca37155
BLAKE2b-256 8a4ab8b1ee43095bb391f698e6e6a1ac321663ebdf1b6fd7389870e657004727

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9e7f626aa31ec5bb873f6d617a461f952047ef25836e02e6884871dbdc92d9ce
MD5 5c31443534a34e0db7245f0ca0ee039c
BLAKE2b-256 6009c51227d8acd9b5114470f5b9c926792827ce56b4147b40795edfdbe20aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c0ec4b198b0d32d045c290c1cabb59fb914f4db6049eb29700f747ff075bbb5
MD5 6397008921c9043af2cb22d5f9a116b0
BLAKE2b-256 2a7354305452d1bf8598b5bd8f4245864eea6a891966f0bfe79fad45748d8194

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 86.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ccd15cf2345afdfb6b694c68721ab3ec86547e3794a348d4940ae9a4cecdedb7
MD5 c6b72c87b36475b7263ad94b61d75577
BLAKE2b-256 e9687e016780440f2b4dafe6c2c6dcf3b4f107739d6905391bfbb6728af1cb0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f51b19095456c453387e9fcbc965f06a5d9a392446cc164ba9d1c864f2881c37
MD5 c37388ad51f23bddbb721036dddfd286
BLAKE2b-256 73906840c0072164fe311647fafc2c7a965107ffce1b139d3f3de8f16fb7a8b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 774a3aef61e4b82c6cfb87e98b690e03397d4f7c331cecbc6cf684463792b979
MD5 683bdb1228b46f9a409c4e21316557c9
BLAKE2b-256 f37e24c23bed27e097d7e7df2ab8fd892329e48be9ac1d286e9d69014dd1a6ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36158ca6069b5c85b0505204e1574cfd56282da03d21c3c59a9fb5efc35fd650
MD5 66aa5eb632912e0e8414922345cd88de
BLAKE2b-256 924f7837349ec1efd3a922c1c678b4067733dd2550cf9ab568bdbde3f32a5e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10c70ce9b07d09c30449dddf3d041cc5e20950a4e073e61532e0a3e710c3c8e0
MD5 1a74d50e62b6402874213671b419214d
BLAKE2b-256 c52020a2f861c19cdb8f4db1bc1f5c0baa9a40bf477db0adc55fa3522734105e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd8fbaabd73bb1d0516dcf785bafe4648772829a2849a6bad9c4b30b4342d92
MD5 45315450d1ed0340630f2ee547f3a53c
BLAKE2b-256 0a57fd2b0471a2ac400d4583a137b75a4b092e76a297d9ea47baa400537467c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a44a366f5dd2901173e9662ffdcb9202231eb616051e31fc5b5f1b77ac2f285
MD5 3c140da195d41ded978389cd5843c631
BLAKE2b-256 7f5dacd29530dbe20bf40d96e472abec88a3478ef3517ea1fb87f92a49a1b6d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9e4f554b5682405b8be891a1c12f2fec651625368b9b8f1c6c7d9360e5ca2c86
MD5 2c99221edd597c48db9149cad6857036
BLAKE2b-256 5bd24285023b7d68796e13dab72738df58c14a945a14a13aed21af998850bc40

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 85.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f9c7d0c20e3b38f051d803c9eec96352e8464cd6d37bdc18f3d4d411d0a1aa8
MD5 b90f74b30e7b96f448f646f3e960e12d
BLAKE2b-256 5dedffeced7c4a9e2cf38299890a18a87a01f996be360650870f1425b4f21688

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 814d4fdc49c9f861b0a2d9ed2a9e74d47dad7d313baebd5401b0e98a40b9c42c
MD5 19fbb86d8a44f275b5d29c45f13af8c1
BLAKE2b-256 0c06dddc9c54713b65e42d16d0292431fc9478bd275296a0798f688eac2a9dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31e182fe23ff35499ebd4b3963a86ea55e7d4d6d8c1df0b8245ae61c4c23ef03
MD5 d4eda9ac588f33f14ce7f5ea527daf5f
BLAKE2b-256 ec9fde0752f512eb09e063002e24c8a80f01df9b354e8ae7c909d0482ee49307

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afaa6cf87128e513e12687801bb74c0b71bba1749ea919dce601708b503cad0d
MD5 0717fb5d7514557eb12fd5b4ae5d8d15
BLAKE2b-256 f7a7449edadde95aa9b95b01d5ed4199adc3da716dd659f76c07b0d8322d0b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b06fea0389bc62b235ecb36834443a8739978a96569d6e7f002b8dc1106a985
MD5 d3c03486e43f374a98459328ceab8991
BLAKE2b-256 2612eb891938e897094bb0303d8196cb05d41158877cf2f737ee3a7576a3a909

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7891fe877a46b65e57a7af5e2c657a98dad6b51aef8d9ac42876476f4de276e9
MD5 d5d4141ba645cb24dfed1e9fe0fc7142
BLAKE2b-256 71a93146ff272801f0472e128290e284dc150c4c0fac105ecaaed357bf4706eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e811d84475d0ebddf4e1bab43ea0fd44486221071c82f32fde8e1975488db4ce
MD5 2092ab1f4aedd8b2cd8ce5807c6450c6
BLAKE2b-256 04d9e3c1f4f48ffdb55cff95987ba8be34f1edd3862bab141ec23cd32abad0b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 105.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eabf0e3a1885d36aba9beafd58d65e2aa9438a9dea4eeeca01efd14891ffe780
MD5 2fc7f2984f4c5e4f47abf17c27a93b12
BLAKE2b-256 9fb766aeaa3d4b4671d322ff62f76ff17a95b0fb46806b8e2a43a3813254b000

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 86.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d45b496dc43c7743ca28eac9f915e0adfa8002304e81554336a3c2e94fcbe722
MD5 6abb3e398aba16a29175badc71ff533d
BLAKE2b-256 3cc393fb7b1a74423b8e843297f46064e8e9346b78e8d1c700c27098d4e0abef

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ec4eea41281aa2f073fbc997e27d595ff66d13040644734c78aea634aedea43
MD5 fafea546ab14231fc6c28ad5d3109d52
BLAKE2b-256 fdbb4024f36a63269451f7be2193c154ffee751af887de4fbc952a70a8bba4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93ab469e3792a73814bb3ed9fdb4da211c265b35e8c12455932498d75a9977c8
MD5 70f3c8c1bc77c7d16c3b4d42771f46c6
BLAKE2b-256 e1cddada65577400511d7cc3277faf7973aa049e5b2f50f8f4768a14c2296924

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5eaad4e3301bd80c9422094285aee75bfd61f3032d17f6fff7209bc95f3f9816
MD5 2d3622e0c3421d92f875d2903e314876
BLAKE2b-256 75627f260a7d23dc0019cf9d1681a62739b6b51105aaf729cd60b0dbadeec6cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e2b6195f6aebd2ecb74e9e7a3d21f654f5a7172170de7ec51f4130d80b22ec3
MD5 71eb175d4c2ea9015a55c84cdd5edefe
BLAKE2b-256 a5f083404d56ddad1e770991bc897c50328054864ffcf4c51d82a125e1f20d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5b3a56e952f707bfaaaf7f11eed681aba9a6c84d7c6bd1adda445ca08b56723
MD5 58863990acc285e7373705ebdb728646
BLAKE2b-256 813d394009117c885d403f9a343ce4cb7055d1bff981c68e26b64823a13e656a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

File details

Details for the file quickspikes-2.0.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16bceca6ea0f22bed87001c5b89be426506c9f909a13fbc972508334d2f98de8
MD5 83a6c65f859f62a1e673168a9c6c043c
BLAKE2b-256 4db31246c24eaab637c30d1fb5488b89ccc5c2a0be6bcef1a7673d2a752f0339

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.8-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on melizalab/quickspikes

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

Release history Release notifications | RSS feed

This release

2.0.8 This release

45 files

2.0.7

40 files

2.0.6

59 files

2.0.5

74 files

2.0.4

74 files

2.0.3

70 files

2.0.2

67 files

2.0.1

33 files

1.4.0

48 files

1.3.9

48 files

1.3.8

48 files

1.3.7

1 file

1.3.6

1 file

1.3.5

9 files

1.3.4

9 files

1.3.3

3 files

1.3.2

1 file

1.3.1

1 file

1.3.0

1 file

1.2.0

1 file

1.1.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page