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:
- Interactive simulation with
stim.TableauSimulator. - High speed sampling with samplers compiled from
stim.Circuit. - Independent exploration using
stim.Tableauandstim.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.dev1751065005
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| stim-1.16.dev1751065005.tar.gz | 854.0 kB | Details |
Built distributions (wheels)
Total release size: 108.5 MB
Release files / stim-1.16.dev1751065005.tar.gz
| Download URL | stim-1.16.dev1751065005.tar.gz |
|---|---|
| Size | 854.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
ed8fa5b8932fb9d9c447b3fc44f31c96232749224b2edda0c4165b25f31ef36c
|
|
BLAKE2b-256 checksum How to use checksums |
f50e36aea4ce5ebe778e75ad5394c48fe71e91c3280da3129081180a8b7667df
|
| 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.dev1751065005-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
6579ee692aca346dba31f3d5712b9b036f922d17a8ddcf049019773dda97dbf7
|
|
BLAKE2b-256 checksum How to use checksums |
8212d418480d25246c0116a76fd5c7d9f446e6af38b62f6623f7b831c1e597a2
|
| 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.dev1751065005-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1751065005-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 |
62eda38969fe4e4cf33c808f2694ac63e0fb1625b08e45fec83b6aa0cbe9ebf5
|
|
BLAKE2b-256 checksum How to use checksums |
4d8d74aa64a8afa0f27eab3c469682327d37f3a535bf410145b10c40add71e9b
|
| 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.dev1751065005-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
52f335ce0daabd3cc13655b2fa0dc16a2ebc38e5d2de3bc5a0c5fc8553fd1660
|
|
BLAKE2b-256 checksum How to use checksums |
1cfc57db8d485aee681613bf68ac92d1019d65edc8e3bb15127f64d381c77f63
|
| 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.dev1751065005-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
6132a5dfce3b11135379f1287996c5ca4d675c9381b72685dfebd51741b09172
|
|
BLAKE2b-256 checksum How to use checksums |
347e0136390d6ad709d9532e381790556a0ff50f6e7efb74e1d427f7badc1e01
|
| 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.dev1751065005-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
adf409243bac6b8a69de0799d10e4554f92c6e345388025c1b3d75aaeb7f44af
|
|
BLAKE2b-256 checksum How to use checksums |
a3b0f021dfdb5400d3f3f943d9dcec9de5a16280d634492864385d2bf71957a5
|
| 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.dev1751065005-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1751065005-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 |
77c3fedaceea85a53663eef8a6706b02cd5c0b387388164f144d9dab08447eb9
|
|
BLAKE2b-256 checksum How to use checksums |
7137f328157120368e86af2a4e0866ed8cad446e3421f3d5b1ce63948a382618
|
| 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.dev1751065005-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
cd3a5c87a5b7bc569f192b67e4792ee4e0fb252f50e5862c29ca8bc8fcf6e8f5
|
|
BLAKE2b-256 checksum How to use checksums |
51a5717565c8043a61cd461b7caa816f45b367c6f3f45022ba68423c2eaf8652
|
| 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.dev1751065005-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
cec534db9afb6e38a68fd099adbd8c410367574e78299d8166eab87e79e14200
|
|
BLAKE2b-256 checksum How to use checksums |
82ea8d3f4bd63f0ebd082aaa9f7c02198a61a3ed212783e96e98fa0dde47fc94
|
| 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.dev1751065005-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
01919610f17b7548533d493cdecc4309dd719c17471e7c721ec7f2f0b0b8c89c
|
|
BLAKE2b-256 checksum How to use checksums |
1ebfb63100f71de64e86e6f89c932ebb3cb42c94482b3cc859737a72e6013836
|
| 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.dev1751065005-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1751065005-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 |
51d777dac60cd5f731102a1e6daf2b58b1f3df8866564d71247a6fead4cfcefa
|
|
BLAKE2b-256 checksum How to use checksums |
b365301aaebd314c89bc88606958607dbc7429c3424c175068837c8c4c06bd63
|
| 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.dev1751065005-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
06e944ead863ed51ec2db83d14574539d6ddd8202423bb5cdbda6d4e0aa039c4
|
|
BLAKE2b-256 checksum How to use checksums |
3fa8031a7f391d2e9750b769e9f763d7369bff6809a74d1c9f532c51d0038a8a
|
| 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.dev1751065005-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
627e38f3c69fda436e084aa2117cd81fd7700638f60ef1ce5a7e462fd6004373
|
|
BLAKE2b-256 checksum How to use checksums |
35cb36ca34d9be3ede192c4a5c996f6be9cc33d837aaa664402183f31921f454
|
| 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.dev1751065005-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
07d7ad5ca0994fa77168b56104bb0a5dc08325d2ab3f4298cfcbb356ee326612
|
|
BLAKE2b-256 checksum How to use checksums |
e91e197cc0d4761222996ec3da5c31987285654519f6b302669f4219eebd32d0
|
| 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.dev1751065005-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1751065005-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 |
b81eb941fc4aaf885d028a0e4fd183454886ae82a5dcd0d95009d82579bd36c7
|
|
BLAKE2b-256 checksum How to use checksums |
5e61b00a091f42d021ea458a14b134b4e24cfcae6a122f76e3f04904445b150c
|
| 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.dev1751065005-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
27f5f82e0f3a5bf6eff335dbab979042f246b34649f87316374fcb22cbc34729
|
|
BLAKE2b-256 checksum How to use checksums |
ee91d06b28e55fe6cced03b1e808f863eae9bc24c62e7d809eaa05689fd7bf4d
|
| 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.dev1751065005-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b32ebc301d5143cdf0e3f284fc405f0eccb4c6d7a5d76a00234985b894431f02
|
|
BLAKE2b-256 checksum How to use checksums |
33b9b4c8e5c17c1d2be881ad830c6b58c8c0ef354d0370e803a3bad149a7ef31
|
| 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.dev1751065005-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
c0a052ce84ea05524faea92f9a6f1c4f2fc5e7b3d90493e5e6b4eae68eed2cdd
|
|
BLAKE2b-256 checksum How to use checksums |
462b2aedd4adab3edc8309f4ea5f17fe1a7d415201d1358518c3d99d720a5946
|
| 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.dev1751065005-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1751065005-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 |
1e42d3fd6db80f06481a7f3b275b0827572538d1ae1e8e790e78bb499fae0bd1
|
|
BLAKE2b-256 checksum How to use checksums |
c5fdafcc039536329d1bc0b367433586c3c7fc78e43460aa7d9f7aac508ffa69
|
| 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.dev1751065005-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
f6a07140853eb722a561d7c3f140db9006c282cdac9bda45cd112545bbecbdbe
|
|
BLAKE2b-256 checksum How to use checksums |
c67dde8fd3b5f579c56380776867735c710b599a230719c75074550d3f693c2f
|
| 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.dev1751065005-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
298e71bc9a4912f7e3ff0eb049cbc733a08459ac83cc7f5b77579cf570d8fbe2
|
|
BLAKE2b-256 checksum How to use checksums |
32b6c88303f97b0eeb93b2f9b91e254d6e24207d13b5f13c261b56878fd8d5aa
|
| 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.dev1751065005-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
9b1d2f13b870522abb8881cc6da842fbc45e458dd41f1508628534572e1c821c
|
|
BLAKE2b-256 checksum How to use checksums |
46a9cb59b3c66a618033833070e25bdaded4b4283b1e6f4829b2821fc88d3521
|
| 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.dev1751065005-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1751065005-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 |
6fe88a977d4492bb2e328d155724d517a4bb51f1a35942278cb25a9e726df923
|
|
BLAKE2b-256 checksum How to use checksums |
e6e32d482b4aead755dc0bb4692fb8bdac91f15dfb8e1c27b5a3263787dfbefe
|
| 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.dev1751065005-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
314d39b9f1a61448bce28d95364bad86094602a4473aff6be2fee1527f3a6e4c
|
|
BLAKE2b-256 checksum How to use checksums |
abe6f05758f15fd82b28dbc6988ead1a8547dc3bab8acd86360d56253d71c94c
|
| 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.dev1751065005-cp37-cp37m-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-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 |
0b85e82c8ace993d1c313c736ebaf8c1f41f611ecbf85c86507cf30d8ee77eed
|
|
BLAKE2b-256 checksum How to use checksums |
64d3800c23feaa8f86d4117a5e2016d9964b881a97a0a120b0035e380e4dec6d
|
| 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.dev1751065005-cp37-cp37m-win32.whl
| Download URL | stim-1.16.dev1751065005-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 |
e9bb991dd7d8b114f5a2930721e06fdb0805231593b1bb5bfc820ccfb70231e8
|
|
BLAKE2b-256 checksum How to use checksums |
ad71d9f6d8bb6684048d6a86c48ad705b7955c155a4533c1bd31b3940d203726
|
| 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.dev1751065005-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
92ce387833fa08db647ba87635bd4ab8f10311fa878d8f137d46b7186909219b
|
|
BLAKE2b-256 checksum How to use checksums |
1f62c288907bfb4bd89e0f2e789ea4b4518112c2e4b462759aa78bd36df171d2
|
| 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.dev1751065005-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.16.dev1751065005-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 |
a51f5ab29c3dacbed69b316d6cd201373d428c56936f6071d816ee7adca631f3
|
|
BLAKE2b-256 checksum How to use checksums |
963d8e4763fd8a4775fd2af8f76a8d71886726c44a4212c27bc4dae5ad20c008
|
| 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.dev1751065005-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
d18a8a4889d79d64ba2edfa448238834e9f2d5dbe9874c1cfe61925b6a932c99
|
|
BLAKE2b-256 checksum How to use checksums |
add4a1afdab1c1d92c71ebf0c2d20d372b7019d73394eebc2c2669cf5eba6bb9
|
| 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.dev1751065005-cp36-cp36m-win_amd64.whl
| Download URL | stim-1.16.dev1751065005-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 |
910b2fc7646becc47a275d7a0c0e519608e894338f6f7ea8dcd3b5b47428530d
|
|
BLAKE2b-256 checksum How to use checksums |
c64972aac93d914baf7495d4e73a4ae0ca1a56c3ec86b5ef2d237ed972a498c7
|
| 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.dev1751065005-cp36-cp36m-win32.whl
| Download URL | stim-1.16.dev1751065005-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 |
d997df09738eab9c0525a51ed6d1f1e3077a4be0bc8ec6356c8c4b5473bde104
|
|
BLAKE2b-256 checksum How to use checksums |
8800df0eeb215fc476dae40610a5467ebb07b43f7111baea33003f1a9599f161
|
| 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.dev1751065005-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
362618330f24323895835c62ed604da5e0861f525493a46e47ac077c3cd96792
|
|
BLAKE2b-256 checksum How to use checksums |
0eeec53316922d810ccaf716ec58c3913b8377078ad48de7d1a940dc8fb29c43
|
| 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.dev1751065005-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.16.dev1751065005-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 |
2df3011928f28749976ccca0b4f67754614d09a240c53965de6eb42a4f08d595
|
|
BLAKE2b-256 checksum How to use checksums |
7e5f56cc269aeeed3da0017dd3f980db4ad97480e694a744b59ab2fd11dfc500
|
| 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.dev1751065005-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1751065005-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 |
19d7d680edd4da6680d3ce3f6744e0a3b5033713f1dd1baf677726a8bc013911
|
|
BLAKE2b-256 checksum How to use checksums |
6a5e588242dc298c993d6edf2d9f1a70c0810e667d30da2dc753593cce825f7b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|