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.dev117-cp314-cp314-win_arm64.whl (68.2 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev117-cp314-cp314-musllinux_1_2_x86_64.whl (504.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev117-cp314-cp314-musllinux_1_2_aarch64.whl (492.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev117-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (511.4 kB view details)

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

copium-0.1.0a1.dev117-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (508.3 kB view details)

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

copium-0.1.0a1.dev117-cp314-cp314-macosx_11_0_arm64.whl (88.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev117-cp314-cp314-macosx_10_15_x86_64.whl (87.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a1.dev117-cp313-cp313-win_arm64.whl (63.2 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a1.dev117-cp313-cp313-win_amd64.whl (69.6 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev117-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.dev117-cp313-cp313-musllinux_1_2_aarch64.whl (481.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev117-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (496.8 kB view details)

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

copium-0.1.0a1.dev117-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (487.3 kB view details)

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

copium-0.1.0a1.dev117-cp313-cp313-macosx_11_0_arm64.whl (85.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev117-cp313-cp313-macosx_10_13_x86_64.whl (85.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a1.dev117-cp312-cp312-win_arm64.whl (62.7 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a1.dev117-cp312-cp312-win_amd64.whl (69.0 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev117-cp312-cp312-musllinux_1_2_x86_64.whl (487.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev117-cp312-cp312-musllinux_1_2_aarch64.whl (477.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev117-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.1 kB view details)

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

copium-0.1.0a1.dev117-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (483.3 kB view details)

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

copium-0.1.0a1.dev117-cp312-cp312-macosx_11_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev117-cp312-cp312-macosx_10_13_x86_64.whl (84.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.0a1.dev117-cp311-cp311-win_arm64.whl (62.5 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a1.dev117-cp311-cp311-win_amd64.whl (68.8 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev117-cp311-cp311-musllinux_1_2_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev117-cp311-cp311-musllinux_1_2_aarch64.whl (466.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev117-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (476.9 kB view details)

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

copium-0.1.0a1.dev117-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (473.5 kB view details)

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

copium-0.1.0a1.dev117-cp311-cp311-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a1.dev117-cp311-cp311-macosx_10_9_x86_64.whl (83.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a1.dev117-cp310-cp310-win_arm64.whl (63.2 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a1.dev117-cp310-cp310-win_amd64.whl (69.2 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev117-cp310-cp310-musllinux_1_2_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev117-cp310-cp310-musllinux_1_2_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev117-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (478.0 kB view details)

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

copium-0.1.0a1.dev117-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (473.4 kB view details)

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

copium-0.1.0a1.dev117-cp310-cp310-macosx_11_0_arm64.whl (85.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev117-cp310-cp310-macosx_10_9_x86_64.whl (84.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 40b145f8c00efc845c5a535dcaa134503a00863f1a358cb4ab342b0283e1abb1
MD5 1a1757f16d8f1d2540301cc4e545ac84
BLAKE2b-256 e709156ed15ea5ff64070f735e2c1baa6c965ad9f891a7b700b9f33ca7b7c03a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fe60d31887414bec5e952f07e019c8ae3acf3c3afe99020b6e3eee3940caf2fc
MD5 72d915184bcc4c83966a4cb2ca64d6ba
BLAKE2b-256 a7ab053c777bebe4ab0b2e9ec98ab3a1253b4694eb91b096cee43ee04091a037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e94488dfb36b2ee5d722cdda2eed43e6de992ca9a3f2c9379992de7b6514a92c
MD5 1393a5a03d010100a185e1463af058df
BLAKE2b-256 651863311f2092b82e0d9de593de6b62da001c874df10defcc78ba0112ed0583

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dee773556aba8e3796adef528abf9f2ef16c29890ac0d633981ec4a28dc9ea3e
MD5 473ce1355e9f8b515095d0c30c66dba6
BLAKE2b-256 d2f2a42e4a70bbda569604cbc7af39f8c056b20e49a2600f42e27262c4274399

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev117-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.dev117-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.dev117-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0cfd3b48f4473d4061e268f4db22d060d276e1656ad675cecc528afd1fe7024
MD5 869b79a35ae605c3d198f8414beb3a8b
BLAKE2b-256 8caf2c337e94c52855cf79771d5659e2eedb3585142fcd9fcf81eeaa9e3599e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e192f9b2b2f0914a45d893b8f246cdc05e8204ddc8c3b35470b96ed1c42fcfa
MD5 6f31198bce605bb9ec96a22dd82a5976
BLAKE2b-256 802a304f49735392261cd0ce5d6f2c337808b7c1e53bce1d51dad6cbd7d96080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 166bafd77a9b4350273e3bbdb0b1c74f0a4fa2bf62bb72ab238dbd25edc7427e
MD5 064798d9eaf6fa26c412e24cf09d890c
BLAKE2b-256 cab3ac3e6c1888fa8447e3b53a5d062047effbb9f1ef3925ebc05160f3e4abba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4eccfb6a161db9a28586aea3c7188e7abb3515fe1936e44221500fd653187b5d
MD5 de8cb93bcb380f3b01bdd54e88d51883
BLAKE2b-256 d5717f8bf2414a5dc88c35696162f0038ab8c22955fafba41dddc1b0cba635ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e68bf68f448c926b9eb47539411eaa1f0630fc74f6a0f88bd67785c25d4cde62
MD5 2a9dac8fc8304cefda73bc50b93312db
BLAKE2b-256 079260b2f3fa779dbe9ef6cef0a5d3021378aaa0af85d2c65ba0318e8e7847c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb78772e66c80615d2188c56b5515657a8ca385d33334d294e06aa2ae3f2347b
MD5 b0d57926407913a5e1caa52d0bb5f844
BLAKE2b-256 af42b76e257eff7e88eb781ea7d387d67c4007481895484acaeaec42886a33ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 561799bbcdd490ca0091518897709ba76a50952d8192b9b8225f4f6de0dc28a8
MD5 029b95dfbd71507b2bca9193ae7ba71c
BLAKE2b-256 e0f4272ab658d1bfedc8c01bce5cf731f3c244cd1c563cecc40170c12ffa5974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ea75e7087394dc72289e0295ae21abc8666aee2509c0f10a33aab100f9af8cf
MD5 91062233bb9bf97152bfb71894fa2797
BLAKE2b-256 5b8448e8ca0728454a292ef6e5e02a168c942ecb524d5f1f2bc2068a7cea97bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev117-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.dev117-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.dev117-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 804c09a6a604db2306e0222603d32558214ade94e5adb326d0dabb683c734483
MD5 e0e26dd698e23ee5c7c6ff0f71067957
BLAKE2b-256 a015bc896535015d508c77dabdb700a0cb161b554cab67ffb04692c131350314

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b4bd80c33de321505078cd2e968685c1241cfb266a52d736cec8737253322dd
MD5 e40bfd659c74c8a510ec011c935bc7d4
BLAKE2b-256 f341f29c972a3f3b46e1552e58720dd31194d570b0a8180783efb68ebb97fef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7aaead29a4af7d4da5d175a0831afb141b973cab76fa5d9ab293aa53200d16a
MD5 0b946fab04e1636097acdaa15040b086
BLAKE2b-256 ca287e5bd071dfdd94bd4ce572f04e370fd209b9fd34d987a521e9f72181de78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87d88dbab1152e7a0ffe29b86b57eb32689e0910fe61942b7027c044e21c6295
MD5 6b216afde1ed60296adcbce56f4a2043
BLAKE2b-256 4eef22c4fb9c1d30d9deecb9ee656550b1bf9bb63f37f06f7b93bc26763ef1c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1441d53749db7563f8d259287a414f1ef8a471fa3fc956d11ad444d8625bb345
MD5 a4ec6c0433beb599dd064e76d3c647c1
BLAKE2b-256 3b2ca5fe0b5076d4c96be6f09212c6ec0498bb79f532358110ac8741a597333f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71dd8a1eefef4a0420b147f24a9d5bd18c9cefbf4439949d02b34976d85b6aa4
MD5 365a9b2797981ccbd6207afbd550d184
BLAKE2b-256 6b6e328c7cf5b82fc0b6c967d0f47e70b27a52f2de11a1531802e5af99a2cf78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 683a90ec3f88023c2bd467869f0ae691879f2b3f3f76529b5059aacca37d1f90
MD5 5af5630139c7302a5b2a8fa800fbb38a
BLAKE2b-256 2690aa4584d5a05e29eecacec6942530bdd3723ca305dd4c3b576ad53f3bd5a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41ae5656821601b021273f3975c2dae8e6f469d75b8b89fa91d80f8584764996
MD5 1d2493db5108bd76c37ab289277fdec0
BLAKE2b-256 010d06c55496ddd4fd0647037a5a0f5200f4793ed39dda176c1665a6020ede17

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev117-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.dev117-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.dev117-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2f8ed2c45e531dcab613ab0f346077253a80ecab238207d67b8edb2f407ccbc
MD5 f2bed6a56810ae2e9edb468d4aa41a0d
BLAKE2b-256 edfb725166eea9360b83db524c3c1ffa51e1ce8847ef928c00edd5d335467999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7c4e20cdc58a97bfe16d0b7a02b3a0c013da475e30989a63396f520264fe81e
MD5 881607ef013692cd48a1950fdb21a43f
BLAKE2b-256 e220b5ce2d98d9817019f192a4338678416d6e09cd5f11618ad869eba5ca1952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22226f2bcf4871bfe0f9ed78b4f8046a3fb7caf4f19c677444857804ec9648c2
MD5 a975bc73138fcd9b588d00103f23597e
BLAKE2b-256 6f7493816e38cab9607fa425e07366a01e8208b00a5dbd8ea21bee8e4acbf068

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6c099bf5881e85a70aaa757fabba5d5278a4de53b56bfe4d7076d0f1507c43d6
MD5 9f80bc4129c814d480367819a03023b8
BLAKE2b-256 2d2a337405a95c02ca21c40975da59fae7bfe0f91a9b33d2e3cda91d79d031f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 20e77a895a30e8e6204a79aae84d41f918f29e923e0e65d7871955286086d58c
MD5 0c15669aaad80bcdaca2fe3a224f5f3a
BLAKE2b-256 1c2b3cb5cd8af3e43f962254cd80a58a3641acb1ae507795eed0d14d028602d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eadefd0468a0eecbf6dbe39c93bd9131c9114c3f73b3818d159785809bb6aa41
MD5 a9fcfac21584ef93833cfa2da20d9d94
BLAKE2b-256 63647b6b1ddb6374518add28375b9930b4a6c2abfaee6f2ffbe83319571e1657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fbc0371dbf94e69ed70c644bcbd3be2f600efa956987d48d5d252a86d579e7a
MD5 d3493bee5620041a159a652f4d708de8
BLAKE2b-256 72d1045331c60e3f50139f52c93af0c279cb5e99b7728b1d36093c2c7e8c22e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c41c0e8d8df0f205c332ba897ce8022881ad9e95439a76a2c22620fccc3702a8
MD5 86c4c85f76d26ea8f9a8e397d026e875
BLAKE2b-256 ffea941d2aabb9d2817d6ddf9b5f93e754fcf548dd29ea1e10e8f229f81cd771

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev117-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.dev117-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.dev117-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7516e4f566b1980896a6d7036f6cb8abbc387d4e71536705033309dba0bd2053
MD5 18585cafb2c8ffb7aa40b200897a6837
BLAKE2b-256 4a73d7cffbe7cb293e88b8c58036118cca5f48ee76227feea365fe8387fd2d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc0e82d6bef004a03aeaa0d4aeef10e633cc8a2663531b86396af05534a48c89
MD5 05858d5b7df7472a908f3c9ee0ddfaae
BLAKE2b-256 a0b29d1cb1c86d08c3c4ed985891ec64288989cc9aa3800ac414677972394fbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b7363c576436211d44ad8a7766b5e3030c1de11eaec4a2fd622c314f3de2b22
MD5 0e3cb3270bf31a567b2cdb644ce71096
BLAKE2b-256 58559e78102936e18248a183425a67353f9f21faeb386c893d49a5bb7b10b3d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44e49a3b178be48525ff2d81240109198611f47aee9f2562ec69e5f2ebf73d6a
MD5 1ca3a6ca80cca7a90b20b17a52080479
BLAKE2b-256 5ac0f6dd6e3decca141871d3e06f5373e1aac6090f1ac0c8c687e1b967bbafa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8cb1d7a8e2c1b9ddd8f693ea8106409247f0751a385bca9d8e21219b2a520332
MD5 0beee26edb5c393f1efc0015c74a8e59
BLAKE2b-256 df9596847413ba0f171f4a69ba683216d6807b27e4292dc81894e0079cb85f2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 022810277b15f3c203202084410c922ff0b606a01b2fa51c5223959c4f538ef4
MD5 247b7219eec022f394ad255a0e158e03
BLAKE2b-256 86abf5f8bba28ec6fef5e33966b9cadf2b54fd0ba28229e023a87cce916c30f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb4399401310c0240fe24a37a9fc14ff52d9fc4b39928851a8f9797ee91af8cb
MD5 47584fac4126ae6231af3484d4a07121
BLAKE2b-256 b0f37d259e870ce1b1578eac1537c6af69522cb612b8c990d9134814f0ec3858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4393f163a6953c91934820b8e1a8e73ce41560f6b62df82fa34c6854950a31d
MD5 abb788448c8a444eb1876578e935675e
BLAKE2b-256 51d2179ae69b769bd8315d8a82c1c637cd4646bdbff821e8b81197a7fbb13b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev117-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.dev117-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.dev117-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79c317074794d2c52f3667dc18a274607f09cbf2cf64ebab906db7466f2a6970
MD5 b20ddff248aebd69ba424ced73105c1a
BLAKE2b-256 3082c885efaf512eee6a43cdf0561a8d2bda188af1e053bcc26559392a383368

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11bc361d1f87433ec1dfa6b090a34749793de5946c1a9aeb5cb7a56943000b0c
MD5 9f377fcd1d6a4f0be457b01609b8a766
BLAKE2b-256 576aeea0ba1edd53acfd5f28cf3805081dfe497fbbad58ffcf1c38073a6c137d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 525ccb52f9dc36aeda9c944fe9610a2d9a55cb86b911c40b236b497625da5e6b
MD5 5f9d9a5e4b3e9d3b60e20b2c6ef4e958
BLAKE2b-256 7a1ed5acda0d3147fd0a069e9fb066f9e7705244edada29be32d0fc3425ecf0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev117-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ff9d41005509a8c07c41bb64bf138b6f7cd64c5a3a9441e7a1271a7b6ebc495
MD5 b9d6eceeec0270eaa523920cc0f594ec
BLAKE2b-256 206f77b96b0d8a758e5d6035f3f8853d2c99584a605cee469dc1749109a91368

See more details on using hashes here.

Provenance

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