Skip to main content

Fast drop-in replacement for copy.deepcopy()

Project description

copium PyPI Version Badge PyPI License Badge PyPI Python Versions Badge CD Status Badge Codspeed Badge

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

Copium Logo
Benchmark results bar chart

Highlights

  • ⚡ 4-28x faster than copy.deepcopy() on builtin types
  • 🧠 uses ~44% less memory than copy.deepcopy() on average
  • 🧪 passes all tests in CPython/Lib/test/test_copy.py
  • 🎯 behaves exactly the same as copy.deepcopy() for all datamodelzoo.CASES
  • 🛡️ tested for refcount, recursion, threading and memo edge cases
  • 🐍 pre-built wheels for Python 3.10-3.14 on Linux/macOS/Windows (x64/ARM64)
  • 🔓 passes all tesee-frts on threaded Pyth buildons

Installation

[!WARNING] This is an alpha version. Run your test suite with COPIUM_PATCH_DEEPCOPY=1 to verify compatibility in your environment.

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 the patch manually:

import copium.patch

copium.patch.enable()

To use manually:

from copium import deepcopy

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

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

- from copy import copy, deepcopy, Error
+ from copium import copy, deepcopy, Error

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

copium-0.1.0a1.dev84-cp314-cp314-win_arm64.whl (67.6 kB view details)

Uploaded CPython 3.14Windows ARM64

copium-0.1.0a1.dev84-cp314-cp314-win_amd64.whl (74.2 kB view details)

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev84-cp314-cp314-musllinux_1_2_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev84-cp314-cp314-musllinux_1_2_aarch64.whl (476.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev84-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (489.2 kB view details)

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

copium-0.1.0a1.dev84-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (487.1 kB view details)

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

copium-0.1.0a1.dev84-cp314-cp314-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev84-cp314-cp314-macosx_10_15_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a1.dev84-cp313-cp313-win_arm64.whl (63.3 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a1.dev84-cp313-cp313-win_amd64.whl (70.5 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev84-cp313-cp313-musllinux_1_2_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev84-cp313-cp313-musllinux_1_2_aarch64.whl (472.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev84-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.0 kB view details)

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

copium-0.1.0a1.dev84-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (478.9 kB view details)

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

copium-0.1.0a1.dev84-cp313-cp313-macosx_11_0_arm64.whl (80.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev84-cp313-cp313-macosx_10_13_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a1.dev84-cp312-cp312-win_arm64.whl (62.8 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a1.dev84-cp312-cp312-win_amd64.whl (69.9 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev84-cp312-cp312-musllinux_1_2_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev84-cp312-cp312-musllinux_1_2_aarch64.whl (469.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev84-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (487.9 kB view details)

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

copium-0.1.0a1.dev84-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (474.4 kB view details)

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

copium-0.1.0a1.dev84-cp312-cp312-macosx_11_0_arm64.whl (79.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev84-cp312-cp312-macosx_10_13_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.0a1.dev84-cp311-cp311-win_arm64.whl (62.3 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a1.dev84-cp311-cp311-win_amd64.whl (69.2 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev84-cp311-cp311-musllinux_1_2_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev84-cp311-cp311-musllinux_1_2_aarch64.whl (462.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev84-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (467.2 kB view details)

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

copium-0.1.0a1.dev84-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (463.6 kB view details)

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

copium-0.1.0a1.dev84-cp311-cp311-macosx_11_0_arm64.whl (79.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a1.dev84-cp311-cp311-macosx_10_9_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a1.dev84-cp310-cp310-win_arm64.whl (62.7 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a1.dev84-cp310-cp310-win_amd64.whl (69.4 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev84-cp310-cp310-musllinux_1_2_x86_64.whl (468.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev84-cp310-cp310-musllinux_1_2_aarch64.whl (461.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev84-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (462.1 kB view details)

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

copium-0.1.0a1.dev84-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.1 kB view details)

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

copium-0.1.0a1.dev84-cp310-cp310-macosx_11_0_arm64.whl (80.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev84-cp310-cp310-macosx_10_9_x86_64.whl (81.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file copium-0.1.0a1.dev84-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b0ab4e9976ca0d63c0df1315308339cd722f81bfc9b2e84f3f69d090f74a941b
MD5 6cd2a81082b3d0939f8e862dad37d2f0
BLAKE2b-256 091d4d77812998d241c7ab4cb4b5d791fc4dda15c3e79cd3b3361535fc38cac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 988016ffe7c624e8283e919cea6f452c7782965d7f48d5273e0e9cd2860a653d
MD5 c05d345c81299fd3e9591b6dcbd55043
BLAKE2b-256 f185d7f87aab77bb39bc54a7ba17ada1fe765ec99b4958b4d8fa9a3698692600

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eeb1ef15c1cf87414b16c621c4440bfc78e4a7d33394b1ab658de41677007472
MD5 be6492ae712ccc10abc02588c89e5f7a
BLAKE2b-256 c402425eed372f6b0ab4431fefe2571c9196b0a45c263778355fd681e0b9d380

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03f059e13b343e78de2adabec2af6308f77f90d86585004ea93cb41c83f0f549
MD5 d7986214462c04c9478982d923fdce9d
BLAKE2b-256 758930d708411c092e014e7ab132cb6597c80648ed410c37ccdf2835ada04785

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-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.0a1.dev84-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f226e646ab82b1f789b1159e27bbc060327809c4ee11968d6fdf1503b8635cc6
MD5 458a6cb11e5100baeaf39efd5794aea1
BLAKE2b-256 77983143ddbc852c5de8a6a8e97f01c7b22775523955a41d8be0f88e87b6b28e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58b6c458b3f74e33ca43304a051980d6837670755bffc1f78073362b6afe126e
MD5 42ed66d83027998a5dd3213cbff23477
BLAKE2b-256 503a172e34c58b7bcfeb535ae2d26cd7c26984948c0edb385a53bfc100966320

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31b42127ab0934547a8d15eb0d5f50712c04fe425c7cc1dcb1913a490212e168
MD5 3c3cba216104eb15eac55c52ad45378e
BLAKE2b-256 5fcb84e342c8b58d048084dff7055e5a4902641cc03e0ccc6ac6a018f868e174

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 65b2b6b63a630d1f6866101d6fc35ff0afd1b809a85c184096c2a5d41d2bf61a
MD5 222f1b757f035b8ee6739d7c6e4c0ed0
BLAKE2b-256 6e5db99e987cb55bd135ef991ca545491d7957d514fa7d71945cc0610b72642e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 398be99655014fdd215100e13e6d2b6ef5334dabb18b9553600b5bc3e6e66a3b
MD5 419fb0d2c007ffa12c384d2f2691687d
BLAKE2b-256 bebd3762f22379a6826e90e281cf50e64f8334e8530265f9539d50c5ff0ec310

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20888825e61ed25479edc4a7dd1e82596f9b3b7c3b01839dc858ac166da3b98c
MD5 69dbb9e84f673ab00eb1466d444c4562
BLAKE2b-256 2b3f26f654b09398df39736b1d66afaa2e0a7ff61a17441ade90a63e5faddd28

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33e9e2b34b978bf1a0e698e7a84f5bb2411c91b41634b4572f50f5dfa43cc2a5
MD5 8e664ce3ac7aff43f60ed47ca760a1e4
BLAKE2b-256 b92dc1e6eeb38a4030589149d0ff5b143a5a61ef78192aa5e3c928f11c375d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10f85b38a261f55ac39853bcac92a7913d34f73d6d5f40181c9b5b99ea16261a
MD5 b4485e1908ba12c652626f7ad314e9bb
BLAKE2b-256 6003be9196c810de8dd16da99728c3522d312ccea337b7f0bb47f89792bf8ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-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.0a1.dev84-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e90608ce2d451802ae8350f5f4b25289065aeda72dec98fb046893d2907eb0a
MD5 d0bbda155e3a4ba303d735f281a63f6c
BLAKE2b-256 48b71461ffad17ce35282eeef612aa765f367fe27e661b77693e943c8767ac42

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0402beded5c8be9d2ac47e4489d32517daa8c993ebb258623ccb3732538bcca9
MD5 9d486678fe7fa2f48ed60bbb4ccbbda8
BLAKE2b-256 fab87748647972762c32b852963b658128e9c6bbaaaca4f99548541d7624513e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfb11539b769c39c5f8f86952fbd94583d25513037def81b6252dff46b195cf9
MD5 ce66276020cdfb8fe72c7309be65ed9f
BLAKE2b-256 38068f10f8ec74d6cccffc82dba4721715b529cf7d753667b94e8856ec282979

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 898b465dd7a936842a14f43fd240dc675e6e66cfa1b74f70bfc65b12403c3157
MD5 6531ab61886c62c9c5e0143e2f02e399
BLAKE2b-256 767691fdf7542e1a5969cd3234f069393bcf977a958830e434672f6d9847f1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 87c18de49b8649450f7fb2bbf79dd2356de5789976313be85e8c31624b894c9e
MD5 4414902380ad8fd3b47743d2af101d69
BLAKE2b-256 5abcfb9fc016604cc7e3788fe544ddee77f250272c4cef56f0068042ba43280f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3c91dee1c43865d82967497ba6dc9e41089b3c7a97726b975f920f716dc7e47
MD5 71a6e43101798c4f018934fcdcd6a8ed
BLAKE2b-256 fdd5075ae6776e7e434f04ca95d41718fb38519f76ec05923865cf89606d113c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41db7e553e8f229ea44e25602c558317421bc2d8846c3225423a1c715949bafe
MD5 c67bd8c8913ae361a2205445f9d9311a
BLAKE2b-256 91d15cd93fa8189ca692ec132ae95b59800d0445a3f03551e0d7d4c0c8225942

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5da32f45687b44b209d5c3ef6ecc2386be12c2ed7a796d76d23fda742de211d6
MD5 43073733388dd306cb49ac4ba88abe33
BLAKE2b-256 a01cd36e979ea210ee43264caecfc7706af282b8496e367379bce323b95c8173

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-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.0a1.dev84-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d40ded80e21191d63e41d8290dedd413497afbf4b0f451b1a7a2f651c12fd64
MD5 ff6de2140b523d401c3be869178550e0
BLAKE2b-256 8015d515f03e2c3845663f1141579fd2756a92e10d062ecf406c63672ef51f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbba19fc77ec6ab857ef789c4a519b1b08775824c9e6ec733044fe4b5abde8a5
MD5 ef74da75f174081cc119b439c2902265
BLAKE2b-256 cd39ff0f77f8361a595b1214b48f5f77c9bbe9c695bbd00cda5ddb8d4e30f316

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0865ac8a09657acf958072abb138a52de154833f27afafbd99f10b95102b85e9
MD5 a896da023ee7df407e2ff3353cf72a16
BLAKE2b-256 9cffffa5d5e7d723590546bb0baea589fd57e241962e3647e37642cd839daabc

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98218c46389d87916cb7ec9dc31314b9c650602c63e80113de5c76f9b1215dcd
MD5 2297c2ad3ab0b8ae2f498cf0272cb41c
BLAKE2b-256 e8738064ddb8f3eecbcb97d65e0cf823fbd532418307f26421b7391f3be1baf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 50bf3ae2f141b756e3d228fe04de5149f825989980014faaa675dc53f66ae759
MD5 9802af922806ab97e78b4ed3fb3253d0
BLAKE2b-256 fb71b619d1327a89ce51e45478c151718a58a2e42bac90a0b2cd987516c61cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5c1a4e90b4e2ad1afb82ab8c090247cd9db2e22d2add9655d09676751df9696
MD5 aee31e37ed0528dc3b989955dcaf308d
BLAKE2b-256 9705d4e5402a0701055ea47d5991d3eeb0817926c7cef88bb43678d398fa8307

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d94aa063c4690231a4192f0b293332f72bcaf07f233eaab291f2dc1c6a892532
MD5 2482eff3cad60b18e01d03bd0c28442b
BLAKE2b-256 73b64a0b45b504e7cfab3c3500afbd5e319d07a7996fc2322617d89eb86dee1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd88e89ef048c3522f6816b578ffcac67609a069edf00d24fe1152edd4614269
MD5 7dbd2576cde83260f125af90de2d6f78
BLAKE2b-256 44cba27f7da922f787fa985c3f69e8cc7160b76c2787bb27e094a2f1fe08e7ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-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.0a1.dev84-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4fbb0d916bc89447ef92bf11d03a8aa5c371abb1faba0b31e524328402d5796c
MD5 accf0a33e7182d0d9a8b93c1c71aa327
BLAKE2b-256 bb295e3dc8d9b8cc86971fe540d14bf9691a0841751dedc5294223784ab678eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb08e01f91ccfb1c94253eef7c78dc0fd56eb6ad4789bf06cd02c327fc32b961
MD5 a8241a7a56ceaa3ca84b4a2ffe5ee941
BLAKE2b-256 3cfc54e5c6ab04cb36ab1eb8efbeed7e41517d2e77a9e4530fbac2e7fd761408

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84ec555532499be798cdfa137c4496f14c6af49e2151f0c3eb35d4e231e37808
MD5 1ed1aff62e0d009fb0d6568fef1c6a1e
BLAKE2b-256 49dc8a1cdd90ea66be97be5238e048e3e50f630b65826292c707df5b2bf09292

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7dfccf2c1fc21d1b8932d78550d5f14b65a89cb22daaa024c3a3a1ce4c3074c
MD5 b507d1eb1a04d13f23d74530d31ab1a5
BLAKE2b-256 254e18ad1a7040d345a2004c9a56caf972006c90e0cbed3a12cdea855f760f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 02da7223d86d0c1b6bb70191a13f357f97bad071892fff60c702ebd894e7c6df
MD5 fab1a0fc806f18dfcb7c9e6b28cd44b7
BLAKE2b-256 d2c3afa43b1786ecaeff8e8a8aac0d81fadb2cbee7a2e4c87146e3eaf235244f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55901391907c8ed83626d4979b7761a2addf05ef3561ceb4c3a1737c3ec00f21
MD5 df3118ebd468fd55e5f1bf9a1b6151bd
BLAKE2b-256 e3c17ab48b545c612fca6a861bbd0878df4a7bc5c6abba6150b78f9f48f13cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a30261c2cc7374015a682a2336efb26c229c8c1bb9eb1f15f1140f381e328c68
MD5 57c208a8070cec5c37098dc0d70d465a
BLAKE2b-256 a891aaa236243c1cd5092f0971dc265b5c8b41c2d5eb1b9cc1e563b6c35c6da0

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6de21db1bb7c3c4af16f2bcd3439a72b1c428833989e683cd362843a8de3b48
MD5 3b055e6302235e75c5bed97e096aac22
BLAKE2b-256 e271d727597fea8c9accbded5be5347c36b597647a6f5ba2d9b9a028d77d05dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-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.0a1.dev84-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca772f194a38221c81ef4e3908febb5a958f70ae051d42e941ae2b0e23528117
MD5 a3db51ea0eae20f7465fd08aa1ecaa3d
BLAKE2b-256 cb54cd83c721e75d2a1c5ab19ebe2637cf109bf6217bb9a82ccc726cf4119268

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a1ce0a0998055908cf647f094bb4224b5f3ea70dc4ddaf82a1cbd4ad7b0809a
MD5 0c20bf2264fddea17146b835c2f6fb5a
BLAKE2b-256 c542e9d77b66989891355864ee1f5c433161a84ae72dfd3532dfb77037c603ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca7a01c4a7f97ed7d0b87279a3a64bfe353e4e45a9121144e2f334d59e8ff728
MD5 168ed216411743132687ec78a01cb711
BLAKE2b-256 d1de8113110a16e07c9bf69c3a9d885af75e45d4c678d77c6bc0d03b638ca24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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.0a1.dev84-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev84-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b93d80b729357426fa7a758c9c295344f18b05d0b3f0de35a972b46a786e42a
MD5 1a499b2dae5d2544fde370d4ce98d773
BLAKE2b-256 856e229ba60ad7060ac77b3499a53eef88bbd468b679355d8f77e0434350ac79

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev84-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