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 tests on free-threaded Python builds

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

Uploaded CPython 3.14Windows ARM64

copium-0.1.0a1.dev71-cp314-cp314-win_amd64.whl (69.6 kB view details)

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev71-cp314-cp314-musllinux_1_2_x86_64.whl (449.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev71-cp314-cp314-musllinux_1_2_aarch64.whl (436.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev71-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (454.3 kB view details)

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

copium-0.1.0a1.dev71-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (448.3 kB view details)

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

copium-0.1.0a1.dev71-cp314-cp314-macosx_11_0_arm64.whl (77.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev71-cp314-cp314-macosx_10_15_x86_64.whl (78.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a1.dev71-cp313-cp313-win_arm64.whl (59.5 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a1.dev71-cp313-cp313-win_amd64.whl (66.0 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev71-cp313-cp313-musllinux_1_2_x86_64.whl (458.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev71-cp313-cp313-musllinux_1_2_aarch64.whl (441.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev71-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (455.6 kB view details)

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

copium-0.1.0a1.dev71-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (445.5 kB view details)

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

copium-0.1.0a1.dev71-cp313-cp313-macosx_11_0_arm64.whl (74.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev71-cp313-cp313-macosx_10_13_x86_64.whl (76.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a1.dev71-cp312-cp312-win_arm64.whl (59.1 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a1.dev71-cp312-cp312-win_amd64.whl (65.5 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev71-cp312-cp312-musllinux_1_2_x86_64.whl (452.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev71-cp312-cp312-musllinux_1_2_aarch64.whl (432.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev71-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (450.6 kB view details)

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

copium-0.1.0a1.dev71-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (437.6 kB view details)

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

copium-0.1.0a1.dev71-cp312-cp312-macosx_11_0_arm64.whl (74.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev71-cp312-cp312-macosx_10_13_x86_64.whl (76.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.0a1.dev71-cp311-cp311-win_arm64.whl (58.6 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a1.dev71-cp311-cp311-win_amd64.whl (64.9 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev71-cp311-cp311-musllinux_1_2_x86_64.whl (432.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev71-cp311-cp311-musllinux_1_2_aarch64.whl (426.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev71-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.6 kB view details)

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

copium-0.1.0a1.dev71-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (426.5 kB view details)

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

copium-0.1.0a1.dev71-cp311-cp311-macosx_11_0_arm64.whl (75.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a1.dev71-cp311-cp311-macosx_10_9_x86_64.whl (75.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a1.dev71-cp310-cp310-win_arm64.whl (58.9 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a1.dev71-cp310-cp310-win_amd64.whl (65.2 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev71-cp310-cp310-musllinux_1_2_x86_64.whl (432.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev71-cp310-cp310-musllinux_1_2_aarch64.whl (424.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev71-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (424.0 kB view details)

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

copium-0.1.0a1.dev71-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (423.0 kB view details)

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

copium-0.1.0a1.dev71-cp310-cp310-macosx_11_0_arm64.whl (76.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev71-cp310-cp310-macosx_10_9_x86_64.whl (77.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0786905520089e2a039a351a4752e40fd4ca534d592561fb86ab2e25e89a1e66
MD5 85afd3bc052b76ef59084a3137221d65
BLAKE2b-256 4b6e06e57a6beeb9b7ad2c5bc6c358e1d177a08985ecc339da8c9df17493ea0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 63a0f363d98cbd84a17145680f322b27ff272aa2a58bf23f62096d5b3448a0bb
MD5 56bcb06dcb3132b1608dd0a154c38e8d
BLAKE2b-256 a972a5af716d382930be5b0331ffd4bb44c028a4fbdcf590b049c67cdcd68d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9d343686541632af9486af4fd7e9fb7daf5bebc8eba51ca71abda73aa53f325
MD5 0623b0332deb145d3685eb71da972858
BLAKE2b-256 93131bb4b1c48a945c957e0394cafc3ea97288d39d7ccf95f47a25b56c79deb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d328e90681445837274484f3a0dec3fcfc6f4fc25a06aefc9da53b4243b2ff91
MD5 969c534010206b66a00e0571c264b01c
BLAKE2b-256 f91f5962a946521381093cd0ff59e6da18c9a728dadae5d260f8432753ea7810

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev71-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.dev71-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.dev71-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 507e43f432bf5480f9375a7caabb0b858ceba3d248c539be6978af4101a108bd
MD5 9b3faa1e4952af3df2c9d23970dda1df
BLAKE2b-256 b2d81a1c2649ea3d2efc41bc255f03c9a13434c92d81d5135b9c58fc0a30b885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8518ef93f61fe0b8ccee5c1a5785b6035abc5779bc2e22b9b56a9d98bf41f4a0
MD5 702dea73de843eb8f518dabeb3374733
BLAKE2b-256 4ecbf672e3b7a77557fe8d47847d28f0ec6be7e47691fd44cfa3a5bf34a8861e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a504fc27c5536e8ad5ee352005ab153b232bf1a3887191fe65faf7e7051196d7
MD5 1266027d862c9fc41ee2e375d1cc2dec
BLAKE2b-256 39d5d03394ebaf00fc4b894a9d2481f3f3794e04ff64e7108cfbdbe53902d687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a720fe55bca5a5cac7f9bcde116f103648ce5b4e8f3bc7f654b744fec3a89e33
MD5 73e28bba1e7493324ca94da5e8d80433
BLAKE2b-256 ae39da2d63b793599a5b6824e74ffa9dea2244c388f1d7720685d222378906e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a64bb412b2079744b8c7dbf64241d458b7416694467c42ebeb282003fb2c1166
MD5 7a37d650eba12e8fb960cc390bfdadfa
BLAKE2b-256 f83ade59e69bdfe5c31a026337dc2ca61cc3c4d3b9ac55dcde69f141a5f78318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe9580feaebfa16315de8620ec1ee33ea27c0c9c4f3d2648afd5adac48c95d68
MD5 897e8707d87020302f62d88769431bf9
BLAKE2b-256 8f083f7eaca29d9a100339eb23f7bb6958065f2bb6c68fab438edce203055f28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a1ede318d5f5662c16b7b6219af360382788aba6da1dd1c51184af2fc9ce485
MD5 c38d42a9f7eeff57604df869b0b2fc60
BLAKE2b-256 d7c9a068cd2844de387a93172be3e1dede288e9b7e639db1bc9bf87336f53011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb5895ac9fe1780d5ccf268d95dcaae89dd5daafbfb8b5e81abc22380ce723ac
MD5 22b5265427aa9f73f9e5ed3888b95c7a
BLAKE2b-256 43814c0696667bdbcd5e77a9902a8c9759296c59095d1f92eb4698c3b8d83bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev71-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.dev71-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.dev71-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a7e72e92d23f5e14bcbc4adb2144331c0356588fd03a9e3998d536997511683
MD5 d4ffc470f43412620e0e34cb6ba1fdfe
BLAKE2b-256 064ba697a252275c9c6a87f87a49d4acf3034d7539765f04616adf9da218786d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96d39be90d718977bac631581e2f680c62d7f9a50e522279b0693544a48ab6a4
MD5 ca42289b9eaa61588fa1c7ebaddf985b
BLAKE2b-256 5f4f1bf8c2897178458da2373ca14c82cedcc1c0e6a6ea4a277d1b1538df3585

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22bdd3d3f379f99a7e16f021643f6f221f4ab58a4806ee56a7adbe45f76e4103
MD5 9de33b8da9adcff8362e7fdb33a328bd
BLAKE2b-256 650f005913c70e633a45d03a959e6ca156fea607c32bbdb9fcc39a35d4c6e53e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c2f0d9f2be248a2701736aa065d007af809e34c11a3a927165c00157f6637730
MD5 5c0f1e4eb4eb536ba43fe54e45c473af
BLAKE2b-256 25fcede2c24bea3e1bf296d1338b77aff5eb5db2282d1f4f202ee0959527aa8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a9b684a4861de9cd778f6799cd571206cda1a0faedcb644fb2c743b2d2238250
MD5 6ab63d774111ff69b41e7381fc5d6c46
BLAKE2b-256 a8cad37e7823576a482c5eff4eaa566b3b439d1f9dc08e1726ac103c9fcea372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4130991a00b52bdbfd248b255de41020bbacd90c0b2204f7197c03fbef132ea6
MD5 8b137e0b142a7b0f1d1a4f805c441089
BLAKE2b-256 f5cda4da291c034c1ee71914343869ebc49313b4464bc294dbe4addf906d8d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 784cd71896ffe3422aa02eb781f3a5a09c9aa55f45b2a8647215ef9a1fe295f7
MD5 43c7e5d4abdab45924cf74f0f50078fa
BLAKE2b-256 32e4580f6bf27f63f45d5d9a491c113d7bff4d7c5b8a43181ad3aad271e8e284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cdd1c04422143b34813e161c02aa8bfb87367735c874dbf96580945fea1a786
MD5 436a315b76345d611cbd512484945ad7
BLAKE2b-256 883f016736e88d5cd0cb7ccab4b7b7b4174e297bd1873d436c7ae5ff3910ace9

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev71-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.dev71-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.dev71-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd3019b897fe6745ce1ac4fbd6cb128cda506e5e48e779cfb327d4b516db3dbe
MD5 fa51b63454813b94187f951136821be7
BLAKE2b-256 52ca0e0d543c81e03c36a117d2a04963acc3d5b61638cd654416f72fbebf9f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5457df5da9f66689150fa94ff3142a5075e1ee7a6af487f1a4a8d7f469c614f
MD5 5e7486c165e096e763d197478614fad9
BLAKE2b-256 831ed71fec881b52c7a6f4154ba8844c332ec016d70c27539045eab9524c8c34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4097462e2953b8a1d30b28d5604b7c726af4336f406782c83090f8afbcb5d6e2
MD5 a2d8cf4552394a998c898e89de02ad98
BLAKE2b-256 16325c5fac336c3fa440895361ef6aec6a99e40261cee17fefa7bf4c6edf6322

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ffa0ae0274e4f5f47f94594430781c71a4b7a0979ced3fd771592bb478c0f999
MD5 df5853f269cf3e7cde322fd1091ad658
BLAKE2b-256 d33623a08446638db745e479786e301e283a96f0a51d936ea70237b202819915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a0f98aa3e8b5467b1e389bd10632a060489eda3dee880d4b7f8a35d224fed896
MD5 5bc7d1674d989c72b0f26844bdd21215
BLAKE2b-256 87a32fa4cc49df7d8934920cea2cb3ef41dbe16b04f9608b541aef8ab9bbb740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a7b4a56bba5a7391ccdda360bb3a6a905f9538dd9b4571583131b6124910981
MD5 949cc050d48a00c67498128f1f0df0a2
BLAKE2b-256 05c8efdd0e7d262c66ceed90c169c3a9acc803faccc6d4ec80d6afd836fbc69b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91ed7098c7845486a82f4650f2c0cbf8686d34f9de92c538b170a8b45fe00c91
MD5 95fe6dbddb7aebea35ac55cda26ac962
BLAKE2b-256 dd9d3559533ea06ff80f0cb6a92ce7859c6a88941f9dcfa0a93bf2c787f91927

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06c032308d232e6e5acc26fd79e32d0af6037d6f18ca083cb1748504acbc18f3
MD5 4bd70ac342fba26a1c4a3ea4fa253bcb
BLAKE2b-256 c2748045ddbcca13f00f02df3df4d643af9924e3eb829d5f85d91eaeb81f48c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev71-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.dev71-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.dev71-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 417200febb9cad04da3d6a6a4648ab009e2db6215bae89d107473ea2bc2dda7b
MD5 e07fa6330432d5891674417f492e3794
BLAKE2b-256 b9f0c4980bd1336f2a382aea90bb981ad3752b7ae999d593fc136d2a8c775a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e7325a54411f697bd2c5d3db0647f3d46963ddcf9eab39f11795143e3a801c7
MD5 5a1d5312414d6528c13a5e579011a0df
BLAKE2b-256 ce8345b6bb8c6ae005723ab33718f2b8e552393f2d85ad77ad006e9f4a301704

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 972a3b9fea136c110198587d6cb266d138d7c3c8904f1d9dd79e911c9550cff0
MD5 e16f1bcd76de2e93067203b02a7f1b53
BLAKE2b-256 00407c318193de113e2ce0f247dcbc31a9d0c6611b5645bf23246335caa320c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60bf7e35910daf3273534e94c9082bd27265d6a2bf198e13b84567458ba3edad
MD5 d8448ed833ab4f1ae66cd16e16dcbb71
BLAKE2b-256 9e164b0af439297a7ea5098666ced67513df43d337405939c7d76b18ee0798bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c36e2c63b93cc08da06827dc33013696cdb8db5ae26e4f02d545ea44b40dc5d2
MD5 eef626e5ab9947cf7c093903d361a231
BLAKE2b-256 9c17370123ea66a6d8449ba85f508612dd13f2211213955e5b02ddd9bf90fa43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a1ad46ce9cf58154c1caf70252c9425889ba893c8eda70207ed13d93b2e0c2b4
MD5 df57c67741e91de1010ea08e3a8bac09
BLAKE2b-256 e852bca12d00af095760bb4f56bfc0ff5d19dbd418289598007c84f6f42e8ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f75dda5894ee3c6cb16af240e9e64ebb2e8c648897a0fe6102a7fd70fa6ec7ee
MD5 a22b67ee30a83a24b78573abf512ada6
BLAKE2b-256 9c9d472602880242a0914d993e7b108e90f5563bc47ad078ccae8d85d942920f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f8792e61a8e3a27dd115593647d59b217c7e0bf6a15f0bbb73a5157a6f36385
MD5 4f52b74a0f4f8c594fe6c57ae0584c88
BLAKE2b-256 f8500304cba1a9ee55a0126918e345791a0359d6177c78d7fa8663bf71a2aaa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev71-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.dev71-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.dev71-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97241edd6bb6debc748257e0b5bc58cac7eb0c74048dc9d83bb580dce4e4db03
MD5 8ff2678e776e359ef5623b70d2b6147f
BLAKE2b-256 ec6e6ea295a34d159872422abcfd5ba8921388c3e9bca753e6a9f7f89d7506a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4aa7fdd40a58534aa7285af835f0ffc241aadad3529d29f777f8ca08d538d609
MD5 db53bde3281700ba1ade8ef072e14e48
BLAKE2b-256 4ab5920166b71fc23605ae44a660063524167e41645a5b86ce3e03fc781b1daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0904c64c1231212ef4e026265f3b954c1e6f2845d18af3663686ea3323ca7c00
MD5 5a9f1b3bfdd38732cf70c1b70f659609
BLAKE2b-256 769dbb5b5b8c518880d92a87d4d9c6148091e8a3aa88064ea3446d22fbfc1a55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev71-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a7bc7dfd43d4998f1e7f819094f475be0f5684750273474378f78875b52d00c9
MD5 d7ec8224558e72cb8e9890dd0f8fa157
BLAKE2b-256 e26e6f75ff1099bef4a7404d92ae91ef4dcbe8772f722b4627f503262d66eafd

See more details on using hashes here.

Provenance

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