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.dev1742010621

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.dev1742010621
File Size Uploaded
stim-1.15.dev1742010621.tar.gz 838.6 kB Details

Built distributions (wheels)

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

Total release size: 97.6 MB

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

Download URL stim-1.15.dev1742010621.tar.gz
Size 838.6 kB
Tags Source
SHA-256 checksum
How to use checksums
92c54bf85699d1ddbe09a6996105526efa652031e9f69fcffbbb2da9d323d3a6
BLAKE2b-256 checksum
How to use checksums
016178a7c95b72f021101dc5724ea560856ae854bc708066f3ee2495342133aa
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.dev1742010621-cp312-cp312-win_amd64.whl

Download URL stim-1.15.dev1742010621-cp312-cp312-win_amd64.whl
Size 2.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
235abbf19373a9de4eb3f4f65b6c4978360b73f81df0c6cf161f6965e7766b9a
BLAKE2b-256 checksum
How to use checksums
0b5b18e584f119d55a817e888bfaeae9dbfb9c59286ef1506cb21f12f820a50c
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.dev1742010621-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-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
eb79cc082ac5c35a07befc256b64803594ff8ae67d77f3a85067ec34ec8305a5
BLAKE2b-256 checksum
How to use checksums
c383c2fa65218630c6e87161e52d9424e03d0aa54981b0d49afbb4c64c6e0c3b
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.dev1742010621-cp312-cp312-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742010621-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
59d604c214e32eee8b777535459a0e0790bca08f59d1cff4d8d31263cf5f5c57
BLAKE2b-256 checksum
How to use checksums
c3777f6f96f29418c6b3480fdba8347436f5a3ea7817dfdfbc8d668bd70bae7c
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.dev1742010621-cp312-cp312-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.9 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
0c379e73535b23b8c072fad6009229065cb715cc8625d1528177a45dc68ac36b
BLAKE2b-256 checksum
How to use checksums
417304c15ff99ac6b207aedbe869bf672878d8772a61beea516c97dabc89afda
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.dev1742010621-cp311-cp311-win_amd64.whl

Download URL stim-1.15.dev1742010621-cp311-cp311-win_amd64.whl
Size 2.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1a86f97052e98d3cc3209954366ccee495396d232ee6a7dedc1e0eb7307003f3
BLAKE2b-256 checksum
How to use checksums
ce82d8653253b3ed6d47f5582e7b3fe38e2fc10ddec4e797f4f21d53e71bfb9f
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.dev1742010621-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-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
7da7f73fa070ee49efb364c07cfc26d90e6eb2835e20fe5991fdb686d52fb282
BLAKE2b-256 checksum
How to use checksums
6abdf54d50ecd4413eb5604510fae1866468485b2ae3920393a15ea5be2cfa42
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.dev1742010621-cp311-cp311-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742010621-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
6cf85184aff50408c2085454626c669482c85c797875d980e12f445e2f35164c
BLAKE2b-256 checksum
How to use checksums
9ff373aad56f4758d2e50ea9afc44b507861a587f4ebad9e96f47fcaab741366
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.dev1742010621-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-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
fdf772ba5015b30476d4366b48255a41ccbaf500692ac58110b5b107ff651af6
BLAKE2b-256 checksum
How to use checksums
255579ed4b0badb98af5a89d7334ed74d03d040071131f36fba954d995bafb07
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.dev1742010621-cp310-cp310-win_amd64.whl

Download URL stim-1.15.dev1742010621-cp310-cp310-win_amd64.whl
Size 2.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a8f653527cc8d13e8aa1c36180f7807f97440c23cb26ffd67aa229459a5255c8
BLAKE2b-256 checksum
How to use checksums
dafe89282a9a232e36787c0cf1956ef227cc60c4fdf551b48813d392e9b6da53
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.dev1742010621-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-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
2481fa59a8ef7e586a8e7ac959c39267a95ff088d18ed83a594644032e8db94f
BLAKE2b-256 checksum
How to use checksums
9748d447d04c8efb9c479915a6d150f3c5dbb12b79baf6b7c692c010cc7655d2
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.dev1742010621-cp310-cp310-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742010621-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
a93a5ead0e17a103475272e20e2bb95480405bd8b657dc32b0b83a523352ba05
BLAKE2b-256 checksum
How to use checksums
f3038c1f781528f01336b5bd971aa6af1adc90a99bc6aec0e91cec9ef994b67e
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.dev1742010621-cp310-cp310-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-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
60ba1998ed57b677577940cbfb90eda340a625879dd68bf8d37de40469b294ff
BLAKE2b-256 checksum
How to use checksums
7dba773fdd917f1cfaa02f1c40afed85a41748f535f8b875f2b6db3ba517e124
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.dev1742010621-cp39-cp39-win_amd64.whl

Download URL stim-1.15.dev1742010621-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
363d8e5fb14dcffff8e9b8077dbf79c8ace46330ac13e5771845d120c83c036d
BLAKE2b-256 checksum
How to use checksums
fb3bee60054e06766a8adbee975674e27e4c0e203c15053ee03bf6d9ec32f0e5
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.dev1742010621-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-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
d880479cebb46774dd92d1ab29cfb7919984841795af36f731bd9f58158d7329
BLAKE2b-256 checksum
How to use checksums
743c2ca26f3a9436eb0657f54453e964d2a49f076b0fc5f8fdbbcefa40c260b3
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.dev1742010621-cp39-cp39-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742010621-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
a19b8aa4dd55bf7f67e5d579215b08bb90f369956d2aff35c38e8f0069ad218f
BLAKE2b-256 checksum
How to use checksums
4b4ebc45c251ef75c935121894f7aa28e0e6762d02e46125c9e4c78cebdfaf71
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.dev1742010621-cp39-cp39-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-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
b03d6a7d97ad2d40a78332fd126f592d462f3e1ff436359c196d8a0161d9cee1
BLAKE2b-256 checksum
How to use checksums
aee90bda390135e638ef322501a99d3ca63e1d2104b5825f012ed28393a7a016
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.dev1742010621-cp38-cp38-win_amd64.whl

Download URL stim-1.15.dev1742010621-cp38-cp38-win_amd64.whl
Size 2.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
b0167283ea6c9af78b28c3ad13e89eda921f695dbbed4074d1027f810e52523d
BLAKE2b-256 checksum
How to use checksums
928581eb3b9d301093ac69e173e115f42ada357a70281633df5f0b148a43b523
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.dev1742010621-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-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
5bdf646a4e2a837adb4e7f380719f8e23f14eef9c0e47c6f906506e2ce67b33b
BLAKE2b-256 checksum
How to use checksums
936c052bde9ee4b39a6595c1ea19a7fdf31a9140813cd85a52d2f812a7d37625
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.dev1742010621-cp38-cp38-macosx_11_0_arm64.whl

Download URL stim-1.15.dev1742010621-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
3c27fd4e297fc6e1eee52f87c05e5a88ffc9dd90128d5e8f1ecddf979d3275cd
BLAKE2b-256 checksum
How to use checksums
94db5db0d117ebc477362f3c21ffa9ef4b68de0ddd76b1a149361fb4506be3d8
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.dev1742010621-cp38-cp38-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-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
5cd13fbd3f5c5ba0bb3486cbd3ee0782eec28ce76c17b4e8cbfa31ba55455892
BLAKE2b-256 checksum
How to use checksums
19a64c586cc7f4a53729950ff94971f0729c685270dc41992575bf6a76cd58a5
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.dev1742010621-cp37-cp37m-win_amd64.whl

Download URL stim-1.15.dev1742010621-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
9b0b87a19e3448fe338acc9a7a4158e07297327369f8680314bcc16647f77216
BLAKE2b-256 checksum
How to use checksums
57b305f91a01e881b6e1ee9b7effe8113107d58f29b500b9dad56cc05f71ac52
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.dev1742010621-cp37-cp37m-win32.whl

Download URL stim-1.15.dev1742010621-cp37-cp37m-win32.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
03b6fe62313c0ea20829c5a654fdccdbbc6b5612a559e5298a13eaeef3663321
BLAKE2b-256 checksum
How to use checksums
7c20f1921ba9a8d17349e7958c5ee603aac24fe31feca64db74dbbee4da6eebb
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.dev1742010621-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b780d45b25af5aa6697b197fbf9445c25a448d397c2d14712671034e417f8e76
BLAKE2b-256 checksum
How to use checksums
482ccbc91429acea76baefc17477161d04c0c5a62e95c8e7e73b9ec7b75be5bc
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.dev1742010621-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742010621-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
4199225944dcee9587ac3e69799655805bd614ceab52eac0a592b7f46305b39a
BLAKE2b-256 checksum
How to use checksums
de4afeb23c5e721ba9cf200c5cf5cb3833ceb7a05af2f5c9d2fe70afdc8e4e15
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.dev1742010621-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-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
a04df9a74c32781be324591e66ced83103ef414e173fd4f590fd29c0eaa23f59
BLAKE2b-256 checksum
How to use checksums
4f73184be3e9b7af1be56ecb5efe01226bcea472feab0a82671a88d0948cf76b
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.dev1742010621-cp36-cp36m-win_amd64.whl

Download URL stim-1.15.dev1742010621-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
fe60a3177883cf6bdd4af9970e9cdd4ac0bf6cca75e361bb0404ca9efc41a5fb
BLAKE2b-256 checksum
How to use checksums
4436cc3b3efe8dbce725d8581ce2537516369309db11569820b6ae85a0322f0e
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.dev1742010621-cp36-cp36m-win32.whl

Download URL stim-1.15.dev1742010621-cp36-cp36m-win32.whl
Size 2.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
56940cafe0587b2bb91ee84c195e8eeeacf1f55fcd258f01c5e1d6d72ffc78da
BLAKE2b-256 checksum
How to use checksums
b4dc10f1cef1d5a33d35fdc3c6b77ccbd500ee904b700e306f82bf3829ebb9c1
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.dev1742010621-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL stim-1.15.dev1742010621-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8f9eae8ae32fb0e409daacf6737397cb41efd1c24957c3b6ede5dbda633f237d
BLAKE2b-256 checksum
How to use checksums
636264cfb66006f6df3adf8c16b5569bd745392373e1ae40c249458f33293e1f
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.dev1742010621-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL stim-1.15.dev1742010621-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
dbc45f9be63df8daa69f6536d5dcd92f896b849c9448f99ff1cdc9a59e49bf61
BLAKE2b-256 checksum
How to use checksums
af4846d345a8f67162cdda5204faf19ac486f80e5374248bd424df4058cbcb1f
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.dev1742010621-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL stim-1.15.dev1742010621-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
9efe1958e5512550dbeb3b23ad61c81e3f06f1dbbb03d5941fa667e16fc3fbcc
BLAKE2b-256 checksum
How to use checksums
65cde6d9f1cd364744e12f51cbbeeb2eeaf5a493097d98c1937a66edac47e910
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