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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev113-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.dev113-cp314-cp314-musllinux_1_2_aarch64.whl (491.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev113-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.dev113-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.dev113-cp314-cp314-macosx_11_0_arm64.whl (87.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev113-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.dev113-cp313-cp313-win_arm64.whl (63.1 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev113-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.dev113-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.dev113-cp313-cp313-macosx_11_0_arm64.whl (84.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev113-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.dev113-cp312-cp312-win_arm64.whl (62.6 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev113-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.dev113-cp312-cp312-musllinux_1_2_aarch64.whl (475.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev113-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.dev113-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.dev113-cp312-cp312-macosx_11_0_arm64.whl (84.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev113-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.dev113-cp311-cp311-win_arm64.whl (62.6 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev113-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.dev113-cp311-cp311-musllinux_1_2_aarch64.whl (466.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev113-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.dev113-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.dev113-cp311-cp311-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev113-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.dev113-cp310-cp310-musllinux_1_2_aarch64.whl (467.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev113-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.dev113-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.dev113-cp310-cp310-macosx_11_0_arm64.whl (85.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev113-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.dev113-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 47be9b7631ff0f1ae1c078f585f12608382be08029b276022389b81b20b172fb
MD5 74a4b8578e30f5f861e76301c4a66cc2
BLAKE2b-256 f230c7a747e409b06dad9afaaa7d9628feb2952c1a63f1c5d25a26eb91a7b20f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e329d80d7675c5624f687d189e4d12b72e0faac874be9e8148d3d7cba8ad602
MD5 9fffda036f280ab5936d37f457dc27a9
BLAKE2b-256 f060d789b1e8f8415b0fecfa6e8eb82c6c12bb2067e258842714b2ed65865173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c97192d5b57b2d611f4fc31f3cbcaa4a1a0a6e5c73fbe951cad0423df38eea94
MD5 83bc2e60984b124a922dc02d80b4b1f4
BLAKE2b-256 630acd3bceb0086fc12784e5af79cd8dd4addb08949cde80c8b11470829ddb02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45aec922ae9e1b94634cfc2a3d70bd22c396b8c6585a325175336514fd49d0eb
MD5 e2759d4c0bd86ffa1df93ace6aeba4af
BLAKE2b-256 5e0da226a37073f417ccf37767d26126f5f1416c0650b91a4cc4edb1ab04d11f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev113-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.dev113-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.dev113-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b841f331442bc0375b49ccc33efcc103c5426864257dd4c3a2561c72aaba92d2
MD5 b37556dc6eede4473f20b29b4f93d3f5
BLAKE2b-256 fcb1e1bc8c7a81bfd5fbb85168e0a97bb9a1a91ef4c06503314cb92df310f598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9dabfe7233830c3c8e7bc3873be1a56818acbac14aaa441f684c7e0b351c016a
MD5 95070362db7833325e5898b042028b48
BLAKE2b-256 685d3dc15e9aa8765a87fe55ba4fbfd42eb54826c698cfa705383db6daaf07ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99dc4e923f3668cbd16f45323c2349e257d47de5ed750c959f3444e400d7f31d
MD5 24523e36f6a5d745246f2ddda667586c
BLAKE2b-256 6bad16793702b9bdeb61fdf9f46eeea56d00f5a7e65ae6653d03ed997e3d2265

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9001291d9672ab0338b0ebe8b67e6a8c3179213b5c655ad509fb6fbd7a893a58
MD5 11feabbd5cf5bcba43e93686eae382c8
BLAKE2b-256 e0d0d5ddfaccf5542a2ccc500869b0386b9df58bc75c22ba8afd27de29a26b9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e6b1b3c73cebd45b8a46d7c257b852ef6ace72c89aa04032fd20f62550eee516
MD5 9f858a0ab3fefea56c6f1af252ed96c7
BLAKE2b-256 2349848d282d0888d5bbc04c231c809f7f9ca9b3f0e788c7a76de7f075573a56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 239945d311dc8dd8432e3e5518cb722b4cbf1ab49100795ad04e738f82556688
MD5 a4f879cf0a3070f3f3ceb0bba605f2bf
BLAKE2b-256 6d36353e2786e1a68bbdf3cd4814fc3f5e6108a6b3dfc5debb22a2b7b64a8fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16be83b5115027d0dfbb46e5c3137c69189c254fee1f074274e4cb3046667800
MD5 0fa16dadd7809d02f49d82c2123964b1
BLAKE2b-256 5fe2e8bbe3b047424f49251ce465a338c0e35e55f67349b31aba6293a4dfca83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9bc5228eda00b3fd58ea41a3a656bc689ae3943fb3605cf90e40991e7a90505
MD5 6f5fa9374fa6c1abebf4a355d9af77a2
BLAKE2b-256 784862c0a5badb91e8c0e8206cb1f36cedc39be58577c11975800a3ad69d0659

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev113-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.dev113-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.dev113-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c703c0ada9af4710f6bd5ca277fc0d718132044c7e40c898d4ee8a0df3f49961
MD5 2c406ddb8b267d84c750273ba6e1ee31
BLAKE2b-256 0af6e98deaca1e428f9aa03af8bb2a52e69c8eb3099817add1819a13e1f40177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f71a055174828a57139fdaaf742534c0ddf5e7905fcd8ff0d76c9244cd873ca
MD5 1862e6a84c23cb4ffe44e7f445042d52
BLAKE2b-256 87424eca38d7ec1d277499464f7438410394d71b2928b772ba71721ff458397b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7a6b94976cca7a71cb16185f9ddc56090435333d58bd0fac771d3ff7ac8f018
MD5 ba2091afb0cb739a7904728e82edfd18
BLAKE2b-256 80096b744e8c78ac92a0a93d65df8d0172797604a77eee6f12c4ccf84204ed62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29278700d51e8d8e377021bbf4650a81b73039e2ab470438e4b10c12784004c7
MD5 db1448ec2a3466c3d313515f7d516efb
BLAKE2b-256 4cd9a87644d77fddef94e07c9767961b66404088067c2c620955c7b9841bdcd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5acf7eb04f8e0c4ce9dc636dfa7db8bba8c38d27f2287df75d7b917054dab523
MD5 61f922296696cc675a50c0ffdf2254f0
BLAKE2b-256 5e531e44aa9463cd5bbc05c1bb952895fa196614db5aa589f2d1272d76cb5c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25c7a910f7cc819a0295b63bfd261e00962521c66d65274aedd311bf5237d427
MD5 06982ccaeee141340437c89f27ded0f7
BLAKE2b-256 87ef6c34e2ca3e3ac67448ed01bc7d2cb5f4454f98a4598aa51a97c76bc461b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fead998fcdff09916a177fb44cab00006f77f71fc03cd114a85108b6a2ec8a4
MD5 4d98bf145b47f56ecec4de9df63572e2
BLAKE2b-256 507feddade048d8ff1f34b68b5f4a2c9384634766110a736303419ea8b4e66c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 782b4bb8c02f018ce1a4de09e30e0f7360eeaf944c0d233736ddaf0fbc4ebfe6
MD5 85713c764826cd85f39ae652d7d2bc69
BLAKE2b-256 940324a6d4202ef7ba8bcfdf19822124ad0cf802850575660cc643c36e59f8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev113-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.dev113-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.dev113-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dc93385fc7e95be3e9cf5735d9fe348347167e661aecfffa9034ee1ee2200be
MD5 fda0535902233907379717e2c43105f0
BLAKE2b-256 d5e608775f0d912a94ae379e8d718cf7f46c63c206c309ad5e062cd3b38adef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4aa942ec7c4517c5421ee58e686c905163cb3ebae1edf39d0e335a43cb8cb97
MD5 5d104f4a24f57b9b7e4d17c554f517c9
BLAKE2b-256 cecad5777315fa8a055b3a6f498a35fd766654f8e935ab3defa6a70ce10e3bc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 665770b2f31a894f45893bcce2cbac0af7f98bc69f76b5fc43a289820e37ca0f
MD5 86d03cf8e08e4880415c59c75675f06c
BLAKE2b-256 e1becaf1a0212bf59cecea5f207d0e0bbbbb91c9cd7be054d9ea019df9e0e404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d278e0ab7d03263e927e3d3e83fb372b9826c54292092a08aff33c2fcf31ab9c
MD5 1c640893da8f8a06bec76b32da3da409
BLAKE2b-256 7ef2e820072c8d3e596bdc8a0780c6e62b0599183edf8b907d56d662e9f1837f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3f7c0d09dd7c753afaf14917558f7374cda026c99052f5935de1768b5456d156
MD5 3c0de215da7c2af3a0a9df4f7ce5fa08
BLAKE2b-256 7086ac710f3d4ff37931184b20c5913431f513f292da0bb80919078f93431b6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e404062acff77f6a54aaf5793e752bdbc29cb01933103f3e8d0db2e562562b9f
MD5 60629355ac36b973c9b7e38be1fa7811
BLAKE2b-256 008ab718cc4d0415c3df3081267775212abc68c934d1936707504689cfd1d0c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebeef179388ace9fcead345f17ef3da70289af79cfca0dd799a32a762cb8abb5
MD5 5fe0a56b73fd171c69537b398a31cacc
BLAKE2b-256 a56980d5b5c67837f6c1364570192ec5179f2e29484ca0983de107c34cfcf7d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0ca2af5bacdcd1cd62f48a6acdf32d876596314f48240f2d1d032bc60081f5b
MD5 fd42055199ce10aa04f3a466e859d0ea
BLAKE2b-256 a552be086c8a71642b31a03c7aba4e4cd0fffaf14d1b54cf13fd19c5fe037bce

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev113-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.dev113-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.dev113-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3722b00c5ee28ba822585042b38f84d6c3ba24fe2892165f69c639a6fc4a945c
MD5 23ecb1dc51f5423acb5f4c0a64919400
BLAKE2b-256 874b5e5a97f3a26e3c9e4bf0a21b9f271f6b452f47c9916eb196db0260ee9d27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 114f1a18afc4a05e201a922a8871736052e28768242150e55790cce2a1352f7b
MD5 106a25c5842b5efe3ea4c22995aadd14
BLAKE2b-256 8727d395ed61788b2a75f00c5f560fa74da679df29ddce7ac8331bd74cb13c4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc5bdf7f63eba6999373e089de43b7cfe6bbcb9cb67db0ad8976a201c464114c
MD5 166d42d6207eb1eb5b370eb362c63c41
BLAKE2b-256 b464a10d2047473df58089e34ec9f17b9b7e05151c647c5b43ab372195098778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b49718e647cd1054d9e9cdc9776ad7c62acf79572dce83f2127f580549c7057d
MD5 eee5921d0d65c8b9b9f5609339c1e9fc
BLAKE2b-256 fef7633dca7ffd01742195d3f214efbe0ab14199e94271e985fad754279ab9ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 724d63b1a112badd494878b8a29c58eda9da4ca245c807f3d213fdbd8d66f142
MD5 65b419cedbf8d1fb1693677122fbdb2f
BLAKE2b-256 6f896b7cd34a01ed79225a75fd4bbef0507e3de80829ad3d48cb867ff39d5c6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6de50143242ef3024ca795239604e5bfde91103e982e9e15ab5bd49a89de22c9
MD5 0ed30977aafb313b2592edea4e1edadd
BLAKE2b-256 b5a8ac8a8653f76ecf8a76794679c1813b9d49147f4e6ea196832553e600f593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cf9768207eebef36c0c2f7a82c433a677b1e008661f2b26cd14e7bef6525169
MD5 3833b0cc4f21ab726534978f5d5b0da7
BLAKE2b-256 f34841835b29dc8263ad215fc7b65cfe95c3ab430e7e79d1cd23737300d780f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d19237287758cd377150411fe2e6a73681e5ae0019c64dd4c995d2c5d60f509
MD5 e982627ee64589d55b3cffc9fc6a4881
BLAKE2b-256 90717cd783b82825b1f9b9dc5c17d4ab942c1de143fcb3bc9c0294633d7492de

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev113-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.dev113-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.dev113-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fcdb8f9018c44ba1a2c54276232b7e43de75acf4ad482cd9be9d532c4bc7132
MD5 95133263e42c20d95555d224ec038ce5
BLAKE2b-256 cf37d5764a0e66abe2c212a7898eef4e0f9abe10349905b88b72d47aa5707485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80c8f3dd7158814f4408051e894d02bd6edce734387300893df67c41ae2e2244
MD5 f33c433723933fa1450d9832b2ebfba3
BLAKE2b-256 afa57a275b9fe9494f4d9a10074fbda53dbaef7073f94c223fef51d730950e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2221d2ccde240958cf46cae20a08104e301b001f43d79d1f83ae0df2ba10a637
MD5 d28782dfe337184ced7c645d69105600
BLAKE2b-256 a1a47a3c9587e7e071fbe4c8d57fce095a3bc9e06ba8902cfc701cab420a6d71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev113-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f57b3bb2d1eed06a759efc3c95995fa8930bd600968eb04fe33b97ce762b47c
MD5 c7403bc1054a4cda6488db7b3643d1ca
BLAKE2b-256 39b330a3f3dbcd9266431e9def00333e10b2ac20bd5aa03a609c4274093dc741

See more details on using hashes here.

Provenance

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