Skip to main content

Fast drop-in replacement for copy.deepcopy()

Project description

copium

PyPI Version Badge PyPI License Badge PyPI Python Versions Badge Actions status Badge Codspeed Badge

Fast drop-in replacement for copy.deepcopy().

[!WARNING]
This is alpha version, see project status.

Benchmark results bar chart

Installation

pip install copium

Usage

Simply export COPIUM_PATCH_DEEPCOPY=1 before running your application. You don't have to change a single line of code:

cat example.py

from copy import deepcopy

assert deepcopy(x := []) is not x

COPIUM_PATCH_DEEPCOPY=1 python example.py


To enable patch manually:

import copium.patch

copium.patch.enable()

To use manually:

from copium import deepcopy

assert deepcopy(x := []) is not x

copium module includes all public declarations of stdlib copy module, so it's generally safe to:

- from copy import deepcopy
+ from copium import deepcopy

Project status

  • passes all tests in CPython/Lib/test/test_copy.py
  • behaves exactly the same as stdlib copy in all cases declared in datamodelzoo
  • consumes less or equal amount of memory as stdlib copy
  • always faster than stdlib copy
  • passes all tests on free-threaded Python builds
  • has tests for refcounts/recursion/threading edge cases

If you're interested in using this, simply add it to your project and run tests with COPIUM_PATCH_DEEPCOPY=1.

If it fails — open an issue with detailed bugreport.

If it works as expected, consider whether the speedup in your case worth of using alpha version.

Speedups on Python 3.14

tuple

  • () ~5.66x
  • tuple[int, ...] ~12.46x (20 items)
  • tuple[int, ...] ~28.28x (5000 items)
  • tuple[tuple[str, tuple[tuple[str, tuple[tuple[str, tuple[tuple[str, tuple[int, ...]]]]]]]]]] ~14.54x

list

  • [] ~4.97x
  • list[int] ~9.58x (20 items)
  • list[int] ~16.23x (5000 items)
  • list[str | list[str | list[str | list[str | list[int]]]]] ~9.19x

dict

  • {} ~4.59x
  • dict[str, int] ~5.95x (20 items)
  • dict[str, int] ~3.94x (5000 items)
  • dict[str, dict[str, ...]] ~6.19x

set

  • set() ~15.87x
  • set[int] ~6.55x (20 items)
  • set[int] ~3.69x (5000 items)
  • set[frozenset[frozenset[int]]] ~13.72x

other

  • int/str/bytes ~4.86x
  • dataclasses ~2.74x

Expect much higher speedups on Python 3.13 and lower.

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

copium-0.1.0a0.tar.gz (109.5 kB view details)

Uploaded Source

Built Distributions

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

copium-0.1.0a0-cp314-cp314-win_arm64.whl (70.9 kB view details)

Uploaded CPython 3.14Windows ARM64

copium-0.1.0a0-cp314-cp314-win_amd64.whl (80.3 kB view details)

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a0-cp314-cp314-musllinux_1_2_x86_64.whl (555.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a0-cp314-cp314-musllinux_1_2_aarch64.whl (534.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (573.0 kB view details)

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

copium-0.1.0a0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (562.7 kB view details)

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

copium-0.1.0a0-cp314-cp314-macosx_11_0_arm64.whl (88.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a0-cp314-cp314-macosx_10_15_x86_64.whl (90.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a0-cp313-cp313-win_arm64.whl (67.2 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a0-cp313-cp313-win_amd64.whl (75.9 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a0-cp313-cp313-musllinux_1_2_x86_64.whl (560.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.0a0-cp313-cp313-musllinux_1_2_aarch64.whl (530.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (571.0 kB view details)

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

copium-0.1.0a0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (550.6 kB view details)

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

copium-0.1.0a0-cp313-cp313-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a0-cp313-cp313-macosx_10_13_x86_64.whl (88.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a0-cp312-cp312-win_arm64.whl (66.7 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a0-cp312-cp312-win_amd64.whl (75.2 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a0-cp312-cp312-musllinux_1_2_x86_64.whl (558.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a0-cp312-cp312-musllinux_1_2_aarch64.whl (529.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (570.8 kB view details)

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

copium-0.1.0a0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (549.7 kB view details)

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

copium-0.1.0a0-cp312-cp312-macosx_11_0_arm64.whl (85.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a0-cp312-cp312-macosx_10_13_x86_64.whl (88.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.0a0-cp311-cp311-win_arm64.whl (65.3 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a0-cp311-cp311-win_amd64.whl (74.3 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a0-cp311-cp311-musllinux_1_2_x86_64.whl (524.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a0-cp311-cp311-musllinux_1_2_aarch64.whl (515.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (543.2 kB view details)

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

copium-0.1.0a0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (545.2 kB view details)

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

copium-0.1.0a0-cp311-cp311-macosx_11_0_arm64.whl (86.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a0-cp311-cp311-macosx_10_9_x86_64.whl (88.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a0-cp310-cp310-win_arm64.whl (65.6 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a0-cp310-cp310-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a0-cp310-cp310-musllinux_1_2_x86_64.whl (540.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a0-cp310-cp310-musllinux_1_2_aarch64.whl (525.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (551.5 kB view details)

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

copium-0.1.0a0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (553.3 kB view details)

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

copium-0.1.0a0-cp310-cp310-macosx_11_0_arm64.whl (87.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a0-cp310-cp310-macosx_10_9_x86_64.whl (89.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file copium-0.1.0a0.tar.gz.

File metadata

  • Download URL: copium-0.1.0a0.tar.gz
  • Upload date:
  • Size: 109.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0.tar.gz
Algorithm Hash digest
SHA256 f4b2ec29944d10c1215832adc1f44444b2ace1d2d0903a051f40502b6182456b
MD5 fce543069c73fef7e55bc8a16d995b81
BLAKE2b-256 d934f718649acc0f8db54cf287a2bcc35301c66ab41e742227b30726f1b321aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0.tar.gz:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 70.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 71d797c9d99d83c26010028e6dcdfba8d9be3b7d646f5b15798623424395211a
MD5 1ce6c63df35b3fc9997e119d652d4ab7
BLAKE2b-256 d2ac703996a1a032bedcbb43dfc89bf3eac1216b4fcc148de90efd4a64ace462

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-win_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7d8e46311d064c5d127642e428f205e97062e017195aab5e70d0e1165b32417a
MD5 aa7222a1a29e1df33dd728debd4fe68f
BLAKE2b-256 890abd826e9756da35edfbcd148b07f44f60f48da3e95ae27799785ae72a7734

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-win_amd64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d213169bb6acedfdbe2f3ee7ec64427d2dc9486ee7af870ebaf01ca3576a800c
MD5 d2de8a410f296667776c512fe762ce47
BLAKE2b-256 8fe13498a9de78f384da77aaf4fe07c5fb7587cc663d7fd85c3b2ff8a93a890c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 414521df1dc8474e4d1f4289e2bbd614c471ae6ae581847e50a7670dd6e3a690
MD5 ae84bd6488df95daf3f5037cb3221311
BLAKE2b-256 98d7b224efc8e95dbb9d64c7c3ed4dbc65330f112d1f3cc09c560c2d37ff2ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03cd8f60377e3dd34309a1144c5241a7c758c29e7aa163a25a371faddceb297d
MD5 bae7cad135a7427e90ab891a72f85eb8
BLAKE2b-256 a75bf78e8d8db64b701d82ca3192a818da3cccf1aa3e0cb2464ded536a69c29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c095ca099e9c60968cce3fb672cbe75ca43ec27acac22d89b4c0b68c0ec14d91
MD5 0db3a7c6c50862a3de925fd1543fdc91
BLAKE2b-256 c7ddf832ac7f627d962f05d6597c4d23d9c30c35dde1eb8a571303f717867951

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09742f3da086fa5e4ccbf13e96806a1243c98014b2c2be49df3d7970a41f1bdf
MD5 c82f666c5b8ce0b292d306de75de8ab7
BLAKE2b-256 0fb8123fd536655eb1ffea6a4f442dcad651a1bf135cc87c2a55bef841b01be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f9eb9851c2dcca8e14de7e3a4fdd66e12d9a3921a84144e6060cf741ac7cec79
MD5 4184905ac27477e81575d1d466b8d054
BLAKE2b-256 9ef822b805ac1da2dff557c9735113dc76de643ab6ed363b175558f1f7bc4bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 67.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 754e84768e6b2a7235bb5c90e2e7b7da9a21ac8f17e0f1645fd2a58cc8c50165
MD5 c5d36426e10002d4ed4355974b6c916e
BLAKE2b-256 720c8f92c7eecb57c1a0863df36a13ffead4f13975ee2f87dee8eb9167e52be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-win_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 75.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28dbbf45aef63809da10e5bfa581a1855e9b4c6728dda101cc1b7112c733628d
MD5 e6398238077bd012cd4e60d43463c7c9
BLAKE2b-256 fe0774191a8bc592c4f728f373efea3e63122b89836ceb127b8d70272378c1d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-win_amd64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8960dc74b33088f5e82fff815077eb177c14b358e76eb57a3a6b8c786e5fa26a
MD5 e3754f3a3c5b41c25a8448ffa3f96286
BLAKE2b-256 49dc5a5bb283934b633b41fe9ca34632ab784e80fafa2fa88cc249b44808476e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e678df39570500bf9e7f2f7bc684f13c49afb81cc4a821db170345203412c15
MD5 95178b1535e40ff5775d796be5a5f745
BLAKE2b-256 437beebd94928fb2108896ef5a8f5458434cb5d0d8fcbb2d15c6b3f5f11d4a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19c6fc8db32d4b577a41db881169c3c3b9f22469f9d37e12edb52a308a830ab7
MD5 4be821f693a36d8f1824ca26689260fe
BLAKE2b-256 682f63f15810e9cf12d87b1668a9fd1d7c01de3d9ab0ca1cbf0ce1e4b623512d

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f41b757d3841a95717a17b01f550dda6fe8789f385f711610968c6835a563cb8
MD5 1113ce7a028172a181f97974ba9d7741
BLAKE2b-256 093253f2d0f0b2825bc33b5680153bb665706b029e163e54d4d429ae31a8c1fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27720b3eab8e47abbbb847175ce9b416c22ff94eea4fc0770baebf7cde7d8200
MD5 df0a991e2eddb00fd553eb3d58a5f6db
BLAKE2b-256 f68fe21a6cfa98955fc89484ebba7c90daa3391ba7631acde29b6dfdedc5f5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b61d4a9215aa9e0fe3ef3d71d5b65c5ff694187dce0121641b040e12157bcf07
MD5 3240b5a77cce861cfe658724a6c0090d
BLAKE2b-256 1759b7308d0b36a61379e04d0dd81261ce46958c023d845b1e31b5ad9ff8d7d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 66.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 83ce5d257a8d9aefc932fde72745c3d20c790a4f84f55aef3ca65ec24b04b62e
MD5 d4696b5f341000e49bbeb08faae5a0dd
BLAKE2b-256 ddb9840f83f1b862a033ef3eda3c72647864144ecfbffc9dbd2fa3a9205d588f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-win_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 75.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 342b3afd90a9c6a3a434dcf1a1c1c7f6337583cbb33d925d0689a05815e3196a
MD5 33008eabe682ad6b94ff7076a856feda
BLAKE2b-256 06fac0b075300b4b3350d30a63ca1e1edd9e0624b00ffffbea6d845df977152c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-win_amd64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dccbef47f4cf72d48a79b2d5bee750774634aa0d1ac1731b19c8bf9b22b3fe2
MD5 c0c70e0a0268f50f80ed8061ca089f84
BLAKE2b-256 0e744ac8fe36d99684967862e6449236b4e5615fe8fcffe8fdc2e0a9c2c6ab26

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd3b79344398edefbea30cdb57560045048a66dcc1da78ff909355e7fab2b30c
MD5 b4d9db13c6d736ce30bbbde6ac7be025
BLAKE2b-256 7c3df03a1f6e1e5845817dc3d10aca0d0dcbce4cd85ebde3a27def831f49c013

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93854b478922e48264afdabe0855077b5989e089b5a86231dbccb2ef5a5d4e72
MD5 e43e3dee129baa74fcb517c5592e975c
BLAKE2b-256 37bb4a31600f33ad0b7aa10238e718b81dae23526af1492510aa2ea4dca3e765

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ee0144d6e9edfacb196c70f37dd4dd90ffaa097914761778ee23fab5dfca855
MD5 b72c83f9d5c9c485a3f64837f9d7fa06
BLAKE2b-256 f397b0d66f03668de2db1f8b842c72cb4e188e023ffa6ef28914b286e9fae65c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77733433a03287090bbeffbba61716967b57c440882e039b026d7904abc56e62
MD5 2f2ed247e08e3e74d32eab763792ee04
BLAKE2b-256 91472c10c351ed72ed455c7796422bc790932b57e60b78db44bfab24ad46aa23

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 86ededf4b8ad0e8558c574f893d478b424f4f7283467f47a8317199bced818c3
MD5 203cd8f138933e7b90e7b52ae887cb5b
BLAKE2b-256 d7ffc96b3751776efddee6f8067c5da87df0249e17cc2748e83cf6b35b78e174

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dbe082ac8df8ff1421f5ce35b03bda0fe0461b8c92c22b9df6c1118d2fe01fd7
MD5 8024abe196ff52572d05e181b2a88455
BLAKE2b-256 7b9e43643be27ed9fb1057715b554a15ab80bc8dea90c8afc4f681ef281073fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-win_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 74.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 04a8db05b7ccd067b34c4c59517e1cf80ed1488c8c854cfb16a1484168ea843d
MD5 f2becd29b843dda011301d1174045722
BLAKE2b-256 feca2cadbb7b0bd583034d7530a61d841df780bf2ad6330a654554d3b74f3143

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-win_amd64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be03f7125d87e050b5573cb4e5cc5462b9352e6e99dab5fefaac19506796568c
MD5 ef0aa6cd048677f490a5ca675cd5e844
BLAKE2b-256 f16f29ae38564ad85770e36f274a45fa7d5cee07bba59718a77c0db5d67af3d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0afcce36ca9cc7b63b820fe7df5c2bc89c84c520e6d9ae70ceed8e2eeb252255
MD5 327f2121580b0331e21b18116cd30bed
BLAKE2b-256 188ba88ef3b826acbdd8bfe9a3b3aec2e5934cb18d91215029cc31c631b2404e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ad546e05596ae4fa89cf1363bad3ff0772999023c592bf0fa151884b04937b1
MD5 447fff494252d68695f249de3d1c3761
BLAKE2b-256 08dee839d98aeba798afeddffd608ffd897a718dbaac734933853d1e3162e4c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85c630b44921a1d81ec0db3ccac70e7d654caa6e9df4b8982c2d38408310ad38
MD5 cc8b5bd6dd4914d8576ccba0a7fd1164
BLAKE2b-256 20b5647418d68e1837bcef13413a327d54c2c130b14e855437fd3941f7471ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aba25e28fd48f18d598ecc6cbee99a323b7034732a953bd7d42c7a8a51ae643f
MD5 a20b005d8b9c4b7e049b8cce5597bebd
BLAKE2b-256 c572c5913a318a6d95b0e59970ab09471355ab09e1647c14c5282b04a9ba828c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c462c48557afd5a91fd46d00c2f01f7198e5e15ee56d5eb85b12be89cf34c2d3
MD5 15a89bd6afea911d86073a0637595e0b
BLAKE2b-256 7b947fcf9d1d543879d20cfa3c6da7fa2d9249813bdb89de8b3be1df70e09ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 65.6 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 120114b3861d745812b3ba80e6e6288f83beb5ab49c43c005685467223580bbb
MD5 031cc380ab34b74eaa3d2fa2a670d99e
BLAKE2b-256 e80d178e6d61a9ea58eafab58219e5354bb70b9c576d05f7194c423a3772fc94

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-win_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.0a0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 74.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8018d8962ee0af9e25d683adf3e20a6facefd87a7a4154664fdd9c67cbf6e2e
MD5 151f208e71c75b80e3f2a9364af9706d
BLAKE2b-256 d412b92f1943b0246375598105b21418449d7120c634c1e2f25eec5445a6b3d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-win_amd64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccece90c68feff45a0d822c1fb5aa9bf4d5029a94acb73c52f2e5986faa3b181
MD5 b099b77555bf16605d5e731a148ae25e
BLAKE2b-256 b1a954ef74d180e78b9c28d835316852eeeec344f2b9982f0e8784a6d0c53a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc1ba8f6cd7f8f7a8986526b6ae0784c482124dedd9e83ecf1464d25eea8e67d
MD5 06619521dcec1e7eddacabf0845c0605
BLAKE2b-256 bae11129203d6c5e29e2808228767989c260c11b4d7b5a198866ab36a6ebf0ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3224ba4f98b62edf6929e97a9f420cb60bc3043dc8a7788f9cb9e70e8946d9af
MD5 f252d244b19e0da104513fdb0d7459f6
BLAKE2b-256 63e9122dbf9e29cd584f3c6935bed35dd087fb3e633a01d3a827b8b147e719d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cdca6f2cb72cd3a14303f03ad9ceb485d4ba0f87c6c53e177d5cbe2a4f8171c
MD5 bab5c8d34748b0aa8b397399b4a5cf15
BLAKE2b-256 a4005d8d84b9fa548f0e2f64acccbc8dd35e51c4bbf9e3742a225fe63f24d749

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54716df875c0d3a2048aea45112ef0a08aae8cf553455ba6b180500760e17a89
MD5 d6f84254a029cc919115e07678c0ef4b
BLAKE2b-256 e3a7fbc7bdaa4f586531811d4d18f606f0a681a4b8f1d71edfee33118c49e870

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file copium-0.1.0a0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b611c3db1f67b9c58c8f3e7ab91e906f8b6442a1543b820fbf153863ba9a3e51
MD5 c2357c9cc5d659b4d9a4c2a6607c784c
BLAKE2b-256 c05ed9008a6d3a38b7b780b66e7772be8d47943e6da1c387ef6421db8dd5f0d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: cd.yaml on Bobronium/copium

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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