Skip to main content

Zebra noise stimuli for Python

Project description

This library will efficiently generate visual stimulus videos using Perlin noise, including zebra noise. The core algorithm is in optimized C.

Example zebra noise

Example zebra noise

Installation

From pypi

Run:

pip install zebranoise

From source

Make sure you have a C compiler installed. The easiest way to do this is by installing Cython.

Then, install using the standard

python setup.py install

This will compile the sources and install.

I have only tested this on Linux.

Usage

Basic usage

If you would like to generate a zebra noise of size 640x480 for 2 minutes, you can run

import zebranoise
zebranoise.zebra_noise("output.mp4", xsize=640, ysize=480, tdur=60*2, fps=30, seed=0)

Other parameters control the spatial and temporal frequencies. For instance,

zebranoise.zebra_noise("output2.mp4", xsize=640, ysize=480, tdur=60*2, levels=10, xyscale=.2, tscale=50, fps=30, xscale=1.0, yscale=1.0, seed=0)

The meaning of these parameters is:

  • xsize and ysize: the x and y dimensions of the output video. (Sometimes these will be rounded up to multiples of 16.)
  • tdur: the duration in seconds
  • levels: The number of octaves to use when approximating the 1/f spectrum. The default of 10 should be more than enough.
  • xyscale: The spatial scale of the Perlin noise, from 0 to 1. Low values will make the video smoother and high values choppier.
  • tscale: The speed of the video
  • xscale and yscale: Resize the x and y dimensions of the output.
  • fps: Frames per second
  • seed: Random seed

Advanced usage

This package can be used to generate new stimuli based on Perlin noise.

To generate a Perlin noise-based video, follow two steps with the package. First, generate the Perlin noise. This is the most time consuming step, and will also use a lot of temporary disk space. This is accomplished with:

noise = zebranoise.PerlinStimulus(xsize=400, ysize=100, tdur=60*2, xyscale=.2, tscale=50, seed=0)

See the function documentation for perlstim.Perl for more information about modifying the properties of the noise.

Second, apply "filters" to the Perlin noise and save the resulting video. Filters include thresholds, sync squares in the corner, etc. If using a filter with no arguments, just pass a string naming the filter. If using a filter with arguments, pass a tuple where the first element is the name of the filter as a string, and the remaining elements are the arguments. For example,

noise.save_video("noise.mp4", filters=["reverse", ("comb", .05)])

The above example applies the "reverse" filter (with no arguments) and the "comb" filter with the argument 0.1.

Filters

The following filters are currently defined:

  • "threshold" (1 argument): set all values above the threshold argument to white, and all below to black.
  • "softthresh" (1 argument): set values much greater than 0 to white and much less than zero to blac. Use shades of grey for intermediate values, according to a sigmoid with a temperature given as the argument.
  • "comb" (1 argument): Alternate black and white thresholds at intervals given by the argument.
  • "reverse" (0 arguments): play the video in reverse
  • "invert" (0 arguments): switch white and black
  • "wood" (1 argument): similar to "comb", but use a sawtooth wave
  • "blur" (1 argument): Gaussian blur with the given spatial standard deviation
  • "photodiode" (1 argument): Draw a sync square in the corner, with a size given by the argument.
  • "photodiode_anywhere" (3 arguments): Draw a sync square at the coordinates given by the first two arguments (x and y), and of size given by argument 3.
  • [any function] (0 arguments): If you pass a function, the function will be applied to each chunk of the video. Chunks consist of the entire x and y but a subset of z, guaranteed to be an even number.

Example

To get started, try the following:

import zebranoise
stim = zebranoise.PerlinStimulus(xsize=480, ysize=128, tdur=60*5, xyscale=.2, tscale=50)
stim.save_video("perlin_stimulus.mp4", loop=1, filters=[("comb", .08), ("photodiode", 30)])

Other information

Much of the C code is based on Casey Duncan's "noise" package for Python, under the MIT license.

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

zebranoise-0.1.1.tar.gz (14.4 kB view details)

Uploaded Source

Built Distributions

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

zebranoise-0.1.1-cp313-cp313-win_amd64.whl (20.4 kB view details)

Uploaded CPython 3.13Windows x86-64

zebranoise-0.1.1-cp313-cp313-win32.whl (19.5 kB view details)

Uploaded CPython 3.13Windows x86

zebranoise-0.1.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.3 kB view details)

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

zebranoise-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.7 kB view details)

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

zebranoise-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zebranoise-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl (16.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

zebranoise-0.1.1-cp312-cp312-win_amd64.whl (20.4 kB view details)

Uploaded CPython 3.12Windows x86-64

zebranoise-0.1.1-cp312-cp312-win32.whl (19.5 kB view details)

Uploaded CPython 3.12Windows x86

zebranoise-0.1.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.3 kB view details)

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

zebranoise-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.7 kB view details)

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

zebranoise-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zebranoise-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl (16.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

zebranoise-0.1.1-cp311-cp311-win_amd64.whl (20.3 kB view details)

Uploaded CPython 3.11Windows x86-64

zebranoise-0.1.1-cp311-cp311-win32.whl (19.5 kB view details)

Uploaded CPython 3.11Windows x86

zebranoise-0.1.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.9 kB view details)

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

zebranoise-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.4 kB view details)

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

zebranoise-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zebranoise-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl (16.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zebranoise-0.1.1-cp310-cp310-win_amd64.whl (20.3 kB view details)

Uploaded CPython 3.10Windows x86-64

zebranoise-0.1.1-cp310-cp310-win32.whl (19.5 kB view details)

Uploaded CPython 3.10Windows x86

zebranoise-0.1.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.9 kB view details)

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

zebranoise-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.3 kB view details)

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

zebranoise-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zebranoise-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl (16.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zebranoise-0.1.1-cp39-cp39-win_amd64.whl (20.3 kB view details)

Uploaded CPython 3.9Windows x86-64

zebranoise-0.1.1-cp39-cp39-win32.whl (19.5 kB view details)

Uploaded CPython 3.9Windows x86

zebranoise-0.1.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zebranoise-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (30.1 kB view details)

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

zebranoise-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (17.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zebranoise-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl (16.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zebranoise-0.1.1-cp38-cp38-win_amd64.whl (20.1 kB view details)

Uploaded CPython 3.8Windows x86-64

zebranoise-0.1.1-cp38-cp38-win32.whl (19.2 kB view details)

Uploaded CPython 3.8Windows x86

zebranoise-0.1.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (33.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zebranoise-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (31.6 kB view details)

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

zebranoise-0.1.1-cp38-cp38-macosx_11_0_arm64.whl (16.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

zebranoise-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl (16.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

zebranoise-0.1.1-cp37-cp37m-win_amd64.whl (20.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

zebranoise-0.1.1-cp37-cp37m-win32.whl (19.2 kB view details)

Uploaded CPython 3.7mWindows x86

zebranoise-0.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zebranoise-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (31.3 kB view details)

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

zebranoise-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl (16.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

zebranoise-0.1.1-cp36-cp36m-win_amd64.whl (20.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

zebranoise-0.1.1-cp36-cp36m-win32.whl (19.5 kB view details)

Uploaded CPython 3.6mWindows x86

zebranoise-0.1.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

zebranoise-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (31.3 kB view details)

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

zebranoise-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl (16.2 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file zebranoise-0.1.1.tar.gz.

File metadata

  • Download URL: zebranoise-0.1.1.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1.tar.gz
Algorithm Hash digest
SHA256 162ca043e712c74675dd0d35b6349ad8d1f74616e36f6877eee5aaee518e6649
MD5 cc3d47e2c06df123b54f64c0b51c4a14
BLAKE2b-256 aaeccf0709d16c627748c0435b74cda4be96cbdf0335d9439cc295c0f1997d6b

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0969b9efafa5fa8bd7e158d1d6d5ad44e5836a916fce5b8354874c6a46388de9
MD5 e4fd2a22376ac237d9acc2da9d9bc2e0
BLAKE2b-256 d609e4a6f142c2d9d60c7af0dbf9e1ebbf49602e41364cfa31c7d0d4a7d22d82

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e1a4bf80c808bf08ac84acf9563c6f73867b1d8dfc1554d20e8947f051f0972a
MD5 f20bd26ebc9967c108b7899cb3f8f0ab
BLAKE2b-256 0ced3955fc1e56ed6bf40d24cf0f563f1094a46320dcb3d7afd6bf3767fb2665

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d97ca142dc74794575c815c8bb13e85c30bd5f3121d09328860202878e3c26fa
MD5 b940aeb06bbf28934ac8b7108759facc
BLAKE2b-256 803d8212ef3bd7645643cadf918dfe22953e488badc571ef91a4bc14b66cec40

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13f0cf4cd1565c2790e559ec8386bc442ba8fe9252ebbe6b69200a2e98e8f8d6
MD5 3d5075956e5baf6bd31d1b2afa1d46d1
BLAKE2b-256 bcc36262f7679f89803db1943c40bee68eeb41f058bf7c8e85127d451836f69e

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a051ee0c70cb2da18de03cd6f0143be78bd776a75b10f20364845b9cc50ef2f
MD5 de5a1be66430914a7569565066e5de41
BLAKE2b-256 a3e44ac3084a5d70633040093bbf40c3760bee6ba794eda2a0e1ecdef2193b48

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5fd9528d878f38c009e6f20c4edc2f976f0edc2a387a40612fb26dd1300f9fb5
MD5 c8c436746fcd375c81866c1796ac3ca4
BLAKE2b-256 ddb47b8069be253af56132439a5692c785585239e2709e7a31e2780c7c660f2c

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aad840b3d02eb17b1f95451570eb9f6a70e6be7d9143bed781da5a16a2a26ca0
MD5 ce39e4adada841784ee5b518d7ebdc9c
BLAKE2b-256 f62db3d57ab8daabb77da095607a0cb0aecfcfe391b722cdd08227ba8894237a

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4b6dcb06b4118e9b221d46ea08278c84bab8e62d49a464ec501c543af5d5acda
MD5 29289c567293ad91d937defce63246d8
BLAKE2b-256 28d22c2f44da4f3c91aae18497a9b63d824ab2bb7f516729afb0300ce7fdfccc

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb1f2a889a30702e1380d6b7b5a3410b596f5abdda726903f5f0a01f91ed11c8
MD5 c6cfae1bcbcc5393c7e940ef0d78d6c3
BLAKE2b-256 9f76e332bd3fee71f66d7438deeaaf3c92d942422c95e41dfcf16887b879fdf9

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f74974942b9c9ba8362673c6de49d7922a9a315fc121073497cdc425e85c408
MD5 7166044ff9f20c81791d28c4266b43dc
BLAKE2b-256 f8b5777cb7af1d267a9e5b67c1e33661da7b9180570231e35e5715d473ed1a25

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f58fecd7a0ccd46f1ac406c6202bf48caacf7f40afac62e88eefce983711d6d7
MD5 0b89ef3bc96724b1433694d627bf4949
BLAKE2b-256 17f562f5cb76f59a827c80a6d7edee7dee13aa0e4f42cba339e5c6d2ac2268f7

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8a55da2beb9cc2223280209f951d75030cca65ae2c8903479b0cad6b14a8f18
MD5 1a8ce89a9ecb32abb5812f09e73150eb
BLAKE2b-256 f04b8c215a3909606800587e55b819c183b734d5adff02f7c1f98b72a6094082

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d1bb00dd219695de92d6c9e9c3c66853044bfd6ba8cd6801d91adeaa96e0982
MD5 b933b3bb9cc942c7ad4d8a9693568d21
BLAKE2b-256 00c4956813f9906b9219271ec1bf07db1625507b1e951a00a22f1d6968d1d6cd

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1db3e07b0d5590a499a85bf6b0247918c183097b88651fc8df53012eb7769f1e
MD5 c8eee0cab8f75baf7b042fe698d55412
BLAKE2b-256 1f15e101f1af33b8d8f19742752c1f4084422a141f1b1e27eb1cd01ec3a77d14

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 874bfe5f82bda224684d8cd7277a6451f36442890abac5e88a7153a81d9adb4e
MD5 2eba6f99f9f25d3c3d7a96c7067e8753
BLAKE2b-256 44ff294ea5ec8b23a1b8e8d371e64d9bed40558321343436ddaac5dc700c20e9

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c09e11b2318b4c93dd2dea389c2a2a71ca883c0b14597fdc1f20a51e73b45afd
MD5 48e93c2aa68e710e2cd522f6fa0c8ca6
BLAKE2b-256 4917bee5c0bd30b2b10bdcca737c9f58384f42f35aa7cd0f78cb04de23b133c3

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de974239263d67fba04360beca92efd571937e14fa7008ac77007003555d5445
MD5 8cceef0969dae35087857ae3d2b0c6b7
BLAKE2b-256 759c88074e08ad6e9258887d46e873f6d7340da9477c1948ffb79eb6d1e64996

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65c06b822f94eed269e5c883276df635d9961c132198d293207e1787e76adfc0
MD5 a82d545a0dc6e940352a1d702f7c2805
BLAKE2b-256 5b07af913794c09d673cdfda3cea05a0e2db735647ab2e4c353bda40a64309f2

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2d99d7d3f0396fcc46791cbad2272f6b77c59de9bda5ff52afaf6a470e06a793
MD5 78f190f213d1501d85c3c32c50b45e46
BLAKE2b-256 e81ae2ed8fa50ef9b3bcc80b4853e1f261168ebc2622581aacf14c030e930ae7

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 368a24d6ca177b235a618c8afe2818a2a595e580c7e187c209c4f42c567b986b
MD5 18066d5bb8af489fa82f0dab759cbed2
BLAKE2b-256 645e3682f7c47f6f41e484ae511dc5dda506fd95aa5dfd29691bc44b644999f2

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69053e3ba4604d18f9227a4140a04f850ae0684a3aefdeda8eb7ab128d35f074
MD5 ca215fff8e62ec2b01c0cd510642656b
BLAKE2b-256 a6e8f5e424a982be8227c45d7cf0ae9e1a3a6dd53cf2768e9f0087ee49a6d990

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8157c95416e7028716d522e39abce650e3bba5a30073552b904c6ca664231002
MD5 5d2b5717507bf5db53243284d896b768
BLAKE2b-256 e4453f748cf3354dde0f52b0fa312725d89e100a24877884055ee9209757487a

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0614e1f4a256b88755545d8c409d7eddd988aedfa6964974c5f6c4834ce6af9c
MD5 9e31797c036566a284e7dc2ac4803181
BLAKE2b-256 97c92e03b05e6ea865bb1ea828a08feb5ad0376f4186403c0aaaf729a1f30bfd

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90122673db7e2a173b1bc521816fdb35c6ce9a52866f96340f0a9898a8af2ca5
MD5 b6cc953479a63ebffa8ebc4af359921c
BLAKE2b-256 d304e4cdc85b3bff83fb0defeb212ec0650de06b0fecdd877fd204f291512a6a

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e3c5384782c0d29d0d8a28679ad232002263ce84ed07f312386ab9e05af69f35
MD5 d12b9d3cbb6addfa629d83c61d322bc1
BLAKE2b-256 26519c206a5514c41b2292a884bd7afc16257934edb444e95f3031210f527829

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c201f195ad2e22e3c936cc2361d8eaa1132a0d13c892b274863be1374a37c496
MD5 9140da66a26fcd79d9d56e11d5d2b803
BLAKE2b-256 f7777a87489214ad0a8f0f1f433dae406ec9cc57cc9c1dc84ddce176da6d0f4d

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e1371ffba3a7bcf8e81119f335cc7ec85d7398a1fbde63f22b52a61129c21fd
MD5 029413718684e7a956800a412d60b559
BLAKE2b-256 891e942cf5ca95d85555905c0cd149ddfbb828e0aea4e43af386d5f0af66f049

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07adf27f7cbb5bb3bef1750515c0afd72bdeb666b1ab1e5e2cd1e1b1a8a78769
MD5 51db18a1d84df94ec9827b6309fe6bb4
BLAKE2b-256 da39cddc37236c3f830ec71613c688c2bad39e0859e106df50b96c34c7dd575b

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5df365ecf0cafcb7047ab1b1ba8311dafcf19174c0ad059ecefa5a5a7d88f9b0
MD5 ace16d47a82b68b96ba10e066ae0485e
BLAKE2b-256 c670362ea8f915d126397866c1f8703178878a38c82e7ae547cf8e0eb504300a

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c1c563f21221e6e2c14c028361004204623444e7bb5c58f22407a2684f5a0e4
MD5 c5e2cc7866b7dfc9c89fe4505dd9b182
BLAKE2b-256 754a8e74d1a8a6c0aee2b3fbc46accc596d34ed027bfc742a3d6e573c10343ff

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 46d888b2333164bee192331239e47b93742ccfbf679d465f98c70cfea33f1a6c
MD5 bc148b1667a3027f4a8ba3674799335d
BLAKE2b-256 e88f71b732d8a597caec45f8010e378503add277d2c6021001142309ddf534ce

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 29db5ad876f29e91d069d1e75baf6b219fde3b03cc0776e9f0398e0982a5a0de
MD5 36edfda08643b3992b408f1208aa727d
BLAKE2b-256 49aef6859356fbe3baf708d4fa92a3b7857001a0eedd5c47e0fe6d77de919968

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf5805d05a285d2175b46f81337267089be3256f5b35c37ff9a0aa7cd177b106
MD5 54292bf35f881b8607a2de8c9cf8d6cc
BLAKE2b-256 e75fbc57427278656cefe3d5e331f8858910955c1b63243c34fd92c73040f0e2

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d80647a1f4028ffa7d6dc18a4173f39a2bc99922271e1be5c76faaf4ae1355a5
MD5 14b308bd15613ea7366aeff4b3e296d1
BLAKE2b-256 09c81eb8a434d583f60ad4099ec889a7bcd9093f4746656a1f8f3d798a6cd6f8

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57788fe3e87690d470800e71c6c5b21268bc9e05d852870ed91073e553fa57f9
MD5 9c4d920bc437b95b02582602c9c06fa3
BLAKE2b-256 a8260f4c6fdf49a29417c4201ceef0e492eea30ecb184f8b9e6275a3e53a692f

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 171943f5da1bae862c8c60495370295e68b8736170bdfe6bbb6b74f4d4ef2385
MD5 834354b1037b4e050352e151e1aa8bb5
BLAKE2b-256 7498737ab0117c4af0748f9f73ab6cc9d233dbe5b187968b21aca27088f38de5

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d3bbf28074ff3333670b5c2bc5d3ad91749e91d6ac73b4962ad6742daaa82a3b
MD5 c78d9e06c4b2e43f745fe4474d7bed6e
BLAKE2b-256 223f6e4d3068a4a4424d5c1d02c54060c6f4e85f8188f7261756649c5a79dc2d

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 19.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9db6bd684a66e5ee65c81758e0e511d4f9a4f269054daab1934146c43cb50f96
MD5 9f4ebcdeaf689f70e37a7aa06f867bec
BLAKE2b-256 28bde94c0cb7075a1caee174c071aa5d31b6ace2f55892d25579294af21ae7b7

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9d617dbec3ad98f597b82962693aa2480a05b4ee7e8a956ea11a74a09ea9106
MD5 845b5a556db82d9b6275a7ce731cab99
BLAKE2b-256 4372da02bad1fdb6a6fe0d22da1d7efd545a2c91ac316733fdc612589fd02f3a

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c9a1c233e107dc0161f8a9639afe48576e9430f960f7a3c88745a2d63ef4eef
MD5 9b8ea85eb558e46a1ed6e6e152a65adb
BLAKE2b-256 541c9a842023b7a721562e9c60808eb5508d1fbf9f10e6d6e2632ba33cd3c082

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b83dc835aec56c83b79d7171d8d24b9d2410008344aec600a7cf2abc7b70ba4b
MD5 4c6a7d7560052d838cfd3a736de27c18
BLAKE2b-256 8679f54b079eb72b61bef47b7281b1cf16bb4ae5042d025989763145e2c45bd8

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1ff5ca4edc8ad883b42a0de5c03e353a83510e13903e095c7286885f2b3c054d
MD5 c1aa12b63ade2ca071d76ee66c4c1efe
BLAKE2b-256 3e27e63ca9a04529dab20df032a7d83858991316a117c77c99a612b19b0fe5ab

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zebranoise-0.1.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 19.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for zebranoise-0.1.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 831d95a0cfed8fe63950a1ddb25461c38ce2ebd8f5157c2f910b8b99247daa6b
MD5 7b73d836c43756d6e26d2c9e8f062559
BLAKE2b-256 7297a32943acd203af201bf011f1685a016b1ae12cc770f708f9275f836b61eb

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f0fc745faae16810236c85cfdd5d292ca35d12049e5934d6db2ca63e5597e5c
MD5 1173dfe7841c67d4158d19be3132ed8f
BLAKE2b-256 a427e72e6c69dbffe566e9d5625fb8e71294be022fd50fa8284ec1564cfc4406

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37778ca1621ad3b64c69c6b4a5778604bb42269b836e39d1933b7711322eaee7
MD5 c0b6ac12e4db9d88e8dc6155cc902d07
BLAKE2b-256 82569fb8348cb833e2e07f1f0aa4a90df151caece07ea2d2eb4ea7b0407539ba

See more details on using hashes here.

File details

Details for the file zebranoise-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zebranoise-0.1.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41038eb79b55d03e15dfcef1cb2bff873b95165490464ef7b162a25fb91f12c6
MD5 f5cc2e2a85b3996cb44386771f1468ef
BLAKE2b-256 e09473113160af38a1e49902437b0d834fb425db041b9faeb8b87e17766c7f63

See more details on using hashes here.

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