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.dev1754438568
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.dev1754438568.tar.gz | 855.2 kB | Details |
Built distributions (wheels)
Total release size: 108.6 MB
Release files / stim-1.16.dev1754438568.tar.gz
| Download URL | stim-1.16.dev1754438568.tar.gz |
|---|---|
| Size | 855.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
840366a5228d77a59356bfad3ec306ddc6e13e7313d8a8054c59e65007d00a42
|
|
BLAKE2b-256 checksum How to use checksums |
c69ee6f4818c03c2e7e9215bb5234ca0ef4222b5a542e9cbd261c0f909d25ef1
|
| 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.dev1754438568-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
b12eca8e0f4bab5eb3693456a66f81c57d3efec383fb8d2c64d10067f604ec40
|
|
BLAKE2b-256 checksum How to use checksums |
6727a39aca15fc3dbf700c0bbc08eca245917ae0c286f65a16f98586c8f427de
|
| 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.dev1754438568-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1754438568-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 |
763257fdebfabd8545540372b70813c51214be90aea673e8df20b19240159665
|
|
BLAKE2b-256 checksum How to use checksums |
09f324afd231b80e14399843e8ab1021b477c54871f1ffc16133f5993c0ccbe3
|
| 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.dev1754438568-cp313-cp313-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
003f59e052d6c9f49bb75dcce1cea3fd09211af08521bfde8639e40567c6840f
|
|
BLAKE2b-256 checksum How to use checksums |
dd1e2e90eef9dfad2f1e1e42a72e20aa151e3137df8a12ad6c0f9d2d4cb133d4
|
| 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.dev1754438568-cp312-cp312-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
184cce327651b49498aa113be23f3c5293551b0048be3feae13a9d2b4faebba5
|
|
BLAKE2b-256 checksum How to use checksums |
0f910b677c820ff74fd41c758b0dbfb856dabd616e15cc2fea4fe8a423f8fa55
|
| 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.dev1754438568-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
85e106bf64d9e82230263ae27d11bdd6225a2c1409213b601b544fea34ebb863
|
|
BLAKE2b-256 checksum How to use checksums |
62f66108965975ce34098b0572e444570f56d07ab4e7d31b0760fa59da2f72d1
|
| 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.dev1754438568-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1754438568-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 |
d5f6db1845e60189c22a5bf5e68d8c4dd1ea23495a5c431facba07d99ae41148
|
|
BLAKE2b-256 checksum How to use checksums |
d6b90da517e1591976f0299ebfaca411c9fc414faf71eae9fa7d7d3c3df4bc30
|
| 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.dev1754438568-cp312-cp312-macosx_10_13_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
363371609d474f407ea2b4f02f5f4b9ccdcd72b7a38766a29cef03fcdb12c5a4
|
|
BLAKE2b-256 checksum How to use checksums |
133e37ce30bc0aaa1da26132ce8d56189ddfa6ae4f1928b962f7c7be6f6c3ade
|
| 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.dev1754438568-cp311-cp311-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
61cc4373451bbf8c9a3bf57799e0ff72cf951cc6c0e7740dd2d688ce8b2a680f
|
|
BLAKE2b-256 checksum How to use checksums |
1f5040941d8cff27aec10c27a0e44f9a30ccd43b6af6bf770c9d9822eefd1b42
|
| 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.dev1754438568-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
2f5f647c1cef1298db33f2c6b2e81bc173f46b58091452bb3c7810aecc3c896e
|
|
BLAKE2b-256 checksum How to use checksums |
b89fe628654a8388904c3baeee07d37d3c4ba5782e634cf9a8a68b66865f96af
|
| 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.dev1754438568-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1754438568-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 |
235de059a79bafc2d297d7da73c38331ed1ed5bb012f5e9d739e6c397e22b3e5
|
|
BLAKE2b-256 checksum How to use checksums |
1261e3ea3c525c699b82a528481581425de67b31a907e6ddcfaf339243d7304c
|
| 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.dev1754438568-cp311-cp311-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
71c61af40b5c70c1c116eb83105049c293f7b0a02f55cd0c0594e13f4dd175b9
|
|
BLAKE2b-256 checksum How to use checksums |
c40306629b43c0bdae908efb6ac8686eac63ca117545f963ebdf96fa3f545f0f
|
| 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.dev1754438568-cp310-cp310-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1c90bf23771dd767fb2b671c45237e013b57de69c3c9bf5aa9681719e5415443
|
|
BLAKE2b-256 checksum How to use checksums |
9faccbe8f65ab4899844a18d4a8a8a41e1bc067bb6df6e964dd0747c9134f671
|
| 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.dev1754438568-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
281355a85ec908aabceab019b1fdfeb474d0d147aba8f6a9cdfb3d5d91b8b482
|
|
BLAKE2b-256 checksum How to use checksums |
75a0e6a7801f5acd589bb4172ab6a73aaf2ad8e5bfb9f824ccbb27bf660fac12
|
| 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.dev1754438568-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1754438568-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 |
de6265b525247719a448f470ba70de790635e4c687f8a78d96be277c4f980768
|
|
BLAKE2b-256 checksum How to use checksums |
5d510875c3b0382045b9e6ad594e191793f9dcf2dd18372aef770f11faf9c0f1
|
| 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.dev1754438568-cp310-cp310-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
2275f74b773bfb7f5f090d54e2bb16999162d6b3a042bc83eabe6f346545cc8f
|
|
BLAKE2b-256 checksum How to use checksums |
5aff48ad60315c5bdd674671e2b272b8b2ab9019d430bbe071d73a346fe61b6b
|
| 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.dev1754438568-cp39-cp39-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-cp39-cp39-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.9 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
76931e0ebe9217a84ef64799c37cd4234f8038f17b8ef13f510ed0b145665110
|
|
BLAKE2b-256 checksum How to use checksums |
d60fbf6ad5444edf28684c303146915a897a1fae66ff1ed918ad4193b2ca8f80
|
| 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.dev1754438568-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
2d68353b1959bd018407a96784c424c598f35aa83d57d48bce307225b6e94ab4
|
|
BLAKE2b-256 checksum How to use checksums |
0ca4e21f790a55f5ad21fe6a93caf7f1536ced8e74cb13253ba25ce316b0494a
|
| 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.dev1754438568-cp39-cp39-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1754438568-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 |
b1ca03cb82e99044d1788698cfb1856d7d009b87172eae1b9196ad1c9ef35c84
|
|
BLAKE2b-256 checksum How to use checksums |
92b4d9e9e44726713aa8c27ce4ed9b0aeeace6d222ec5856b173b5013c68de91
|
| 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.dev1754438568-cp39-cp39-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
be82845e440d98c0ccaea19f15daed77e1cec47286f82517ee154ae3da8543b4
|
|
BLAKE2b-256 checksum How to use checksums |
a16811a1e6604d9ae0f1cd2882df52d013321aead3f22c34029fa97d3575f471
|
| 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.dev1754438568-cp38-cp38-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-cp38-cp38-win_amd64.whl |
|---|---|
| Size | 2.7 MB |
| Tags | CPython 3.8 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
a2aa33c8dfdabba84efa9ecc11e4c596ce2a0ee0d8cd5de5e1994c87e3aa9297
|
|
BLAKE2b-256 checksum How to use checksums |
1806b90fad3eef519e3bfbde896635910ea2eff8258c30aeed9c1ea331a585f0
|
| 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.dev1754438568-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
bd808c150c8f92cf51985e24a2b281ea34d706fef16d4ff77e95342caf7d8ce0
|
|
BLAKE2b-256 checksum How to use checksums |
3c16e122f1b4b079900791d0c473baba5e57a2592a630a397ee8f12c5fc1671d
|
| 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.dev1754438568-cp38-cp38-macosx_11_0_arm64.whl
| Download URL | stim-1.16.dev1754438568-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 |
8201b0f4499eecf59bcee405242bca9f6ecaea18cc675e297a9726e102d12121
|
|
BLAKE2b-256 checksum How to use checksums |
f2dde80f7d04d8c01dddabee3298b3b5f73583d26c92cfee68ac72f3899b6f6c
|
| 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.dev1754438568-cp38-cp38-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
450a04b091398e87d496a0d37a3852d82d73a4a285116e664e3e065fb6842c5d
|
|
BLAKE2b-256 checksum How to use checksums |
c18e46c73a7dc01e6e2666c748da56992a72cc8c1e948af9e9bad6f705a95d00
|
| 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.dev1754438568-cp37-cp37m-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-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 |
8ea535ed0fcda7a55b1d1534063f2175019fa23f75429435edbbc7cb60d88be5
|
|
BLAKE2b-256 checksum How to use checksums |
64a629e9acf7c4fa3b9f632df708ba39b53571bee895d2c15b0b773f58dad848
|
| 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.dev1754438568-cp37-cp37m-win32.whl
| Download URL | stim-1.16.dev1754438568-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 |
a518fe1b642ab47ad0abd0acde381685ec52a67668d3c015517e6e134947f3ef
|
|
BLAKE2b-256 checksum How to use checksums |
d676d02df686579468a11fd688b05281717a77a0ab0dcd606748f3d2b0f8fe50
|
| 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.dev1754438568-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
891f0ff13c4540480a3bdc2f51ef58ad5c128b21cac5c88782dfb2f7407e4ff8
|
|
BLAKE2b-256 checksum How to use checksums |
1e7748ab9d906d2587bf7b26bbe4bdbe932e473dfa1c0b718b8440601ac74f70
|
| 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.dev1754438568-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.16.dev1754438568-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 |
9127b651e13ab7ccc73840520540c9247fa23afea2bc203f13a8e239daf4375d
|
|
BLAKE2b-256 checksum How to use checksums |
b28b5f5228c0a74b046188dd4392936e7f777e75da25ee604654960dc9ed9133
|
| 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.dev1754438568-cp37-cp37m-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
eae92a051e4d29997ea0078beec5159c872e638a7cacd0109eceac066d735d0c
|
|
BLAKE2b-256 checksum How to use checksums |
587b0ef5926321da64186d4f58b5663087e605f6eaec6276fd407747b44247a5
|
| 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.dev1754438568-cp36-cp36m-win_amd64.whl
| Download URL | stim-1.16.dev1754438568-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 |
f956a22927dfd8003a91e0ef9efcf4f2f3a3f48224874e37ba31a43cca7091ff
|
|
BLAKE2b-256 checksum How to use checksums |
4eca38de12c2f5e6d5b5fe87490f02dae81f18c6347472838b82c9d05aa5a422
|
| 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.dev1754438568-cp36-cp36m-win32.whl
| Download URL | stim-1.16.dev1754438568-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 |
7eda75f3f4ac1418af0bce94abd068fb88819c0c54678ec33ab2c1c280190d28
|
|
BLAKE2b-256 checksum How to use checksums |
3019122265d42d1dca1c54e6a656b57ba62fc2d9d32eab94f58dfac5268a3dc0
|
| 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.dev1754438568-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
6019ad8c6767bb073b2987bc6ef461c53b10489546bdf3be609512d5f4bb6554
|
|
BLAKE2b-256 checksum How to use checksums |
28bfc195e170498c9ed11ddc7cc3be68ad1cd7ddfa4472b451785756ed2f5df1
|
| 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.dev1754438568-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
| Download URL | stim-1.16.dev1754438568-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 |
64bbda57d88a047f3cef0b4da3a804d71cd5449a3b2c5ee03aabe68da82625f8
|
|
BLAKE2b-256 checksum How to use checksums |
7bc2d18007daa75cb742a25621ab33adc462c0cfab55beb06c4eb6ac868c3078
|
| 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.dev1754438568-cp36-cp36m-macosx_10_9_x86_64.whl
| Download URL | stim-1.16.dev1754438568-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 |
d4191c9395dcca9c1928ac350b0d084702c84a5badf83297e89262048aafcd4c
|
|
BLAKE2b-256 checksum How to use checksums |
f65a061aed3913f65ad55629e37c8323038cea102262590d553ecd9043a3a127
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.9
|