Skip to main content

detect and extract spikes in time series data

Project description

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

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

quickspikes-2.0.6.tar.gz (117.8 kB view details)

Uploaded Source

Built Distributions

quickspikes-2.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (160.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (124.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

quickspikes-2.0.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (129.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

quickspikes-2.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (124.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

quickspikes-2.0.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (129.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

quickspikes-2.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (163.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (159.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (123.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

quickspikes-2.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (128.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

quickspikes-2.0.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (163.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (159.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (128.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

quickspikes-2.0.6-cp312-cp312-win_amd64.whl (134.7 kB view details)

Uploaded CPython 3.12Windows x86-64

quickspikes-2.0.6-cp312-cp312-win32.whl (114.8 kB view details)

Uploaded CPython 3.12Windows x86

quickspikes-2.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (859.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

quickspikes-2.0.6-cp312-cp312-musllinux_1_2_i686.whl (814.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

quickspikes-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (831.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (798.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-cp312-cp312-macosx_11_0_arm64.whl (142.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quickspikes-2.0.6-cp312-cp312-macosx_10_13_x86_64.whl (152.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quickspikes-2.0.6-cp311-cp311-win_amd64.whl (134.4 kB view details)

Uploaded CPython 3.11Windows x86-64

quickspikes-2.0.6-cp311-cp311-win32.whl (114.1 kB view details)

Uploaded CPython 3.11Windows x86

quickspikes-2.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (867.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

quickspikes-2.0.6-cp311-cp311-musllinux_1_2_i686.whl (815.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

quickspikes-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (862.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (834.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-cp311-cp311-macosx_11_0_arm64.whl (141.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quickspikes-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl (149.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quickspikes-2.0.6-cp310-cp310-win_amd64.whl (133.9 kB view details)

Uploaded CPython 3.10Windows x86-64

quickspikes-2.0.6-cp310-cp310-win32.whl (113.2 kB view details)

Uploaded CPython 3.10Windows x86

quickspikes-2.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (793.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

quickspikes-2.0.6-cp310-cp310-musllinux_1_2_i686.whl (761.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

quickspikes-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (796.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (766.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-cp310-cp310-macosx_11_0_arm64.whl (141.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quickspikes-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl (149.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quickspikes-2.0.6-cp39-cp39-win_amd64.whl (134.3 kB view details)

Uploaded CPython 3.9Windows x86-64

quickspikes-2.0.6-cp39-cp39-win32.whl (113.7 kB view details)

Uploaded CPython 3.9Windows x86

quickspikes-2.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (795.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

quickspikes-2.0.6-cp39-cp39-musllinux_1_2_i686.whl (763.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

quickspikes-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (798.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (768.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-cp39-cp39-macosx_11_0_arm64.whl (141.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quickspikes-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl (150.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

quickspikes-2.0.6-cp38-cp38-win_amd64.whl (134.5 kB view details)

Uploaded CPython 3.8Windows x86-64

quickspikes-2.0.6-cp38-cp38-win32.whl (113.8 kB view details)

Uploaded CPython 3.8Windows x86

quickspikes-2.0.6-cp38-cp38-musllinux_1_2_x86_64.whl (818.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

quickspikes-2.0.6-cp38-cp38-musllinux_1_2_i686.whl (779.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

quickspikes-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (812.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (785.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-cp38-cp38-macosx_11_0_arm64.whl (141.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quickspikes-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl (149.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

quickspikes-2.0.6-cp37-cp37m-musllinux_1_2_x86_64.whl (739.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

quickspikes-2.0.6-cp37-cp37m-musllinux_1_2_i686.whl (699.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

quickspikes-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (733.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

quickspikes-2.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (704.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

quickspikes-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl (147.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quickspikes-2.0.6.tar.gz
  • Upload date:
  • Size: 117.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6.tar.gz
Algorithm Hash digest
SHA256 5fb474866e1101c5ef23db768272396633058e2bb8f40cf6aa686dc8ba758119
MD5 5d965975a76ff609e3ca3c4ec2662f33
BLAKE2b-256 418de5fba6a10e4b33a2f5c831e0abb84da50f048bacc17a9132e2d9785b0603

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6.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.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25247710a4e31b803480e7d7c4fc1f61b0845b5fb7d76bd52ea07178cdc74803
MD5 68155e5ef51c2ee90ca91bb52df45acb
BLAKE2b-256 c300bce26f747e70222b80be02fa38f82f3fad77818998b81b281fea3fcfb9e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf7e232fafbbf3cf5a692c21650302749af3634315060ffcfbdf01adae83ad2f
MD5 71826a77419f1fcf7623da806b7b1424
BLAKE2b-256 08068a59684766135990530f8e1a4412a703eb9c42696e3ccfccd32352aa1c7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp310-pypy310_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.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ff0141ca0f9683920cdff75a39d5465deda4ca58be69c3088d2a99979677139
MD5 804d247a29898cfa74eb44018d179514
BLAKE2b-256 fb75743030642664e6e05772130fe1409f6e2423e50a19e1cabfd8e4b7f27819

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp310-pypy310_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.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b83c7dbe9970ec56ad8fa77e6b61b00fbedbf7f2b9bf00e8299e21140afb5da
MD5 8407b7e8ddf663ec06ccdf996b070185
BLAKE2b-256 8a2cc11b06717c9aa0330d2f74f04829b1ad05ec6c647fb7036815d27118bf44

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 047688919860eac51ecea4a76c9b25e39d5ed9d26dddaaa9dad496258ff13775
MD5 fc067fcb2991d3f3d98785526d1c34f8
BLAKE2b-256 11b7ce6dd88e5d2a08f7170f304ce1b9fd25a58c0b59cf77a03c97654d63e564

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp39-pypy39_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.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cbc62b3c8829c3748f614b2320352643cdde11a742b618aa7bc0898a39d5d43a
MD5 3dca15dea3674d2262a4d096231f3abb
BLAKE2b-256 038573a89b25689867d7e4c99bfc141a43a411b4729e35f20fad0ba5506efc92

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp39-pypy39_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.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c1f7e55468be7a5f89c71b5aef01544a6efd85fb576ba6e00f34a7ed97bc95b
MD5 0269ccefed16b13ceb6561dce0e4c676
BLAKE2b-256 1b7c1d100549cd24ae28b6d76b40cf22256f97763d6877f9fa5c930f5015fd5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_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.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d26535d76895ed18234921d664fea465871c275d8608780c3c7bb61cc7e8892
MD5 2d177747915307dbeaee510cc5f6e6c8
BLAKE2b-256 8b8c58aaa663e81b70f80cd649e05d070e07b96eb36d5b4df287b126ca3e73f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 901cf511e3bf4a56c1e296cb9d026cc69b64358f72371ffff995970786dedead
MD5 e9120c7645b2677946f785eff98d505b
BLAKE2b-256 d1f200ad4a1da4fb7603eedb1e726d34862128c25f829bbc57508bea1d506f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp38-pypy38_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.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bd1a129a93b3681a80b391430b606c5d122c2f15f06fd4d0534739aaf9b0e1c
MD5 a65f11c893a1a2affd6dd6715fcc8b40
BLAKE2b-256 cc8d4790b69259ad3ba5759cb01f0cc0ac29d299f12f83a82a075f42cd601607

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp38-pypy38_pp73-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.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c808594646c85522ae5b7be01153a48da1de12935466ab8149f70a28fc322c9
MD5 cebbee7603c09c5f2d8a4e9c9b7d0031
BLAKE2b-256 17c408837e124658b42f402ac6e23800f45add88928458e34174dc38715e9b2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_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.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92356d2c27034abb8b0044b3d1fa6f714911d6491db5b908019f2e44f48d31cd
MD5 d9a60271015c15c0e92d3596e0bc9436
BLAKE2b-256 8037baa4e48d7500444d2a001cb5e2eebe0c6bd8170034c41eb094a321c6c92a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db7c1e9609a336d979f698af9584e2615689a2882829f54243ba5f337843f816
MD5 bbd1ab1d4906ca4ef274412503ca8a9b
BLAKE2b-256 b7e2ddbaaedeb173d09dbfcb416b40f4611d32a47db9b5cb4162166baa18e17b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-pp37-pypy37_pp73-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 134.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9078d65ff398cb761ea03141538d2d2d6f6b18ad77746db136c069369e5d410
MD5 ea0b07f2b5e0961f7776fd77edea1012
BLAKE2b-256 81e48af706d85b087d45c83eb7e0dfe205a8aee8a0cce7ccb30caa8a5347219a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6ce687718158c07dc02564f434b3b7087ff9cfa2999e6e65fe21a9c2859b2fbb
MD5 f2b790546fa3ff099a90d653a8d0250b
BLAKE2b-256 1cc8c7fcb175dfb478190df825a8b5cde27fa45c2bd4065e3488097736846ee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a41c42b99ba7a7480e26a7539a6f138a314878c44895a774b5fa700430c1cc8b
MD5 cbfce000de65f36f88056ae373a57364
BLAKE2b-256 d70d35e78fbc862d5ff70c12cb1ed5ce264127ccd4ccfb5976d2acfadd502e93

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f4d8b5b2620ab946906f4ea656d8eb7c912f05d83988b135a8426a5ad5dc2c9
MD5 6135473a0552e467e6cc38ab8a585b1b
BLAKE2b-256 132c80c7b37ca280a9007dd257da70cd559643c7e953bba592621f09563bf595

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp312-cp312-musllinux_1_2_i686.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.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42aaabe58675d50e99c969d228d5b0003c4618eef5746731036db77d9528bca9
MD5 1c190667bda1be6cccab1b513b771d11
BLAKE2b-256 da76ad53530f2e9ab9b95358f81f49052376aab93d5d50768ea144bd2e020e45

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b2daf04004ebf5da89d4609fb04e9476a35174cdeb6528e4d52c04d1ce3c7bf
MD5 1eed352d307d96a054e70c252fa3f00e
BLAKE2b-256 267d4170d302bd9f21a345abdaa0f272625a26ec1a5802e2512f2afe6c55643c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a903500d5f961f7a32ab038a9f453adc9242508bb96f01941566e0b45a64228f
MD5 b30bc04e48c32a886343f215a6b4f139
BLAKE2b-256 0cae96e6fd59df08e3d800f152279d9ffd3df5a998b351f2c2faddc9cd7795b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7387f91b4b60f31e5cc21f3926c4c394867dad417a09a5499f2589ac74c24f2e
MD5 01e96a52f2122a3cfa5aa849a8dd8407
BLAKE2b-256 2743a24429e6ba4b8c45a4c8c57a1497c9d4b46ccf82617203105e1569ed188b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 134.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 01df88b89ce54facc6e1fa3511c380f953e5b8b0620a646caa8399e94c838feb
MD5 f21a70b83304996a178990cb3f1d1e8e
BLAKE2b-256 d3050352ed2bdb2c0ec00e6d8de4af3dcc7f612e9ad6abfad88a473299351f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 114.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d1b49cbca074cc74bf2cabd2513f631d361bd726de5f2491dc1bcb650a546352
MD5 288bfcd581507939500576bff40c8697
BLAKE2b-256 c4f2fd17799bde1e8044ffce02db453e784bb448b7e615644877d470b36e99ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6526569bc86348ad18eeb0855cea9f6c873d6ad168158b3a1d0d1c721cd62a73
MD5 08376c411201161e4562b4ad50eb70df
BLAKE2b-256 a9c55ffcc8da5c8fbb7276f616e695bbbefe95da86cc74bfc8eb9476682ccbc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06ebe2ad13877903dadf6e0e0a01497cc345fe2c6932b4d2b286716f65f4ccaf
MD5 ed298862e04ba2e5083747c7622fc28f
BLAKE2b-256 85e94032cfa7b704e9870c42284bede50098d2b6c35237b8ca44c7f4f67d2044

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp311-cp311-musllinux_1_2_i686.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.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4356a6cf45113a64de99c2095a5ad46d2de2cc71b6bbdc0483ee490980d119ee
MD5 f1b22402bdd5293ff86e3d4004fbfd7e
BLAKE2b-256 9125080d0810662dec2da360f7bef7598b3cbb5686bbf622d476c5b808c61c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c8914e34d5fa0b96aceb0a553bc253c2303d1374e4cb58e89aa61d497ca9439
MD5 6b0665d83cb43ff60c59375f619ab06f
BLAKE2b-256 c611d4f3b2f35cdcc79185f61728fed27cd9528666d1b5bf6bff85d6ca6e095d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67c876f595b54a6d71936beafbcb636931c9f3dcfc5688c3db37a6e77d78df29
MD5 05fb8b6160e0bea55322f4657e899c58
BLAKE2b-256 d973a5c3bac2b15d7aec91a1e89206e53cc9104db83f3a5fe128ab4b75c71c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9e47b63955a1dd65b6b9275b1bca0f9e0917e8d58d98d2937bb7b7c17e7fb4b
MD5 03bbb64824bca0abf420ae4d58b72d08
BLAKE2b-256 50b122ca17909c61ab77c1214c1f2305702747bcacd590d1f40b91b5cbadc66a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 133.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07ed2075f45cd3426748857839411d0a10754a2cc8c9fd1279db0aa435733f43
MD5 89b687947cf23ba167875584c9f958a8
BLAKE2b-256 25c97eed7acbec607e4247508ab6870a0eb8832464508e5ed6ef21b545a180aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 113.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 97de0bcea0a3a91b1e6eeffeb55b51a44c00752119ca5a98294bce0ff81cd6dc
MD5 dcd862ae5c3fbdaab8fd72cf22dd6e84
BLAKE2b-256 d7362ca94b6a812642c519a61987c992e4a1d17f4b266f6e689c94c8edc193d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb6dbe1b68a6bad5cbc7fd0e115825557cec7a5aca741309eaa1a6984223421d
MD5 82d6c5acc580c74e5c38e29164e3cf79
BLAKE2b-256 63e49884694e4c0fb5a5ae840f03b5ca7682ab0da1d40fe08768a5b05cf0b455

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 112b62eee5d3134ebdc52c9b03f5d72e87220c44f50ddb696b9de9151282f858
MD5 3907870a08810cbd79396fdd13227a6b
BLAKE2b-256 c04d50bcdbcda3060d1b6f082f17b53ba631c8e7750a47ee06d1e8974932cef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp310-cp310-musllinux_1_2_i686.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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13f92660f4b34018433d97b358130fb8f5e9318bd8d6546ea32cd90e28fc9bfd
MD5 378a16d8e47bc0851dd32f620c43685c
BLAKE2b-256 42b2a5226c7449f4bfa02e160988134270a0b8b399fe4c7b9ec4499bc5068d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b86dbaca3a549faddbade5b68c3a6f7f8a9193ad9e6ad50c70a9c35391c0dcb4
MD5 55cf1cc5c869c253c695d4220613901c
BLAKE2b-256 702d5eb3458138c2079391fe25ea49ee94555b6e4c8972bad4440d6129b14f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b60d9bfbc67cc4a03a00b7bc916cd7338d7143c2b354852cc8f3f66b963958ce
MD5 d0a20c3b7d72a8419415001ae7b897bf
BLAKE2b-256 61e533dfe5becb59761aaa6726daa67eafc21ffb12ae1495d27d7d6d2bb37348

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a56b6bd6fe2d7f9cf74aa68ae77e3350a21d833f453f31e89fb475423979958
MD5 8e8dd7a29d02f1144eec6475fdefdc6d
BLAKE2b-256 680c0f64ebcce8aea2649409fb0386105a30a5d80b59971636955ed0ac5aec2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-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.

File details

Details for the file quickspikes-2.0.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 134.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d5bc1f09d54cfa8c8a1e120b036751bc3261d1168b48557ed584099a60a811a9
MD5 c874ad5fb85766ae3a57e7a5202db47c
BLAKE2b-256 80656d3af6647d4cb5c469a944e1315d7a302acb6a710de9c059959744f81abb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-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.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 113.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29fd27970fc8a96e14bd8b846d76063511951e00eb5c2177c59599819501661e
MD5 940ffe0e4edb07936683dd2029b536d6
BLAKE2b-256 e02cb5f1dca2718edd72127673126b6fbbe61535ef126fe21dd4f3255e0cb37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-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.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffb472e638e42bda59396ecf131a76298f9a17ce07f20a8af217b939f8bcb90a
MD5 bcb7fe39186911de4542cfbf73e99c30
BLAKE2b-256 123998ddbe159b53ab814f53d19123c46dc3f5ac989a546d1ca0ba4ae2fa8d33

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-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.6-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93efa02a84ab257436a081f97aa3ecb83aadb3821fa92ba76bb78526801373a5
MD5 332b1309c91d3e3b7994ace9c55df9ba
BLAKE2b-256 895b1750fefbfc1ebc33184dd9bc37a8e925ac70967a3d6d8776fabd2f10b42c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-musllinux_1_2_i686.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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0db91c0aeaa0af2dde2fff313b57d4fdc1d6c21ab99a78be290360db08c5beb
MD5 68de1fe459061182a87e5a25a4e5cc72
BLAKE2b-256 4c9ecc7a5e7f814c2d5edc22f8b8849f2daea1b95499b16b553db9e80c91fc70

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21be26c70ac10522ce437f9f4cfd532980cad0b69a24632d2280e7701023e325
MD5 1c3aaee6fd08eadf3e7bfc31abe1c859
BLAKE2b-256 0ec316e075a29ae841a26ced8d7e7bbb491145593dc05f1d4fbd4f7836b25df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3591b42979371d9a2ea529a6619895819183d4d28ccc4b535ee774d3d6c3ee6d
MD5 2190ab14d03d4714aaf0d5c7bc1a700d
BLAKE2b-256 0f2230d57243672b4a89d5294cdc049fb1c5a02d686cf093f4a09f198ccdb73f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-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.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee2c1dd2e20e977ac7cf9fe4a82b7b05f742b36eb87700180075235431705fc8
MD5 10e43aaea1d03828e452b40cc11c023e
BLAKE2b-256 9475de50682339cfe8e6caa96920a8a6cb54436ba3612fd008c9dbbebafb0e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp39-cp39-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.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 134.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cd67f4ceb9ffed5b91dc041935538f7abadd4c34e8b173acbc800ce0b3f11fc3
MD5 749b9ecd7cf0074a9f7624d0017dbd0b
BLAKE2b-256 e235d2245c3b7e5950fa34471af6de82fafdefe4e785f57a2ed0482cec912c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-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.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 113.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 53852bc34fd4f819c0370f45ab5226c2efbcac64ba9b2ff91d1997e36f273075
MD5 8938d6549535f6860b4c8a6cbfd3d264
BLAKE2b-256 5c97fabf4ba667a9d9862bef1a37396e292b1a8d275602f41b0194560a8857dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-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.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51aa1c103bacbb3f4413b1710368616a280df024e2563a8bc83e4d6d42d519cc
MD5 5668acfdd878df13c8b8bf06fa3a3a5d
BLAKE2b-256 e0809033a08221ea06b4c5164e06562aae1a57cd002a2e415cc7b694a359c7a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-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.6-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd80dd5c94359cc4caf09ee4f6900fb2126cbe3b86e4744256dbe01be0528a4a
MD5 c048fec64336a7ed7a1dccf759f277f7
BLAKE2b-256 ee4ab6bda052cb84925494dd4f24aaab9b1a672d91bcb32cfa12015a94abef27

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-musllinux_1_2_i686.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.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87fe3c07abfe09042a5d236b0961af26efcfb37a4037f1beb13137bfe0030966
MD5 d5fd0e9782d74ace7a8113b275db229b
BLAKE2b-256 b5d0824081b01678355e49f3477031d08b5d58abb56ec0809ff53da25e140457

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b4e34cb8b73acf916fa79f959ebca7d2c51d1b1c7339d65f22f4338b20f1d72
MD5 d97a62a225aacdca8398025007d936e0
BLAKE2b-256 45a9fff7cace5f76931d7fdad2645b9fb9f2726b14775784e04bca77fdee51fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76b0cb2e54182affd256814870c50fbb8ba1cc119fd85c3cada687c3ba73f8ec
MD5 3c58d106272de343763fa16b19b637e4
BLAKE2b-256 ea8e53b21aac5d4ae0b02f9fbe94bfcb53df52e82c7497b1c1ecd54782fd5e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-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.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 012e54899413521c910b7a2409edc8138fde6a2076676e4eb93719b06502cf53
MD5 9a02663228c7a29cfd5cca9dd1d9e8e7
BLAKE2b-256 9cecb477e96b30f6453b33e0285551cf41908e7cb48cab5fbaebcccd96250f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp38-cp38-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.6-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1024d04f4945614edbdc08ca0ceead29aa5fef5a36d4793ddcbcc3d7d9e13d10
MD5 125a8734e2be9354458d3ea9243cf29a
BLAKE2b-256 c40a4fc56fdadfcb75638b933367084c26b2e99442d8d0d4e2f1e918fbd69b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp37-cp37m-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.6-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a01f06ffc1bd59cf36f50cc130eb60a6d8745cda885d4965397e9e8bf8aac62f
MD5 c2654726cadf5954472412ed45071fdd
BLAKE2b-256 7532b82e2b85773200582afbc20ff4a680e32cc223ea1670b2c1e26f3aa4e24a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp37-cp37m-musllinux_1_2_i686.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.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 171bee22d283a15376b8bf982641558f68fcb1191e0bb15c206b0bd2e4152152
MD5 667d6370d6ab616e28fae3e2dd3da5e5
BLAKE2b-256 5a6ad59d1b4680d9a34df822b592a27d76a45d9efc7349cb67ab2b82d33e81db

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_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.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8eb6fa6024c9c832e53cf5200a58b360399fe06bdf002654ed53cfe0f0313556
MD5 9582035afeebdaee6a81aba4dada2991
BLAKE2b-256 8d9c09401c2f561f09c6a320875881cec51023a5ed2c31e9957dd1da18f6d680

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.6-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b96643d99afe3f6b8db581aeb97455a53ef475523176f79419cbeafab3471654
MD5 c55391fcbf9b49714b071079ef086610
BLAKE2b-256 63a41570c201379ecc0f63f22e51e416cf283ec68b896620f3aaa922a2023a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.6-cp37-cp37m-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.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page