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

Uploaded CPython 3.14Windows ARM64

copium-0.1.0a1.dev93-cp314-cp314-win_amd64.whl (76.0 kB view details)

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev93-cp314-cp314-musllinux_1_2_x86_64.whl (499.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev93-cp314-cp314-musllinux_1_2_aarch64.whl (494.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev93-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (507.4 kB view details)

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

copium-0.1.0a1.dev93-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (507.6 kB view details)

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

copium-0.1.0a1.dev93-cp314-cp314-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev93-cp314-cp314-macosx_10_15_x86_64.whl (87.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a1.dev93-cp313-cp313-win_arm64.whl (65.5 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a1.dev93-cp313-cp313-win_amd64.whl (71.4 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev93-cp313-cp313-musllinux_1_2_x86_64.whl (500.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev93-cp313-cp313-musllinux_1_2_aarch64.whl (486.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev93-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (502.6 kB view details)

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

copium-0.1.0a1.dev93-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (492.5 kB view details)

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

copium-0.1.0a1.dev93-cp313-cp313-macosx_11_0_arm64.whl (83.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev93-cp313-cp313-macosx_10_13_x86_64.whl (85.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a1.dev93-cp312-cp312-win_arm64.whl (65.1 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a1.dev93-cp312-cp312-win_amd64.whl (70.9 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev93-cp312-cp312-musllinux_1_2_x86_64.whl (496.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev93-cp312-cp312-musllinux_1_2_aarch64.whl (482.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev93-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (497.5 kB view details)

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

copium-0.1.0a1.dev93-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (487.8 kB view details)

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

copium-0.1.0a1.dev93-cp312-cp312-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev93-cp312-cp312-macosx_10_13_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.0a1.dev93-cp311-cp311-win_arm64.whl (64.6 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a1.dev93-cp311-cp311-win_amd64.whl (70.2 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev93-cp311-cp311-musllinux_1_2_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev93-cp311-cp311-musllinux_1_2_aarch64.whl (478.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev93-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (482.2 kB view details)

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

copium-0.1.0a1.dev93-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (478.9 kB view details)

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

copium-0.1.0a1.dev93-cp311-cp311-macosx_11_0_arm64.whl (82.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a1.dev93-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.dev93-cp310-cp310-win_arm64.whl (65.1 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a1.dev93-cp310-cp310-win_amd64.whl (70.5 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev93-cp310-cp310-musllinux_1_2_x86_64.whl (482.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev93-cp310-cp310-musllinux_1_2_aarch64.whl (470.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev93-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (475.8 kB view details)

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

copium-0.1.0a1.dev93-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (472.6 kB view details)

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

copium-0.1.0a1.dev93-cp310-cp310-macosx_11_0_arm64.whl (84.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev93-cp310-cp310-macosx_10_9_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a1ebf6cd4050c52de72ffe90896b2fc3f2d1f0d989166fa803c7d6038a75182
MD5 fb810878d4375c5a3c112fae2068a5d7
BLAKE2b-256 7bf931a9f145f260138d494955393ad811a76a5c43f02ffdc212cb879c4f787c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ad7286dfca140173b6f23346aeb66a3564b42f5f088f33a1cc6eb80d617d8361
MD5 2cd7051ab7f4f75c48c418e3f319787d
BLAKE2b-256 ffec51fb896cf9d8a13c6084d417b293b634527626d95f0ff04438d24c8bbd2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70816beeae2bf987651e156fc474736a8815aec7a55f9f909508d7bda9ccb9a7
MD5 fa5074b386e755dd374a619d57840d50
BLAKE2b-256 945d959bd9fc491808395fde9088f644295b6f12f8928c84c8881be5513df2f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbb6ad6d5ec5f66667bd6b9176921e5c06336e17cf774628b4a2cf85bfd7c369
MD5 7510a222647fa5f75c472aec54fb2e7a
BLAKE2b-256 5e3dbe15210d92b52897708f896a37b7dd64e21f332ea950f685b8db542f2650

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev93-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.dev93-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.dev93-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc686ef051a4156d98cdfecc75e7c7d87f9e199be45f2b430d3c9cb83be76739
MD5 a4693c0a2efcd5b4fd9b06fe3b86f45f
BLAKE2b-256 d1aeafdba79b63197bec956cf719e9fe3dc30f88dca412600a8f04b08a5d9b79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0e3d267d2086fdce2bf76d52513d4b19688d09965c65ebf1000abce8075b1a7
MD5 a2b4f04187c40253a870dadbd86fea03
BLAKE2b-256 5c6e7cb1620af340061b2b3596357619e793c393504bb62a02166d87c8d7674c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc9bfb8ea5f78758749518c72e140da720aaa18d0a183248c8188b119e43f231
MD5 c5686621bc98a1fccf7bee159628101f
BLAKE2b-256 aba51b985d2e871ba95e628b47e32503044e9f4ab4e20356a350b06143d1febb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 afa0f4785bcd18f6a2d90d625c8c3c83da053d622855336494c1a4118930f488
MD5 3a1dbb5b09aed5cde77b958458d08236
BLAKE2b-256 d1b0a09871cd59aee2f53f32363fb1b71c8d7a0c37d3699fcfb117b39dd21e49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b700c70e5c86d1b53def7eeaef5d7d1b4a565c0cccfbef64326231e4efbba4e7
MD5 9ebc76db74375adfbbf713fb0eb0e563
BLAKE2b-256 53a96d98782951a1270ee3594dbc8c97d9c307c63f7cd05e94d13241c23e9453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f20ce0d4f98e599368f46c6edaec22e79c510b1889386e0c1c11378587dbf488
MD5 978b56f58f70ed3e40c51ca869a047df
BLAKE2b-256 9ca5494de4290d56a0abbb45dbe4ce54500fa18f29b7cf93093e6b74aeb649db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d3b52ec0bd5dbe8d321ba8a1090b13d54aa26a040e994f5c89c2af14994a3b0
MD5 92bf709db3299a70fc81e7194d1f17ba
BLAKE2b-256 67b176ea6a41d165ff17132ffe902373b54d573f1e35526ebc3963cd32d183cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1b7d66ab1929200c407840c824cd9b2dc7099c79c348bad184f45eef8148a81
MD5 9e02457899f60a4f0a31760d4d974290
BLAKE2b-256 d685285263ae66cbd1a5d75ecdeb2fe16b762a41cf128ce01690c6719a186b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev93-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.dev93-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.dev93-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb47c1f6242d4c3adc616efc8c5c1ae797ce9539f88e43fb2deff92bcc54541f
MD5 314b2c4558e311fd921ef215170ae159
BLAKE2b-256 86554602878d341442c41bfb0976368f95f6cdc96845d297538e6982381afa8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 175a6e1e5c90c8a0effb87f4e37c21928782ebaf565e0bdbc5576f573a4817b0
MD5 7caca47affc716b81fabc18ff52a939e
BLAKE2b-256 0a4fc1261e5a31d07438f4a9e2c0fd9c471dce72df747d34d35146572d6c3202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3444af55502e4aa6fba338fde6880528a3dbf9618ffc0d84dd7f575385d02cb
MD5 d95e0f711125d69b739efb38fd30df25
BLAKE2b-256 f7a8497b3dd0892ef788296dac61bb6a262157c72d78602e5633fb7f74597832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d64c0ab19b053d24e6be209a7747204b7a450486c0cee372d6571b526a87daa6
MD5 5a2b66477e3620c46321a2f8a0ec218d
BLAKE2b-256 13dfaf075cdbd26497dfb47723ed6e0028db7dcd8b08c49487b45984a962f091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 974dc033325ea4e22cf16fe37811fc9d9d1afad162d4e58baf61ec7880523176
MD5 a54dff4119a2f648c447b5fd2678064d
BLAKE2b-256 f4770adfc477420373c9bbb53d530cc3409a3270749266cf2aa630c427a4c776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 130c9ee71edc0ee79ac2072f5ca7c6ea6e007a42df85e30ceda02d2dbfaf7f14
MD5 76e3ed16c80f14eb502fbdb035361359
BLAKE2b-256 8bdcc4a16d75fd2607966abd66bfb80248bda256fae8b78d6420f411b4dfc9d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2df66215cc0693f77dee999313b44d51b7e0a1a322cb5f681e3976067c4ef09f
MD5 5aae95a26bc46c6711469b24b8dc9a28
BLAKE2b-256 c20dcdb096a1a981ecd8917ec23e92f1100af059ccb18aad451d62d90288dc4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e0827212aad5248fd02e8673cc1b800e6fb1681cca2346601a96a20a8cdf238
MD5 fada8e0fc203f5a291b3da5253bd99d8
BLAKE2b-256 34fff9584ed545a862fad5d98b86e46d6948dd99a06d694fa4b5bf60c58266e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev93-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.dev93-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.dev93-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fa91d40fa643f7d959a93c7f40cc3aa4de0db7e4ed1c58ab4e13e13fb898f4c
MD5 257d9a1ff8ff85d1fab7e5973794683e
BLAKE2b-256 407b1e91c02b20e37e55054d444eeb7a67cb0bcd761f771aadeee688ac4e3bf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21251d4cefa5d2ce82caccb217e5bc9ba58fd90ab5362778e35ab58961e034dd
MD5 7a2bf92b176977018da6c7bbc75e8803
BLAKE2b-256 d9c7fee8fbae3b5a51cf59ef78a47ac2c71952d68c36caafeec24b0b694ad87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37c4bc4206e68cfcd0a38299cd30808580686a06a301cce3e271f75f8b8f8657
MD5 77c9442ca92a501cb098bf87bb597afd
BLAKE2b-256 de047e39e3751007fcef1173b032de68f179923b128729d7f0adcf2cd3a21521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 00746fc94883d6e27b66066f409d68c358328a4eb8f2b6430e48bbbf5293ff31
MD5 8c2c19ddc8a895092dd89f761e57db81
BLAKE2b-256 fd84b36cbebddfa24e5d0faac6784eba427d46415443d4dde4b3d78a04e3ac82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1f324118d0a7683c64cf00f010d0c4512934c1d22323105791e7e624bc928f4c
MD5 2122081aa56178f50497a73e8e860f56
BLAKE2b-256 a634bc952031b93898b50913eeaae4a17569021750e661d9efacd6c383065347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 751e2a8f1bbc7c9437882bae272b262466b7364e7a847c35abd61ee21c52ff14
MD5 9cf7491502ebc321fe00c56361b432c7
BLAKE2b-256 cadc535627b7e12fb85d9bb0687f4e43b00a23f996f7dd8b5cde17c51cbe56e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f0e916bbb1e39f35b7dc9f0058ef9e6894a5d8d8e7d10df820d40dbd6cd34cb
MD5 4d261fe52ae658241d1b0149a4aa5882
BLAKE2b-256 3b869ce1f8de2b54c42bd6640601fd5aaffa59d4b20da10a2205595ec2b6c604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0bfaeebe953f78b36b9f818ae5a442cccac228b67a5d6c813da03df5b619cc0b
MD5 49eb65df86a4e3d60ddc80892bb48e4e
BLAKE2b-256 e91c9a8a3d33e336cf0548e3627a61526a6b694c6020ad1f4f6523d7fdc7363e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev93-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.dev93-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.dev93-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca709999fa50ead95f55e7e83d3a75809b65373ce734f50cefba51367949ea36
MD5 6915c9103faa078c023d78bbce163f23
BLAKE2b-256 686adca95de2a05f0885e3a4f21874e10e3135bd8fb9c6134a8d8c1bc5a0b6e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b0565766150a8ded4c807faf827d65ef7eb6ad8237b5df404433a7e68a5d4fb
MD5 45b6fedb26594b438af4e4714a74eedb
BLAKE2b-256 dbf71cbfd04ac3d8ad6e37004208d33ab8098aa3f002df51ac65948ab0b17729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88bc97ffa69aaa399a83f2cc707eb335fc3fa101eb670686a86ec5b5d00fe542
MD5 daf02884243dacbcbd15987a8db8443b
BLAKE2b-256 de09ea2266f82e9a127deffb3468a8cd2e1e84b14100969b844afa4dc79cedeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ff4c88e910519ad65861ee2cec99f3c36c32331e483bbf7604b32da2d3e6274
MD5 77765444a8625ca1c602adfc00621fcc
BLAKE2b-256 cf656dbfa8ba7a8ab1e8fbdae62cf984d61084d0ba33a9999ced791efe6bfb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ad9077dce7a0773bfd1b43e2e949a5a0c396506a2b4d0cf9e1926191b9c3e3e5
MD5 2f3a74918d1554c9fa7d9dcc24a53f07
BLAKE2b-256 5bce9173c79d2ef049d2c8901ebd04eb8d1fc685e0eceb63a37536280156efcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44173b5cef2c4d4a30b0de7138a38e138b6796d43af01d95730c9a40e6005073
MD5 eaa1aecf567c2ae3175b35f14b382c99
BLAKE2b-256 2d597d7462c49b179f40ddd9dacd6d90dea6d2f488db906c2a6a70e67bddc4d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22aa024d7ca6815c6c163f0b8305569cf748ae1e862f6af7e0e1fa41dde65a90
MD5 3d9774df58808f590bae2ab8963cd886
BLAKE2b-256 fc1defd5b719030a5691ec0bbc2342a7301b0d0f78c5c9f66bf53795b425273b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d13793e73f29c4f156fd37e8c98822814e99fbaf6bb591ba903d1bfe4686be
MD5 ca9c0291d05a00c17a0249b86ff502cf
BLAKE2b-256 3d12a94790eea4568af12ad802db1203eaedb90b5be4ef516db5430a360fdde8

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev93-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.dev93-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.dev93-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb712a3700fa23f20d49007ccd38063f492b775862c9b7163cc8389adcb60c7c
MD5 9e17742413ae0a9ababb169b63942151
BLAKE2b-256 67cce0b0347323f1380acb89d4e7fb202449dc02b14c2c89733bc289eae81c3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0ae511fb0146c47a768b364ecd0f7648e4c97354ff37d4d1861539c1aef816e
MD5 c1d2298c664e9aa27111621edcb97d41
BLAKE2b-256 e29b9522a85da828a2d93e1418b626712f60d0d86c3d56c6140f7057299350c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a1699f74ed3aadad0cbbf66f48eb074bc2a3d51916208e7dbc7b73d87418e3d
MD5 96c706b02d4d1019773c699611ff2dca
BLAKE2b-256 3a4c6daf8db92f4227ddc0ffe877f7363fc3b6e7e79c9ae8555fe59b2b0c0925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev93-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc027a159aa95f5ebbcae4baf4e92afd887678766225b829be67720557a0bbb4
MD5 255229ae850d5ff4456a14ed3187a37b
BLAKE2b-256 37ad374fda7cf237f853063e98a8a1bb21dd12488bbe063d784ac7e1c4a8f5d4

See more details on using hashes here.

Provenance

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