Skip to main content

Advanced Recording Format Tools

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.7.tar.gz (117.6 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.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (149.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (127.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

quickspikes-2.0.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (131.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

quickspikes-2.0.7-cp314-cp314-win_amd64.whl (133.2 kB view details)

Uploaded CPython 3.14Windows x86-64

quickspikes-2.0.7-cp314-cp314-win32.whl (109.8 kB view details)

Uploaded CPython 3.14Windows x86

quickspikes-2.0.7-cp314-cp314-musllinux_1_2_x86_64.whl (840.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

quickspikes-2.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (820.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-cp314-cp314-macosx_11_0_arm64.whl (151.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quickspikes-2.0.7-cp314-cp314-macosx_10_15_x86_64.whl (155.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quickspikes-2.0.7-cp313-cp313-win_amd64.whl (130.0 kB view details)

Uploaded CPython 3.13Windows x86-64

quickspikes-2.0.7-cp313-cp313-win32.whl (107.3 kB view details)

Uploaded CPython 3.13Windows x86

quickspikes-2.0.7-cp313-cp313-musllinux_1_2_x86_64.whl (851.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

quickspikes-2.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (832.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-cp313-cp313-macosx_11_0_arm64.whl (152.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quickspikes-2.0.7-cp313-cp313-macosx_10_13_x86_64.whl (156.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quickspikes-2.0.7-cp312-cp312-win_amd64.whl (130.5 kB view details)

Uploaded CPython 3.12Windows x86-64

quickspikes-2.0.7-cp312-cp312-win32.whl (107.4 kB view details)

Uploaded CPython 3.12Windows x86

quickspikes-2.0.7-cp312-cp312-musllinux_1_2_x86_64.whl (862.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

quickspikes-2.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (838.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-cp312-cp312-macosx_11_0_arm64.whl (153.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quickspikes-2.0.7-cp312-cp312-macosx_10_13_x86_64.whl (157.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quickspikes-2.0.7-cp311-cp311-win_amd64.whl (127.7 kB view details)

Uploaded CPython 3.11Windows x86-64

quickspikes-2.0.7-cp311-cp311-win32.whl (106.5 kB view details)

Uploaded CPython 3.11Windows x86

quickspikes-2.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (920.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

quickspikes-2.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (863.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-cp311-cp311-macosx_11_0_arm64.whl (150.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quickspikes-2.0.7-cp311-cp311-macosx_10_9_x86_64.whl (154.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quickspikes-2.0.7-cp310-cp310-win_amd64.whl (127.0 kB view details)

Uploaded CPython 3.10Windows x86-64

quickspikes-2.0.7-cp310-cp310-win32.whl (106.9 kB view details)

Uploaded CPython 3.10Windows x86

quickspikes-2.0.7-cp310-cp310-musllinux_1_2_x86_64.whl (821.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

quickspikes-2.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (810.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-cp310-cp310-macosx_11_0_arm64.whl (149.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quickspikes-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl (153.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quickspikes-2.0.7-cp39-cp39-win_amd64.whl (127.2 kB view details)

Uploaded CPython 3.9Windows x86-64

quickspikes-2.0.7-cp39-cp39-win32.whl (107.1 kB view details)

Uploaded CPython 3.9Windows x86

quickspikes-2.0.7-cp39-cp39-musllinux_1_2_x86_64.whl (818.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

quickspikes-2.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (805.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

quickspikes-2.0.7-cp39-cp39-macosx_11_0_arm64.whl (149.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quickspikes-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl (153.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quickspikes-2.0.7.tar.gz
  • Upload date:
  • Size: 117.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7.tar.gz
Algorithm Hash digest
SHA256 79fec64b9d5210e2673b885ce2dd8f45c8ee206a88c3097f3870f028fe45835b
MD5 5020a56e27aa36958da4e6dceaefc455
BLAKE2b-256 b518c77dace7e39630d714031bfb13cbcdb9598dc2be8f39bd253d92257b23ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7.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.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2e0b81226520b031f215b9cb4b1affb04697d5277bc93e318bbb5fd6c1d9a808
MD5 9ad780fb0263b03a6f2e74412dbf58d6
BLAKE2b-256 322439eee1bed010942cb721673522d8d1739c56e84bb21c2fc4f816f5b531f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_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.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4b2718948047b8655b4901d405d0df9eca687de1838009b5d885a3dda9fdaf8
MD5 f3447dea9666b75a3ff4685426cf79b7
BLAKE2b-256 9a31d34fff664fe9b2bd78de2bb41376eec7831ee79ea56a214447e65c3e8fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8533c8de11cb42cf67a06e190c751974a1890e6238e20c2870489f8cfa8177f7
MD5 293fdf96981ddd865962b74dab383340
BLAKE2b-256 9bf5c4d4e4e403d0103381888cdda458d2fc2325443bb98bad651dbc55a6f6a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 806710bbd3bc088b7201428332570a0565c48aeb437ca512178188e3ad77c9a9
MD5 f4995f0a06ac08c7284a53bf0213aacd
BLAKE2b-256 7bc16f13f8b77f211e75760aa45d7d03e10a615844821ffaa0ddfe2f1f810f03

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 591ca7053497d9e96c98e346f2f808b292f19e1a05c4ba1f710d75ab3d80257c
MD5 f2d3dfbc14925a585f838a3921b26c23
BLAKE2b-256 61560bbe154d914b54196107741231a2a7b3486e3a895c5764bdefef92ee9880

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb17cfad34079359d79678e5f2ef8d399eff4e596a8833c2de4b6a99e12f128f
MD5 7b11d641a3a4b36a39078ce39097ceb9
BLAKE2b-256 20d1394abd9f9c3872ea20676a51a7ef5c9ee5830cd14f568b84676c013ade5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d714ed650860efd3b2a902d06744a49c5a9a37f17cb704e7334027bfb50916f0
MD5 fc96be447e1abe517dcf499f0d94dc70
BLAKE2b-256 1a179257065a72a55f8b7081b27384fba89ee39139b9131217941772248f31c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_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.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f28216ea3bb5389494ba244eac3177d7a7373fcabf8a10e8942e40f9357f280d
MD5 f89a4cb1e914e7ef1fee8496def620ad
BLAKE2b-256 671ce84430d80ace325fbbbb081dc34ad6b1eee4805280d55570835bb65e7955

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 885bb38a6a07bb3765ab6f78f2b72d0b7af9a31adfd3ef69c3f61005cbd8a4aa
MD5 45f279090fc4aacff55bce6ec3dd97bc
BLAKE2b-256 e5b19bc259f2cb4b4debd7eb9e445f3173424b02401ccc4f4a99289e195d9a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c523a0e4233e92630b5927f36ccea120e3add3998f9fbf1b26285c8985e81afa
MD5 1e927bafe62fba4349ffce2f7ad21406
BLAKE2b-256 ccfea9d5bc1cbfcf80208074ef6d97e29a56c9d2e09d91c66862cee3da6fced5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: quickspikes-2.0.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 107.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e478ac5cdceaa5dee8099969900916eabb93907337d66d25a138a8f60d09fd5a
MD5 b381c12dfe975e0d65448b8058b9b235
BLAKE2b-256 eb37e7258a8d06cbf12890ca6c5924fcb01fa3353496104d69f5ceea992bd59c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bae1ecc474256315a19be631a38714ca511e282080bb0e9de15754b7fcffd433
MD5 f93e401f3cf065d63d2c2fdae20978ac
BLAKE2b-256 c22c2010f1646745144f1f14cc9ada0d5cf569bd838f810c9ed211fe3aa21517

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ed0931734255c8a8686fa1e84fb64e252c39891f3d0cbabdd6430641b5feba65
MD5 8b88dc557f4162535b81f2f262c7297b
BLAKE2b-256 afe97558bbea84ab407f9e48ab9a75a94bb6c71828998618d51e405897ab090e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be55fab7f1b0a4426fb1ac0b1697a0df62337bda18844343d0bb467f286ab933
MD5 76b4c545527af4441ae1297a1912ae6b
BLAKE2b-256 0c77113ae09898146864ca8002aa5bbd949804154ba72080175fbe1025fe0639

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-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.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8740927ebdc3ee715ea384077650e783ce0938d98c8ebe855e38692218be1f88
MD5 f436568bfee6379dbf916513c6f2fb3a
BLAKE2b-256 5e678480605f64ea204f84d31b63d406b805420c485c8ce9bbbe445f0f765405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34a4acaca0674fb01e30dee543ee38b718bf83f4994dfc5ca8ad94d23508c334
MD5 5b6c0fc6bf783290cbe6d1acaa8a0e4d
BLAKE2b-256 357b6c5cdc1bce8b6b0f03e58e583da4e79497b396e97a6bd90f3bc5752581cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quickspikes-2.0.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 107.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 688a255f060d2058332dc28440a57c91c546a625cf5e06ec62ef6699b202cb99
MD5 85aa78560f31bfab5d3c4ae724fdbcd2
BLAKE2b-256 ef59da82adeecdf71199733b0684325fe5e9d717e9df5b72629ac89e0281ad8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e9a6e499c7b40b50542ad1236bb179b80cf8dfae78e6861580ea421fe6c6a2b
MD5 0fb40e384f999e474405e456d35048ce
BLAKE2b-256 1a669ea454f11b037098dc753f869bffeb9694fc9662369dec7cd009c5959055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 78789ed2397b879eb5d0bd71373ab2a05f589a748549938d5c2559452b05a32b
MD5 36b4a38016ab5c7130cdf796db140df8
BLAKE2b-256 94ae4d1cff2ddcde79b78bbb5cb45848e223d02ed8932372dd3c7dcbcca3da8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31e2d55762745e38961735ddab3166372f2c7dfd9ab63413286d8d998f9d7548
MD5 ecbbaf43c24c918271d6858ab8314ad6
BLAKE2b-256 d24fd2f4f8d2ff09d6c5e8b6bd3ef264dd4d78b86e2e7b6f031734c82d21e1af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7be284e2fddfa3c1d1489c4b4b10b07ae8d3d2069a1f8aef1f26c73242686be0
MD5 d2866a73c175437088bc9619b1dfb981
BLAKE2b-256 1a4af0c43c25bb87a81824f021cead666b6c7158d0ce40505c31aec5412c04a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 81ff489e2c05ee75d51cf16e82e0bc9da1d28e7bda618000b20ab467b040205e
MD5 ba7e66cd515bd5bd7d8b6dd8611e3c20
BLAKE2b-256 5229a96f4c759ec96118c7a8ee2be57d0c61839ddeceb4e81c4093599b725286

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quickspikes-2.0.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 39b115da166e401aefbe883fe279d380a18dbe3fd7acbdd1cdf4d0a91e16eed1
MD5 14d47c87246fcd49f7b5f0a75e48ea24
BLAKE2b-256 5fe42b2965c2423114e9a3106b912f6d061a97af6c3ca4631dd9521a4e56cea3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71cf549c59fd008851d2cbadd73834c6cfef2cfadb777ffe90ef2e73e0f2b7ae
MD5 0d1a523fc30fbaf12bf1cae84012d550
BLAKE2b-256 3e858374799ab2a360941cdd43aec0c70cd840d904fa109a5636c64a1a1de6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 239b1e09e78ec0b427b275ec912bbc5459173001d09fe010d9160f81aa487626
MD5 ac2188afd560ef04f79b2313f71a6417
BLAKE2b-256 8bf36cbdf6b1c4b84b37a807332a84c9a3587df3eda0a352d2389d4b8126471c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 476b8d2901f532f2101a632799202e3d1257021f73baaa6c71546adfd1287c11
MD5 df5dffb0a502df2de4490f46f6e6ea0d
BLAKE2b-256 63507041ec4a30f7449245eff641097ba9da11e1f577dc68701d57faa9d8b3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05c151e2172a123c1162ce7ec4c9d2eaabfdd5be30a94b51ba8234032464dd1f
MD5 060719873642bbe0b998749e93bd529e
BLAKE2b-256 8dba2f6fb634698e21164b3c1addde3e81e4ce76c6dcd86f0c0103ce4bf46b80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec4ec0e05f45b6c0f7e696e097f1656882fa127fa24158a74c9cd8db11add9a9
MD5 5ed4fd9746fff25f174a9df5f248256d
BLAKE2b-256 a1a2d26d105c25cde9f6bb62e7f05f63c47d90139265472bcd43f89ac4975a62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quickspikes-2.0.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 106.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d32b09547c59f266a136ecb6cc6e2cb476642943196bd59d493040e3cb809fc8
MD5 7a3667c93d234c7f85f5b04a2d4db878
BLAKE2b-256 d6b4d76a0eb15f22661bc52cd9bce019fd4f249f4e84a6856a7aa0faa560cc64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb38327d0f7398581630bc1f1d8efea4e415bae44254983fde16942d3f89e0ac
MD5 f52b2ed4dca70b55328afd456687dc67
BLAKE2b-256 5b3a028cc85aa0d84f95d2b6ed56ed7b71cdd44d19e58c95b686022e85a44d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 08826028ee170226e2999c0e3e3df8935de46d3c52c3dac2ccab0acc517c9eaf
MD5 db5466005e49c7e86d7f626ba976f8e7
BLAKE2b-256 013cbf512ac342e4776fbf5217fb95e810de9cea9c4387ee8ffd62de029ba4b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f6a586a165baa07e77e4533392b53cc8cdd590ffe8ea57d7795ae27d473ee94
MD5 2363e822e6983daff5aa0be48b555f35
BLAKE2b-256 df1cd5c43f1ebe30f9c04fbcd0783368403d15723d08e54de62950e238560ffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e4adb0070667931461d9bead644ab4a01603e951b81b35aafaf42177dc726e6
MD5 cf68d3b09a55cf3203413f794f25bcbb
BLAKE2b-256 8cefcd7a03b06a4ac20b284c41c254ed3bab20716be606b3c0738bd822108631

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quickspikes-2.0.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1b581f4804a2ea3ec5d81531b7b3a6771b26fceb83ffd295fe2f95c25594bd14
MD5 cbc9f220feaaf2e8ab4f52db73ea4eb0
BLAKE2b-256 3ce9884d65e304e8e01d68a37a85e9efefd5f5c2a6267b1b744baf35f1bd5e81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quickspikes-2.0.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 107.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quickspikes-2.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 aa49e94d2bd414cb6d69a1be4c8c2454cb9b68cf657aeea477f4caaf637c1c3d
MD5 965cffb8dc70eae8a365101e768402f9
BLAKE2b-256 dae5e44285231fbc50e7ce22cae4d83450855403c4a69cf25b8e6adf24134a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f696dae5e8793badcc97189e60aa6dfa49eefa1689de77f427cb8af2da80f850
MD5 ecab520e66e41dc8bc6528e2852f4116
BLAKE2b-256 e3dea92bd2da6d855839dc204d1891aacc61dd58d6874b89cd7e317153d436ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4126cd932c724501cf5152dd75c7014e23c6785c6dd93935189feb25daae9189
MD5 db3ace9681daf195c858b8588c6c9c31
BLAKE2b-256 936c0d3b1e6ce9a2ff6670272424322cdf3087d4ce5b5ecab2f3455468970658

See more details on using hashes here.

Provenance

The following attestation bundles were made for quickspikes-2.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3f0addcf3f795e4895139fe77d457d3b8722ab83c49897dd49b704ae3b77e74
MD5 9501b62a00e31ce4f137727489073af4
BLAKE2b-256 e4a49067dbc1ec2f456c69d4f91d7af7b735e072262d176715ca4c3ed82f965e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quickspikes-2.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6a710b715378a1ff238297192c268bf863eee0948be3a0d778504646f36b057
MD5 26c1f3a83d3a030e96caaa1f517ff378
BLAKE2b-256 a3d56b9b782581b3b85a097066219c61047b368f9fa33fa482a9b67499aa07c6

See more details on using hashes here.

Provenance

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

Supported by

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