Skip to main content

A fast implementation of the Möbius color code decoder.

Project description

Chromobius: color code decoder

Chromobius is an implementation of a "mobius decoder", which approximates the color code decoding problem as a minimum weight matching problem. Chromobius uses PyMatching to solve the minimum weight matching problem.

See the paper "New circuits and an open source decoder for the color code" for more details on how Chromobius works.

How to use Chromobius

See the getting started notebook.

Also see the Python API reference.

Programmers who want to edit and build Chromobius can check the developer documentation.

Example Snippets

Decoding a shot with Chromobius

From Python:

import stim
import chromobius
import numpy as np

def count_mistakes(circuit: stim.Circuit, shots: int) -> int:
    # Sample the circuit.
    dets, actual_obs_flips = circuit.compile_detector_sampler().sample(
        shots=shots,
        separate_observables=True,
        bit_packed=True,
    )

    # Decode with Chromobius.
    decoder = chromobius.compile_decoder_for_dem(circuit.detector_error_model())
    predicted_obs_flips = decoder.predict_obs_flips_from_dets_bit_packed(dets)

    # Count mistakes.
    return np.count_nonzero(np.any(predicted_obs_flips != actual_obs_flips, axis=1))

From the command line:

# Sample shots of detectors and observable flips.
stim detect \
    --shots 100000 \
    --in "example_circuit.stim" \
    --out "dets.b8" \
    --out_format "b8" \
    --obs_out "obs_actual.txt" \
    --obs_out_format "01"

# Extract a detector error model used to configure Chromobius.
stim analyze_errors \
    --in "example_circuit.stim" \
    --fold_loops \
    --out "dem.dem"

# Decode the shots.
chromobius predict \
    --dem "dem.dem" \
    --in "dets.b8" \
    --in_format "b8" \
    --out "obs_predicted.txt" \
    --out_format "01"

# Count the number of shots with a prediction mistake.
paste obs_actual.txt obs_predicted.txt \
    | grep -Pv "^([01]*)\\s*\\1$" \
    | wc -l

From Python using sinter:

import sinter
import chromobius
import os

tasks: list[sinter.Task] = ...
stats: list[sinter.TaskStats] = sinter.collect(
    decoders=["chromobius"],
    custom_decoders=chromobius.sinter_decoders(),
    tasks=tasks,
    num_workers=os.cpu_count(),
    max_shots=100_000,
    max_errors=100,
)

From the command line using sinter:

sinter collect \
    --circuits "example_circuit.stim" \
    --decoders chromobius \
    --custom_decoders_module_function "chromobius:sinter_decoders" \
    --max_shots 100_000 \
    --max_errors 100
    --processes auto \
    --save_resume_filepath "stats.csv" \

Disclaimer

This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.

Copyright 2025 Google LLC.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chromobius-1.1.1.tar.gz (57.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

chromobius-1.1.1-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

chromobius-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.1.1-cp314-cp314-macosx_11_0_x86_64.whl (901.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

chromobius-1.1.1-cp314-cp314-macosx_11_0_arm64.whl (879.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chromobius-1.1.1-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

chromobius-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.1.1-cp313-cp313-macosx_11_0_x86_64.whl (900.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

chromobius-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (879.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chromobius-1.1.1-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

chromobius-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.1.1-cp312-cp312-macosx_11_0_x86_64.whl (900.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

chromobius-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (879.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chromobius-1.1.1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

chromobius-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.1.1-cp311-cp311-macosx_11_0_x86_64.whl (901.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

chromobius-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (879.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chromobius-1.1.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

chromobius-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

chromobius-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

chromobius-1.1.1-cp310-cp310-macosx_11_0_x86_64.whl (899.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

chromobius-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (878.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file chromobius-1.1.1.tar.gz.

File metadata

  • Download URL: chromobius-1.1.1.tar.gz
  • Upload date:
  • Size: 57.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for chromobius-1.1.1.tar.gz
Algorithm Hash digest
SHA256 c782935d6016289eaebd66d633528427d9b60c8db2f2a11e576b526b95b66847
MD5 3fc7dbdace330c6a201180c2fb7e724a
BLAKE2b-256 e3fd6a93b2b7f052c66e75e54aeebcf6d2848c9da2a04a6bdf33fa16cbbe5191

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: chromobius-1.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for chromobius-1.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5c190a3fa215803d144cea5a8086f49a9d645f058676103c9e64a47e01400841
MD5 42962c633333ee0878ca749373bb13ab
BLAKE2b-256 ecb85187a72551f1dcb0663f0041ee39253e4d9954b4594aa04aa90ecc9e7aa7

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14b222bf5c9bbf32c3d915ac6fe8ad6a3bddcc1c1f410c9173b3919f4ee28143
MD5 02c08deca5dbb7744779a40aa93cc3c6
BLAKE2b-256 1152be26f616bda43958028b7c73fb19878be371cb8b01858195b3666eeeeee3

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48c4f5b392d65bc7ba9431e14dacf5cda5f9a3edcce968e5025577816fe34ae9
MD5 03fbcf7683224ed2f33ecbf07528d3c3
BLAKE2b-256 f906eaa55c17314ef7a66409b65d0aa4b086900aeaa0a5164a0ec04e04830e79

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 1041fd6bb13dc810ac1c48952207d527400cc09a1f9b6e815d8d316a84fab2a3
MD5 64e99a006efc566c69717c1ff5ee7613
BLAKE2b-256 a99571a2ea1de821450fae555029dae6b1e2d4fb17f47724b0e9a7948dd1329a

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0714178037161a62fb5f2fba85a31fcfcdc743654470c653715d6557d571ce0f
MD5 6932106881fa7c4ed74ed19e370c6011
BLAKE2b-256 2c63b705b8705ce73dbda3f6ee78c376580a02081b56db0f9543d374ab5cb470

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: chromobius-1.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for chromobius-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d9e3bc3aea81d01c41372655d4c0c377601f918275cf41575d2d9e8915da2b4
MD5 f94baf1071f0bc406538034fa9a66628
BLAKE2b-256 10a72002ab1c52e1bd6bdcd4e1518ec7aaf87de811439eb7bf251a744a942246

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8dbf6ac479f7fbca52c53ae22c877407a15a77e8ef23335877063cfb0370f5f
MD5 3fc7ac962db8c3386d7bcf2ac48f5fbf
BLAKE2b-256 7476101b2ea285602d1dd5c9475be133be690e11d04c352c8362876819b8885b

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f278865161236bc879e8e040bad676070420443be7bbc6ca5f77777d22dd9d1b
MD5 63f8f11b9eb745128fd9176bde29245a
BLAKE2b-256 29398a40a893c04e2af9a12a2e0354db8065a73cf09f88d57b79cfbcc4ded2b2

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9ba98a0314334ed2bc6eec27a13eb7a086b55791876f3bda649b12d5c262f9ce
MD5 9714f6490140ab641a6d9798723e7368
BLAKE2b-256 c5bc5e674ceee46448fb95a7a8c9e9e35f5ecb8b71103ce18cca60900f37fec7

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 989b61f1a6d89af7f798797d8a6df4d5a53508cbb6cd5dbcf66c821cbced9ca3
MD5 2c463403687e95dd79dc5c4dc5277b62
BLAKE2b-256 b1948fa24f07c1e784868c9a04ac8291415106e1eabe9c0aaf879c8b6a63c233

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chromobius-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for chromobius-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d1b4df7ba12494bc64b6511714de18b1f1972f900e00504083a11a7bc3562e2d
MD5 032b13dcdfd2d7ba7bb11aba95536e63
BLAKE2b-256 3dd9ef88321d62a47b7bbbff758f90758ee1321befa43476b1ccc4f031d35eaf

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ac415f25764d9cfcf56669695c522bb3d7ff1ef438998003e51d6d717f7a649
MD5 16e7b9bd373e3a8e93c9ef452b0b33d4
BLAKE2b-256 dcb5f8891028b1617ad457273c83ba6962e2ccf17693d1933ec2c34aac0dd020

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02bfe3f3b5322e0f9d4b3ef235858e838585536d99602c94098335eeb94a4609
MD5 a8d46934f1c1b477feb5854766f28954
BLAKE2b-256 4fcf054ae60e1ec56da80a54e70d0f494f4398e0893467c5f3cc2aaf2f10879c

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 13a55022ce527047c553b82354f94396d57d87d3489fe1f0136f300379806574
MD5 d6de8dc49a05a6913fb5b7f719a7a273
BLAKE2b-256 ffe52bdf271966fa636de6d91d4015b8287027f318790a419cc240b911613442

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b52c04bf772336a7207674a1a2955dabbb258dd884b301e658c43fa8ab9f10e7
MD5 7f5aea78630ceaeac301260c6735a381
BLAKE2b-256 f6f292c06d1a63f0318e8bcc7a96b5adff21c572bf128d1a2104f9cb3f749e38

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chromobius-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for chromobius-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91cad317cbf26c61f9cf9374642b7ec18d8ba67b82e422b4c9a1c209829cab21
MD5 5009915e959e66c84fab85a9de9320ed
BLAKE2b-256 1dead79c43b92aa4fe9eabd1bba53cecdbf65a3638a9eabacbeea980293ada8d

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d703880290fb0297b9f7dc595a5898322a59bf807fdad82aba238e0041ac4209
MD5 01b487b57aa42e3d2d5e6a55fe0fefe6
BLAKE2b-256 992b2f787839ba3dec9be5bf5110c6a76a59cf42ca09324791037a55113d9d66

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99e29692aec56e9717bf98725964f4c22f4869c53824a61da667383190e919ab
MD5 c26f23a369eee5fd05c9c5ca19a334ac
BLAKE2b-256 b9a8bd97b5a19a1868e8e96eda9a833302b7c775e23ae3207f6ba2ed6dacaede

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cda4456da01e98d178e1c04329d0792eef7f0d84d0643f4d8d11cc7676ef1c11
MD5 388d84f5fb42feaa074adcaf845b1244
BLAKE2b-256 fbdfebfcc97820ac74e06b19b34b6862a72c0831ce89063fd063859359d19926

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b631bd941c7891760ccb2f54d161358fac1443271d6cfde58b759ae608815246
MD5 279c27b2c5e2af122a256d7b0b43b3a5
BLAKE2b-256 41dcf0a38ede3c3667f984834deedf7887229362ca117994980ae444f0917acd

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chromobius-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for chromobius-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbf8399e53105246b14f829685e983f56fd7b0f4980317b07beafef9d6be5215
MD5 d2d437644a5e7de6352385d62d485885
BLAKE2b-256 9e19f9d4077eee0649e8083371a3b92f3914ab5641f606869b800900e444c0e6

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b871ec8a5620ad28bda0a8578ea26d1b912218a2a0df2e87df39156f69cb3ce
MD5 7362866749242b9902b2c7bdfe94276e
BLAKE2b-256 38018b5d3cb631a679db76c6e8fe345451817a0657435f03ad2041f28bb28000

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 772ad1cae322493391d950dd8dcf07e00e6b58bad096386810611ab4042437df
MD5 543f32ce907fa4143adc18e27bd39c23
BLAKE2b-256 42695319455f869b6d52a042818658573a60ee9b4087b471133d6bca4daabcfd

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 38a40dc974101cd26fcaeff1d59b381536e264e9327b62f229d0d4aecda0c240
MD5 7d7f83cb917ae6d99f5ed9ff089e2f16
BLAKE2b-256 60e62d240a93152f701feb5d0fb1fd81670176e1e7b89b851d3787f182708b1d

See more details on using hashes here.

File details

Details for the file chromobius-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chromobius-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0acd412a551abdfbd4e864919464cec1a35b0779a028aa92b69c967212d3f4d
MD5 1140d12cc4530519bc39f08ea89febf9
BLAKE2b-256 b25b1a0a19efe76ab00cf26ccb71006d47ed7ccc436bf2db92c30f2763b88a38

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page