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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev104-cp314-cp314-musllinux_1_2_x86_64.whl (502.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev104-cp314-cp314-musllinux_1_2_aarch64.whl (491.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev104-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (511.1 kB view details)

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

copium-0.1.0a1.dev104-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (508.1 kB view details)

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

copium-0.1.0a1.dev104-cp314-cp314-macosx_11_0_arm64.whl (87.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev104-cp314-cp314-macosx_10_15_x86_64.whl (87.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a1.dev104-cp313-cp313-win_arm64.whl (63.1 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev104-cp313-cp313-musllinux_1_2_x86_64.whl (491.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev104-cp313-cp313-musllinux_1_2_aarch64.whl (481.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev104-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (495.2 kB view details)

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

copium-0.1.0a1.dev104-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (487.4 kB view details)

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

copium-0.1.0a1.dev104-cp313-cp313-macosx_11_0_arm64.whl (84.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev104-cp313-cp313-macosx_10_13_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a1.dev104-cp312-cp312-win_arm64.whl (62.6 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev104-cp312-cp312-musllinux_1_2_x86_64.whl (485.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev104-cp312-cp312-musllinux_1_2_aarch64.whl (475.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev104-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.2 kB view details)

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

copium-0.1.0a1.dev104-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (482.9 kB view details)

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

copium-0.1.0a1.dev104-cp312-cp312-macosx_11_0_arm64.whl (84.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev104-cp312-cp312-macosx_10_13_x86_64.whl (85.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a1.dev104-cp311-cp311-win_amd64.whl (68.9 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev104-cp311-cp311-musllinux_1_2_x86_64.whl (473.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev104-cp311-cp311-musllinux_1_2_aarch64.whl (466.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev104-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (474.5 kB view details)

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

copium-0.1.0a1.dev104-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (472.0 kB view details)

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

copium-0.1.0a1.dev104-cp311-cp311-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a1.dev104-cp311-cp311-macosx_10_9_x86_64.whl (83.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a1.dev104-cp310-cp310-win_arm64.whl (63.1 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a1.dev104-cp310-cp310-win_amd64.whl (69.3 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev104-cp310-cp310-musllinux_1_2_x86_64.whl (476.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev104-cp310-cp310-musllinux_1_2_aarch64.whl (467.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev104-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (476.8 kB view details)

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

copium-0.1.0a1.dev104-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (472.8 kB view details)

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

copium-0.1.0a1.dev104-cp310-cp310-macosx_11_0_arm64.whl (85.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev104-cp310-cp310-macosx_10_9_x86_64.whl (84.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a3e65582f4544ca4df25b662ae5dc579bc83a3c6f6ac9d7bdf5954e24dd0a0de
MD5 62353e4d29a6b9287c7631ad928d0f8b
BLAKE2b-256 132d888ed6fbbba7ffac797620c109c526a46c4f97b80e4aaba801e46ebd75a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc84da97ba01a3bb9c3815e786acda4ac1a890767846b05e807ad857eee9fd61
MD5 eeabf7625589cbeff302b846fcf6faf1
BLAKE2b-256 c2469996dfb9d34885b25204d236ad88890aca9858d723f48c9a9a9d6804934b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9e93627a05fdfd27fe01604365ccbb6d9b7becec7020477531397c83a217c40
MD5 d3fa4b2ee8f5458bc518450a954c48e3
BLAKE2b-256 32052f944da8355b210592d068e66f252d10263da161ae494ec679e43f0be3e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 690d04a0587fdfd015fbad4101b9a237da0085535108ad889492f04f6cf8a270
MD5 aff054785c0359a29990eff26955b055
BLAKE2b-256 2b5c74dd44d42d195bce4659b66f8c349edf8794f2381a6ad9fa8ceeba4685de

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev104-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.dev104-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.dev104-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a8099b1dc56b3fbae167dd4d6990a1b1a2788ff0cf3a4e34e5151b1bac4f8e1
MD5 2f3588e3fb2ace2ecc57c00e6cd3c9b9
BLAKE2b-256 6223940325c593d1298a8fb02cc777daf606f0eb76906c3b24f80182574ccb8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7970cf70645aeb2099dde2dbec187a914370e50f9933c9b32fd7bc7bbca61f9
MD5 fdc18fe850d8dfda182106ca6ea010ef
BLAKE2b-256 053b9ff16d307245ffc13619fde864ad6841061afd4842d893f66c8b2bf97416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7cba27c9d85874330061681104fa3ad91d37c896e1275148ead1c2e3b08ea4a
MD5 351cef57af7c98f939095c935190f581
BLAKE2b-256 327fb0cfd849c1a0f54eeb22708d11bd343ce3e9f2d432a01b4aed8c6663f122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c3653da30c34aa8ba289535ba8556ed8650bf60f250b81f71b480da7f90f0174
MD5 a1c7dda04c1dff4334db9c40d0f3ad92
BLAKE2b-256 656a8521488ab09e9dd0d8950afd39e2a271580f294a2ad90762eec13b169ac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6056fdfa959f3da9c15f931097a7b0e78271ab07c350d273fe1fa9dce0b964b2
MD5 c8426bbb70bd654bae4e4d919e764b7a
BLAKE2b-256 6b4be9b2f5b27585b1fae01fe341cd454d653a0b0b42901e8121f3c9ecb13b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 29f1ae9b4c9a5bc9ff6cfac4ff8ac4eb60036c797ac68776c0112e14b2c5ee97
MD5 2dc6eb51d9737de2aba96de6b5632bac
BLAKE2b-256 3201a77d348fd84f3b69accff7d600689b8f9edd6bf30a55bd17eccbd6d493b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b918a1c1d0c9c759d47afa55a054300e691a2bd482374ab910fc08a32a055d00
MD5 93b94aea9c59a0d475bbd6632b5b5dca
BLAKE2b-256 f133464bdacdb6b2c42a699a8596ff3ee7da916580e54ba85a8bff9cf2f50df8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e04e6d372a927ab60ec88ab2f562d4bd772eaa5703605f80e105711180b4aa9d
MD5 4f2d654796f98bb3df7be047586f843d
BLAKE2b-256 2954829c9a4c8612d7ffaa1b9aaeff5339eeeec27e37cc12c5028df28ec9d418

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev104-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.dev104-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.dev104-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bac2c2c9b36e6ca00b76e6b0f4193bb6359b32dd321a28ce8366d7026d4e8137
MD5 efe5ac0fe054efa3a1683796beda463a
BLAKE2b-256 74d8a4280096bc672e8937ac658cd68493405f1ac59a33f13220aec1242a2404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ba0e6dbcafdce726cec5fa2adbc5879feeed723aceac347652e351e8ec3a5c6
MD5 4e7a6146b22ba299e245dc6125c8951f
BLAKE2b-256 06272b1a03dbdbf3e61a658819e4ee86437e3e3a79177b66fefcda37def75e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40cde410df62f15edeadc75ab8b99c0b382afa495e455dc9c4fbcc7727a9ac41
MD5 f326c190a8ea6792ac42398d834bf74a
BLAKE2b-256 e27885d1667ddc730c2a5bdf00f99dacd4b5e1c0e64f8a6c6e572c18826712f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47cb0b2a87a23c7985bbef903003e843ba02366415f3b50c575b3bfdb46139fb
MD5 1a83e459d25716539eaddcce9b996165
BLAKE2b-256 429b6272e6a5e96ef951decaff43808ad97bafeca4ccb4fed0ecbc7fd6794b06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4d100ad561fac227f6c83a8359b36ba91f47c84324787a70fb4ede628fd78c3f
MD5 3de7c9a685e47c81575bca88ae40c06c
BLAKE2b-256 78325c9d60d337c8f33ff28d00e58ab5679ba7e5ee5fdda48c795e31b4ec4a4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29a61ef97f3aeddf77914404ff86a57c1a582c09b38d35fe674ec6f81e6a9b70
MD5 45e211d233465dc1b6b641a0f8cbaa46
BLAKE2b-256 83899998504189b48ab101f3c44572525c114e369b95a259ad1edc892aa925bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7230d143d0057d38255fd1c9c7efb8bca4b47f1051056cc46751b5a1e64d57f
MD5 6f1fa5682936297b840fc3aea7f11d4b
BLAKE2b-256 cfcb6c087df649a51b25d5356c482b9f00d6e580897d1b188e6c931ddd24b459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33660952c62cc7059c9acc7c524196e2405f9702852c160809d03a1ac977b6f5
MD5 2c7e5419fc04dd12ca0b711b30b65a56
BLAKE2b-256 a833f77ba2cfbebe20cbeaa4fdb31f8da63b6d0e31f2f9c27f60c7839ab32315

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev104-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.dev104-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.dev104-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19e5c9b089189e5961875f1d7c42045e5a1df3dd12c936c24986c75d8d8a6757
MD5 aaf86136f646ddaa26eec48dd7337b95
BLAKE2b-256 ffcc176064bae9f8fb35d58deb71f10ed92830df5f9dba737e728426c7b207f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9574b533a3126008ba5a1f71afc07cd1339084675be38534207888e3b087846c
MD5 1cba1d3d7253e8020996317e49865530
BLAKE2b-256 59ca4934b89b6ab03a0ec392db7e3e8a3cd9e3a6d30b9a3d8e9d30152f9af50a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7570eb0673166e3562ce6bdfe66832d16ecb2a69110d4e3adf4f560e26ed5691
MD5 e38395c05c30f2597fd0c487aaae50e2
BLAKE2b-256 4831c94838c826baee4c8873ae66f5905262ad9f4f46792d0809e6c6254fd073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d3b30dec5c9f5c66d2ae17c4bb589c1b3eff003e6d08d836f7cf7c404e7003fd
MD5 b9871fd0c20c214e656d8bbcab12f4b0
BLAKE2b-256 a6787a87428c81d5e9b7bfcebf20a5a7859c17e81f70a5447453709548812ea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9c7729b316a33689434571509a4b889f60ba6be46fac42776612f6113a7cfb2e
MD5 d8715feb3c69fabfb6cc7cbbbb9fd32f
BLAKE2b-256 7a2ee3002493d126025e2ea12f864c4ece33a7a3cf2d53fa31d1bdc63c053ef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5188eee672d92992b656a94d3e61a682483d82ca9ab9a364c6654d3cd9147cf7
MD5 524e51ede7aae2da1b1d7013f856e4cc
BLAKE2b-256 08b216ae5dc525ee4bc6a4adbfb06e646a35af44414db7ddf90c941b8e752117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7a873f1dd62fc7b9afe20339d0f1ba00f7649c50a3de325febe09f0b04f0d1e
MD5 ac3ab82ddcc69c0f7978b7aeb3b5f979
BLAKE2b-256 246bc1e86cdbd84547cc47ac5c5f325b843f5e085883349ee0a6354c331e77a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afbd0ea74b5c684fdbefa3a53abe458715ee1812961c1f3872935849a82ebb94
MD5 f629c594fd0a6de99a6491035eb266ba
BLAKE2b-256 eed92d6e67dfec5b80a5a3a48a56bbd0e21d1481bbfb9a46bfea4296d04829e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev104-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.dev104-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.dev104-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d594915d7b2611a931763f50f99acf6cb48313ef33aa7989a37bbd8b59baae04
MD5 e24a57ec686b35dbbadd0d32feab3977
BLAKE2b-256 861e2c4133627198c696437c691a3698dc1d10b720e24581f49a9fac9b5fb7e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edd0a62431abad9e81eee1a5b443611296809294615e6f70725a6a3244656aac
MD5 896d661dd90a4e39dbe266c735d437ab
BLAKE2b-256 f727d8899ba45c15d598e773a0a7a595c5a3c073e719ccfc4950f24992ac5914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75f2b43e9adb230dbffe3c20100b09bbfae3ba9599bc83f21a36537e6367bfd0
MD5 80840e893419a03245238b10cf331a00
BLAKE2b-256 e4bf01323a51e550a78a7b88ee99b8e7cd31158befebd12a85eeb4d69d602898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e8cb964641fc7bc47b4056f65e15067bf706355c025ad1579081f2c7d03110d
MD5 b3f916ce0982a6a504a90f77ac008ae4
BLAKE2b-256 82f1022ff09dfc7d00dd4ca628783f5f62b5b3139bb9cc837cb9c009a498ae16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f582d812353e9922413d7d265a655527b2d0338b0f57921c2c64f1889809367d
MD5 8ac9c44c525dfcd735c1500b94877b2f
BLAKE2b-256 bf7537c413667ae9c3b0ce68f19887fcb43f0ecc07c97d36fb28fb18850b8e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d794547363d8c7b93285ec95169f3b84e16466b93ad03ca8f4f1d5d39aeaf3f0
MD5 7c118b95ec2ab3c8914ec5bfdaed1aaf
BLAKE2b-256 a8ddde233f4f78f2b407f27f448ade41c998fd98ca1d7032af9fc8656bf6b344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79573f59985cae3a586b1a97c16c033be573a46fecf054854b57fb865125618c
MD5 52e86e86d8d0fe3c7c9bf452daf26aa3
BLAKE2b-256 8a22a894380c9298222bfcf7d9c87c7faebf64453a54858dd1fef43262a33fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b0d062b192796abbcc1e38bd510afa746f7fe0a75b5816fa348fa895a56e3db
MD5 f52d8aedc4914db6fab9927540c01ad5
BLAKE2b-256 4c981c1b2ca8e79c0ceb5d364406676e6fada7051ba016e04cfaff891de5865e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev104-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.dev104-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.dev104-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6055f2eb1c267ef1ffbe9d62ce2bf07379f1a789159e8d2d4efb75001cd9137a
MD5 d24ba00ffd7dc87fe5373cedfdc1898c
BLAKE2b-256 09a58d16f57ce1c4f4dc9646e887857c4811ef9c4e485f233662252a9f13bd08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 328142f7ccda55ee402acc03c75a2ae874d7dc2493543398a334b275a3e1948d
MD5 4b458e1a145d4ad22f3d9fac69592bca
BLAKE2b-256 49eb2212461527cbef0ef4d6c2685c155fbc1c285ce622ba2dea9926ad1fa920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9978a0399799e14540a34c96873b49b8bd516d10ea7d18c2ed734732e2bc677
MD5 b38b248fbf292c011e215377bcdba7ca
BLAKE2b-256 1545834aea492820086366a7f50ec959c9e7ee27248cd806cd8c1ba3b74d1151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev104-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b64da43489be199e72f22fe42a435bbbb4f756f0b4a0d028b2477141871cb98a
MD5 ac85a11cc8e536e1833681b911821a28
BLAKE2b-256 b414a08dea02ca4add322700116521cfbe74631ad3bc2bc4059b7e142a5698a2

See more details on using hashes here.

Provenance

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