Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Stim

Stim is a fast simulator for quantum stabilizer circuits.

API references are available on the stim github wiki: https://github.com/quantumlib/stim/wiki

Stim can be installed into a python 3 environment using pip:

pip install stim

Once stim is installed, you can import stim and use it. There are three supported use cases:

  1. Interactive simulation with stim.TableauSimulator.
  2. High speed sampling with samplers compiled from stim.Circuit.
  3. Independent exploration using stim.Tableau and stim.PauliString.

Interactive Simulation

Use stim.TableauSimulator to simulate operations one by one while inspecting the results:

import stim

s = stim.TableauSimulator()

# Create a GHZ state.
s.h(0)
s.cnot(0, 1)
s.cnot(0, 2)

# Look at the simulator state re-inverted to be forwards:
t = s.current_inverse_tableau()
print(t**-1)
# prints:
# +-xz-xz-xz-
# | ++ ++ ++
# | ZX _Z _Z
# | _X XZ __
# | _X __ XZ

# Measure the GHZ state.
print(s.measure_many(0, 1, 2))
# prints one of:
# [True, True, True]
# or:
# [False, False, False]

High Speed Sampling

By creating a stim.Circuit and compiling it into a sampler, samples can be generated very quickly:

import stim

# Create a circuit that measures a large GHZ state.
c = stim.Circuit()
c.append("H", [0])
for k in range(1, 30):
    c.append("CNOT", [0, k])
c.append("M", range(30))

# Compile the circuit into a high performance sampler.
sampler = c.compile_sampler()

# Collect a batch of samples.
# Note: the ideal batch size, in terms of speed per sample, is roughly 1024.
# Smaller batches are slower because they are not sufficiently vectorized.
# Bigger batches are slower because they use more memory.
batch = sampler.sample(1024)
print(type(batch))  # numpy.ndarray
print(batch.dtype)  # numpy.uint8
print(batch.shape)  # (1024, 30)
print(batch)
# Prints something like:
# [[1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  ...
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]
#  [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
#  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1]]

This also works on circuits that include noise:

import stim
import numpy as np

c = stim.Circuit("""
    X_ERROR(0.1) 0
    Y_ERROR(0.2) 1
    Z_ERROR(0.3) 2
    DEPOLARIZE1(0.4) 3
    DEPOLARIZE2(0.5) 4 5
    M 0 1 2 3 4 5
""")
batch = c.compile_sampler().sample(2**20)
print(np.mean(batch, axis=0).round(3))
# Prints something like:
# [0.1   0.2   0.    0.267 0.267 0.266]

You can also sample annotated detection events using stim.Circuit.compile_detector_sampler.

For a list of gates that can appear in a stim.Circuit, see the latest readme on github.

Independent Exploration

Stim provides data types stim.PauliString and stim.Tableau, which support a variety of fast operations.

import stim

xx = stim.PauliString("XX")
yy = stim.PauliString("YY")
assert xx * yy == -stim.PauliString("ZZ")

s = stim.Tableau.from_named_gate("S")
print(repr(s))
# prints:
# stim.Tableau.from_conjugated_generators(
#     xs=[
#         stim.PauliString("+Y"),
#     ],
#     zs=[
#         stim.PauliString("+Z"),
#     ],
# )

s_dag = stim.Tableau.from_named_gate("S_DAG")
assert s**-1 == s_dag
assert s**1000000003 == s_dag

cnot = stim.Tableau.from_named_gate("CNOT")
cz = stim.Tableau.from_named_gate("CZ")
h = stim.Tableau.from_named_gate("H")
t = stim.Tableau(5)
t.append(cnot, [1, 4])
t.append(h, [4])
t.append(cz, [1, 4])
t.prepend(h, [4])
assert t == stim.Tableau(5)

Release files for stim 1.16.dev1750925622

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for stim 1.16.dev1750925622
File Size Uploaded
stim-1.16.dev1750925622.tar.gz 853.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.16.dev1750925622
File
stim-1.16.dev1750925622-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.16.dev1750925622-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.16.dev1750925622-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.16.dev1750925622-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.16.dev1750925622-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.16.dev1750925622-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.16.dev1750925622-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.16.dev1750925622-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.16.dev1750925622-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.16.dev1750925622-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.16.dev1750925622-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.16.dev1750925622-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.16.dev1750925622-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.16.dev1750925622-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.16.dev1750925622-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.16.dev1750925622-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.16.dev1750925622-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.16.dev1750925622-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.16.dev1750925622-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.16.dev1750925622-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.16.dev1750925622-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.16.dev1750925622-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
stim-1.16.dev1750925622-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 108.5 MB

Release files / stim-1.16.dev1750925622.tar.gz

Download URL stim-1.16.dev1750925622.tar.gz
Size 853.9 kB
Tags Source
SHA-256 checksum
How to use checksums
97c291058fdceb66a76eeb7a9d348eb65684391cb248de11e479fa575a5f845e
BLAKE2b-256 checksum
How to use checksums
9993cc71d1f5f507bbc1145fe8ad9ace0ef0c89564df2ecc4b5aadc75884feb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
183c7ad1971898d16af1e31b380b8a95c7c383b82f9497a117b1ccb4216e0b9a
BLAKE2b-256 checksum
How to use checksums
fe424ef88faa7a9f06d65617d2c42a31c2cd491d0435aa436776e3fcd92afb43
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1750925622-cp313-cp313-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f2b9faf41d3e628a18bbd2e348abba4374b8bfc97f910baaa06dd0d9f02de0f7
BLAKE2b-256 checksum
How to use checksums
6af6f034f95da11114310c99d6d80182455994e6dc53e89488519c83097cd111
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1750925622-cp313-cp313-macosx_10_13_x86_64.whl
Size 2.0 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
38bdea09ca4fd190f244a5c47ede459cff073e33a606db567d8efad9b9325c7a
BLAKE2b-256 checksum
How to use checksums
7a437470093170adca524362f0eb3fd24b16594aad10c68b20c95e97471b7155
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp312-cp312-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e5c4a3adf39e5145f6b3df1f8a754cb53a2af103a1e624f512532c4b22b8784d
BLAKE2b-256 checksum
How to use checksums
21768e7d6666ec393f45629dc81afee86d416c9f1474954fb292485b9d6209a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
84e1146ca302264e5604bfcf4550607bbbc06e175f5a955f61f34c6efc17372d
BLAKE2b-256 checksum
How to use checksums
cf469cd595aa7944e98796398c5968f71c087c8810ecb2cc51b9cfd0e6a765bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1750925622-cp312-cp312-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8c8490ea61cf6356f3e4d56e6ad4c27a1ebe017406f02561cbc86034826a3c88
BLAKE2b-256 checksum
How to use checksums
674d2d69910d6d2621d9962aa4add4e7df2f33f1fc7a6a6ffc624596a78755f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.16.dev1750925622-cp312-cp312-macosx_10_13_x86_64.whl
Size 2.0 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
14f8cbade582621b1913440f598ac6081c7186c1fd3dd76a292b25958caaf6f4
BLAKE2b-256 checksum
How to use checksums
a6795b801aa3e51ee1e56608fb33302160ffccc2a9e351e13f9e2515d60bb966
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp311-cp311-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4ea56ee6380a530e241926095409063dcd718bae30174e79e90e42b5f65c69a2
BLAKE2b-256 checksum
How to use checksums
bd07eee41c642a878a5453df27e214a699db9f9c039ef7eb03c1256c234b8251
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a1215048dccf8d139fe29fd812a255b5b26a15a3a18de6c73563f0935f8045bb
BLAKE2b-256 checksum
How to use checksums
2c6ec8f54897d98a2002b67a0fe8cdc14a73a563cd17a90ae60c5e72fc550e0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1750925622-cp311-cp311-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
590aaf9ca940532a8cacba2162b28f1a143e574923b7a4f8b79d80ca35b96662
BLAKE2b-256 checksum
How to use checksums
f38c877ee694ddb708f0d582b7db14238306ce9a88abc01cbe7627e3dc9d79c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1750925622-cp311-cp311-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9f15d6289b99351139fa7bb40fc3db09db0fd5796e71684fe0ef324041e5eb3f
BLAKE2b-256 checksum
How to use checksums
391a49e91ed02ab8d76853d15f1b6729db279f646b724f98d34bdb79be2d34b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp310-cp310-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
6617f68075d349ce9a1548de8dc68aab7ad4dd33fe02a44deabe83b433195199
BLAKE2b-256 checksum
How to use checksums
8a0b85832e77ac9768d6d963055c18b4725b274913c718deba1ff9eaf7402f5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
34cebb49c96a7d1be313c40610143a2d0b04d24c1a32b45731d24ee5199419d3
BLAKE2b-256 checksum
How to use checksums
487a4376ea1c980b80c9f27cf85670d0bcdd3f9f0e5199fec504aba42036ed10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1750925622-cp310-cp310-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fbf6cf30c0e1f37386d51a5344b1e55e1110ed705bbd8a3ee4d3aeaeb73427a0
BLAKE2b-256 checksum
How to use checksums
8fcad4c7cf34f74bb45d643217096af1acad4049db736002afa400ff50aee4e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1750925622-cp310-cp310-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f66d7e254827075198183cbb8c6c14ebb609c323ef1ac704a19e925dbf28b8e1
BLAKE2b-256 checksum
How to use checksums
ef3e338445084f2d13d72ad18f679944b4a8dac766553794a6b2e558599adcc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp39-cp39-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
23e553445622f6caa4351328d0c8312eabc8aab506f99c099cf05e461e9adf9a
BLAKE2b-256 checksum
How to use checksums
33c0eec0c41c629ab34b08b635fcad4bb970b48a83fc65bfa412f5b16c3f5923
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8a38ca71a7d1f457361a4de91dddbc51c53dc4f209493aa8b819dcb32d26ecf3
BLAKE2b-256 checksum
How to use checksums
88ff5260f67f85ad3fe85096da239322487c4ee945e60040b459d3c86c3a9041
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1750925622-cp39-cp39-macosx_11_0_arm64.whl
Size 1.8 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c3d3caaa48d86db83d462e646f74c15ffb4db320b569a1a0dcf9a94a9574c866
BLAKE2b-256 checksum
How to use checksums
f4a27862124467e194aec646544c6c27e750ae305b162bbb06c580fe496d6a18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1750925622-cp39-cp39-macosx_10_9_x86_64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b3e7682aa3893d698a998f6ed6469a3efe690bcbea2f7312a05a50a7c3796d69
BLAKE2b-256 checksum
How to use checksums
aa74121bf053d8c130a1e03201b66aa11a7e9229e61a3b47e4d7baf395395c91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp38-cp38-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
3f75df4d1109f48abffc71061ff2ff06b070907ca2d364187d468be8acf2d5f0
BLAKE2b-256 checksum
How to use checksums
eb8eac5ddce9c4091b838426cf096e7aa3b1381c686b5539e4cccb9a443325b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
164659eac5dce66c3ee4b6b0090106aae6a2725829ada13e35d9d42bd1462d57
BLAKE2b-256 checksum
How to use checksums
9cdb874ca89269d8d9242c723d94b272cb1ac7e3ef0e75c8fc85e2eb175e6303
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.16.dev1750925622-cp38-cp38-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e345829f2c2c2e5b5bd6d922600a1d387b8e6cd457eee38b3819882da5e3e568
BLAKE2b-256 checksum
How to use checksums
986279281c891e54413c7ef68a2ed550cfa9656bc41c083430bc5cfae6a52a61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1750925622-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.8 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7bb1e92e32a471b5e3f4a611da5f6627e2dcfebb3014980b86f391ad79594e7d
BLAKE2b-256 checksum
How to use checksums
15f70a29a6a30d8e53de018c043d4f788287b592d50700cd1b9cdab3e4d12315
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp37-cp37m-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp37-cp37m-win_amd64.whl
Size 2.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ae6943adfe1af814e0e8d10dacfbd27d536082696f4da94c1896d5b9d421e751
BLAKE2b-256 checksum
How to use checksums
9227081b7b5f4b3e388b534cee73298e2fcee8b456dc1b1e1240f4f9fd9969ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp37-cp37m-win32.whl

Download URL stim-1.16.dev1750925622-cp37-cp37m-win32.whl
Size 2.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
483cf84216d3efcc3f7d08712beda12f633fbfe17853fa41c8931f752308b55e
BLAKE2b-256 checksum
How to use checksums
64af44dcab88595a8297aca8066a46639d4174d1d3ee2efa95ec127a79d1b576
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
092b71cc7fd37f4c9f760d160b12da2673f95a3fb3beb1e662760056fd31d755
BLAKE2b-256 checksum
How to use checksums
140be138733828df1b047c23f7e5500d6c2c566c6f2a469f1ede667dba26dc15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1750925622-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
36ba1d4687c43fa3c05758464b4620ad6e4cfbb55a26677ecd619275d6471883
BLAKE2b-256 checksum
How to use checksums
02e38265e882613c572fa205a6375a14b0da187ee4eeada31afad31ad0728672
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1750925622-cp37-cp37m-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4daef84b69a068088e8a7f0aa0f38df1f4a0ce2a6b8c2a04c33b6a8142063baa
BLAKE2b-256 checksum
How to use checksums
d9ea0c60ed0b2dfbdc6808c65e4f1cd2cc92bb7739f8fe56c5737d202edb55b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp36-cp36m-win_amd64.whl

Download URL stim-1.16.dev1750925622-cp36-cp36m-win_amd64.whl
Size 2.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
5492dc2c72eec9cf466954d892cfe7b6a043b6b9983a6ead18edbecac15ab5d0
BLAKE2b-256 checksum
How to use checksums
a700f07d1fdab0114e72e208f5b4ab6223061664a6e7da60e3e08ef481ca5aa8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp36-cp36m-win32.whl

Download URL stim-1.16.dev1750925622-cp36-cp36m-win32.whl
Size 2.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
bc0fc43c9d389b2b414c6130e55b6e48d9b3cf9031956d5881c0806cf3dea225
BLAKE2b-256 checksum
How to use checksums
80f9e52135b014c69c4d7176a0a4869053afa693292bba9ef72028e6ab10afe5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b7dd51bc81327ea655dc5cca829ab688778f7d3d0fa2408e5f3034b1e0c9237c
BLAKE2b-256 checksum
How to use checksums
8da5bbef110548007b8817c51b5b2f1586b2ab4f86ed436cf43b0dc553a9f3fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.16.dev1750925622-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
7bc0fd3002fcc19700118e39fb0b8e302f876c6a7f3d3af3fb8a4563cc0bd39a
BLAKE2b-256 checksum
How to use checksums
8530887384e8ada04193594e06362c82142412609757b48f2ccf7a3dc9ba9178
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release files / stim-1.16.dev1750925622-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.16.dev1750925622-cp36-cp36m-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ad564336e958d6a114c02bd923117e6a7f6961a7f392a8cbae292974c930a8b1
BLAKE2b-256 checksum
How to use checksums
cdd78d89614be01073896697098f6c0bf80908f77e47bd11b9491f7280d6e86e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.9

Release history Release notifications | RSS feed

This release

1.9.0

22 release files

1.8.0

24 release files

1.7.1

24 release files

1.7.0

24 release files

1.6.0

1 release file

1.5.0

1 release file

1.4.0

1 release file

1.3.0

1 release file

1.2.1

1 release file

1.2

1 release file

1.1.0

1 release file

1.0

1 release file

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