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.15.dev1743893588

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.15.dev1743893588
File Size Uploaded
stim-1.15.dev1743893588.tar.gz 842.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stim 1.15.dev1743893588
File
stim-1.15.dev1743893588-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.15.dev1743893588-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stim-1.15.dev1743893588-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stim-1.15.dev1743893588-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stim-1.15.dev1743893588-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.15.dev1743893588-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stim-1.15.dev1743893588-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stim-1.15.dev1743893588-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stim-1.15.dev1743893588-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.15.dev1743893588-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stim-1.15.dev1743893588-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
stim-1.15.dev1743893588-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
stim-1.15.dev1743893588-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.15.dev1743893588-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
stim-1.15.dev1743893588-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
stim-1.15.dev1743893588-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
stim-1.15.dev1743893588-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.15.dev1743893588-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
stim-1.15.dev1743893588-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
stim-1.15.dev1743893588-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
stim-1.15.dev1743893588-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.15.dev1743893588-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
stim-1.15.dev1743893588-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
stim-1.15.dev1743893588-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
stim-1.15.dev1743893588-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
stim-1.15.dev1743893588-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.15.dev1743893588-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.15.dev1743893588-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
stim-1.15.dev1743893588-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
stim-1.15.dev1743893588-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
stim-1.15.dev1743893588-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.15.dev1743893588-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.15.dev1743893588-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 107.0 MB

Release files / stim-1.15.dev1743893588.tar.gz

Download URL stim-1.15.dev1743893588.tar.gz
Size 842.7 kB
Tags Source
SHA-256 checksum
How to use checksums
4e7883e835030b9167b70a5abc99f11b9935044491dae3200849826e5c7a70d6
BLAKE2b-256 checksum
How to use checksums
c969dc752fd0dc56725e0df8b5a38cb9d163a602a28ed6ff36a8ad5410f6eacf
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.15.dev1743893588-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e7fbbea36da2808b3cfeb7d6da24d5ee7877b5e64114a56b2bc7cf4856682863
BLAKE2b-256 checksum
How to use checksums
12f9ef86bf1d39f1716aad65c7ab6da7f48d687c93b592895669de3e8d9b0e9b
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.15.dev1743893588-cp313-cp313-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743893588-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
290dc4b40e1112da8b8cf62339ea29251ade62b3210b042519dcf3e133e9f889
BLAKE2b-256 checksum
How to use checksums
b824b1ee690fe1869115694c9057aa073c446f6ac9f4f8fd4be5f0ba6997c52d
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.15.dev1743893588-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1743893588-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
8931577353ac88946b4cb9c2509598ae60dacc55f12716d75f7cb2eda165b2e8
BLAKE2b-256 checksum
How to use checksums
401f47e9c2598f329db36532e6091ba8329056cc70be85f3c541cf4f3335376f
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.15.dev1743893588-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1743893588-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e3fca0f9fec6088e3c0fdd7e8e62f73777cefe3a2a8fe06327ae14e35c28c4c0
BLAKE2b-256 checksum
How to use checksums
29f0ec6331ebaa8646633210e741fadced33fcfb8494e2b292d155f5a3d42b75
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.15.dev1743893588-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fb7fcb38989e33209a8e17d5a4127ee7296c794b71ac7413ddd0c5e24df3b2df
BLAKE2b-256 checksum
How to use checksums
671d7531fd7400ff5f588f7c1e633226c9cba13e7aa2f333c768ca9165eb09fb
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.15.dev1743893588-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743893588-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
4afd9b409827ec9c311ea046509991004cd18d5e07428ca87c7a947855f129b5
BLAKE2b-256 checksum
How to use checksums
19daf36c4b57e5f2f77981c8972ce4a42db4df1a8fff6f83cba53685ae8a0d16
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.15.dev1743893588-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stim-1.15.dev1743893588-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
8dd9010e3ee55521baf885df826832e9af96d5aeeb9794186b0aba90982dd24d
BLAKE2b-256 checksum
How to use checksums
7a788919b28e3964d899695730eb5be8b0ca30f7a6de7d888d40d95dfffeca85
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.15.dev1743893588-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1743893588-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
201bc48ebcc497136a1fdfa47d34fbfef9de58aa704f68eeb00b7106dbbdbfc8
BLAKE2b-256 checksum
How to use checksums
480520425457bf962854b4ba17462b1ea73a541a62c1cf4629bcc56e17605222
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.15.dev1743893588-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1ddb0ad094178d1aa871b6217423174547b1911e003f6de2ab6ae7a2f461c1d3
BLAKE2b-256 checksum
How to use checksums
7018c2b04cd022d44c1d65cb28df254bcd3e753d091691f2931a7846aeb08e4c
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.15.dev1743893588-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743893588-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
6076153f1413f6a54070121dbbeab74f40f16cc0cd9d29708ca5365777df5a3c
BLAKE2b-256 checksum
How to use checksums
2e3e298c26be5debb6a7abb24faef29993138df25fd9f550c0479bd24cf29291
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.15.dev1743893588-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743893588-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2e07e61e02d2bb6c221159ed8554598c3cfac5b5edc192c433ed4b47a0631892
BLAKE2b-256 checksum
How to use checksums
b44e2950bfb99bb9a9a7944fed18f4d12418a883465d81bfe69b3deaffbb1870
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.15.dev1743893588-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1743893588-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
05335f0575b0fd218de1810ebd863a8fb98ae636fdf3f54275ca0a11f80d3c4e
BLAKE2b-256 checksum
How to use checksums
0342b953f3e70640328dd7168b599bcdc1c3d9249b24cb8692741aee59dce4d9
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.15.dev1743893588-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f4522b27b80e4006f2bded958c2bf08a5f0bb8ff88529404a6d6262eab782790
BLAKE2b-256 checksum
How to use checksums
a2dae6e27f923236418db517d5e69744fda40736bc90cbe7bc9ef8d5252286e4
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.15.dev1743893588-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743893588-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
8c8b0ef01c988a7dad526c07331734aa72da07265153e0e9363dce0b9cd6530b
BLAKE2b-256 checksum
How to use checksums
606d6724b7c498b375eca3b4ae0a5f65ae566e0f6c565d26bb7836d3701e4602
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.15.dev1743893588-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743893588-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ac7551d15f8d53c0cbe2288c0a6cc7829d3e3b47d87d9c098d90be109ddc7ed4
BLAKE2b-256 checksum
How to use checksums
d36ff0334a09e25b2b1a8f98a9ebd78667c17e9b0b09d9d9c3089998ba7c39cc
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.15.dev1743893588-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1743893588-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e2cf3575eff8efd149bd5b8f95cca5e24d23adf0166ac5ea861f6bf3cc2384fc
BLAKE2b-256 checksum
How to use checksums
8b11b114048cc91eb4b8090d4b61f5f727245638f375833cc481683b0e40798d
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.15.dev1743893588-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f1da40c1c789826d746404e4dec39b1601a1bc020075c26c2b40a78283fe2e89
BLAKE2b-256 checksum
How to use checksums
aebca83e188c43c8a335fbdd103c371711b232e31235d74e51d83be640a8ae80
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.15.dev1743893588-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743893588-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
9f11b560dba6d7586d3154455752ed4249b17825190c1bd791db0d56021e2d5e
BLAKE2b-256 checksum
How to use checksums
c164a9bfe3b5bcbc6cd93d0851af766d7c604b885251f8b027d67e3c6f778864
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.15.dev1743893588-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743893588-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2b9710e8c3a7dfb51b0310962802f3faafca757c88a04eb203ca83f01ae66a9a
BLAKE2b-256 checksum
How to use checksums
5caed73a76b63be6941cdcc79e5b8433f2493278cd850e80f07f77e31b156a68
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.15.dev1743893588-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1743893588-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
a43c0daa1f3af332bc337ada1c0b63e21137a4c20d1c5e9956c697768898e333
BLAKE2b-256 checksum
How to use checksums
69f1da5e02824ec806abd3ed11fa87d3630a23e15eea73ad1d3d3fe5382e0bb2
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.15.dev1743893588-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6b2b4a32fdaad506b88d57cf9e4c69d578626c9a7bfaef61f532d8f9c836a5d2
BLAKE2b-256 checksum
How to use checksums
e29b11d2df4fa85ce061e78acc7f3490414a0df63c2177ae19adc5e69d1acb04
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.15.dev1743893588-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1743893588-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
3d626792418a009ee77a274638acd68388602975d88f5526a0e0b883a42f7939
BLAKE2b-256 checksum
How to use checksums
0712960c43f29c9ffeccc19b0971e865b765c4e200a82941a9557df017d590da
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.15.dev1743893588-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743893588-cp38-cp38-macosx_10_9_x86_64.whl
Size 3.7 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ca4b522b91052dc5f294ac6748e1304b7c56b9b20826f48263288fdea7baf62c
BLAKE2b-256 checksum
How to use checksums
8b8878239c895ce1611e9b231cb455d4c2fd9867f54c434774bc7042d7f83c41
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.15.dev1743893588-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1743893588-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
6284251c430941ca9cccf2a4885b4dfc1d2b54a98d909e8d3bf706a9d2857b1f
BLAKE2b-256 checksum
How to use checksums
363d2712f328ca5ffa180f19655fa1a8a6b9fbff0bddab34224ced1be0da8728
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.15.dev1743893588-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1743893588-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
ef5aacdd5c45a4fe7fc8336db118e4720e022db298d03a3203382d9ed4a9ef2f
BLAKE2b-256 checksum
How to use checksums
1d377251d3aed288d85efacaf2af081b2f246a51a3dcf4959b422190c2dbb2cd
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.15.dev1743893588-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-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
a997543ba487cea13b61c055f4ea9aa87d1d3faa6c73d75e64bc60aa046095c0
BLAKE2b-256 checksum
How to use checksums
5399d4a06b3b5968c4b725608c60e048eb98fae47e40851649d4e78341a40f66
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.15.dev1743893588-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1743893588-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
e16c8383fd906ae8767ef4774a7f1b45268a4537ed21b42a9b555f54bba6ce35
BLAKE2b-256 checksum
How to use checksums
22ab067e00953af215fa6dd20c9def292fc472d58951f2f0065e83a6ecf5ef4f
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.15.dev1743893588-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743893588-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
4b08d203f5ab99daa3e78997aba6443418cdd819e429509ffaf908d49e83b5dc
BLAKE2b-256 checksum
How to use checksums
1b69a85fbd6b85ae3840705cec656c1dd0949cfd4678c5a916b1dd6b93e83222
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.15.dev1743893588-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1743893588-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
f7e186bc8cb7c56e835ba7d1edfb2084713d94a5732a5f37f0c485575f1d8e3d
BLAKE2b-256 checksum
How to use checksums
06558c4b2541ecb5307ba7cf54d5ddab1e44a9163d6e2a1e9352c722fe9ae49b
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.15.dev1743893588-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1743893588-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
c6f30b14994f37d023503e95b7ef156fc7dd71bfbf594e8a086436081f1640ee
BLAKE2b-256 checksum
How to use checksums
37ccf8651b5e503bc14028fef18b4d236b6840c431fecb1d991a0a3131a6ad4d
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.15.dev1743893588-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1743893588-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
80b6deae1e1a30092ada4d5101dc9111801d533552daec2dfef3b3b0e6a2a949
BLAKE2b-256 checksum
How to use checksums
137bf3b42fcc4732c3a3966f6d1468e7ba57d1b49a9462bb85e46b3a8c75e1b7
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.15.dev1743893588-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1743893588-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
c48059b93b144b89f4e1ab98d863229dbc9794f8f486f8731d9b99a0c006be19
BLAKE2b-256 checksum
How to use checksums
8ec0e8ab5f7c9d670bb1a00e66cc6f195ed1ba01b36e88cc6d09ddd3e6a93ae2
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.15.dev1743893588-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1743893588-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
040b63228837209f3ddb5bb1af46420905bf1b9eaa0f3a87e74649222517dda6
BLAKE2b-256 checksum
How to use checksums
d9969bdb4b90d61d7556b562fdfeeaa3514c4e861e96dd3c7e8011177e992d94
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