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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

copium-0.1.0a1.dev77-cp314-cp314-musllinux_1_2_x86_64.whl (488.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev77-cp314-cp314-musllinux_1_2_aarch64.whl (476.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev77-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (489.2 kB view details)

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

copium-0.1.0a1.dev77-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (487.0 kB view details)

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

copium-0.1.0a1.dev77-cp314-cp314-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.0a1.dev77-cp314-cp314-macosx_10_15_x86_64.whl (82.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.0a1.dev77-cp313-cp313-win_arm64.whl (63.3 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a1.dev77-cp313-cp313-win_amd64.whl (70.5 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev77-cp313-cp313-musllinux_1_2_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev77-cp313-cp313-musllinux_1_2_aarch64.whl (472.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev77-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.0 kB view details)

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

copium-0.1.0a1.dev77-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (478.8 kB view details)

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

copium-0.1.0a1.dev77-cp313-cp313-macosx_11_0_arm64.whl (80.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.0a1.dev77-cp313-cp313-macosx_10_13_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.0a1.dev77-cp312-cp312-win_arm64.whl (62.8 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a1.dev77-cp312-cp312-win_amd64.whl (69.9 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.0a1.dev77-cp312-cp312-musllinux_1_2_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev77-cp312-cp312-musllinux_1_2_aarch64.whl (469.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev77-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (487.9 kB view details)

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

copium-0.1.0a1.dev77-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (474.4 kB view details)

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

copium-0.1.0a1.dev77-cp312-cp312-macosx_11_0_arm64.whl (79.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.0a1.dev77-cp312-cp312-macosx_10_13_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.0a1.dev77-cp311-cp311-win_arm64.whl (62.3 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.0a1.dev77-cp311-cp311-win_amd64.whl (69.2 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev77-cp311-cp311-musllinux_1_2_x86_64.whl (474.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev77-cp311-cp311-musllinux_1_2_aarch64.whl (462.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev77-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (467.2 kB view details)

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

copium-0.1.0a1.dev77-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (463.6 kB view details)

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

copium-0.1.0a1.dev77-cp311-cp311-macosx_11_0_arm64.whl (79.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.0a1.dev77-cp311-cp311-macosx_10_9_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a1.dev77-cp310-cp310-win_arm64.whl (62.7 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.0a1.dev77-cp310-cp310-win_amd64.whl (69.4 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.0a1.dev77-cp310-cp310-musllinux_1_2_x86_64.whl (468.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev77-cp310-cp310-musllinux_1_2_aarch64.whl (461.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev77-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (462.1 kB view details)

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

copium-0.1.0a1.dev77-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.1 kB view details)

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

copium-0.1.0a1.dev77-cp310-cp310-macosx_11_0_arm64.whl (80.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.0a1.dev77-cp310-cp310-macosx_10_9_x86_64.whl (81.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fc8ff7ed1725f572a97239403d097a29d835230e55ce675ffc6d719cc86c3b62
MD5 bd58e7b21cc63509b7dd1210d4f095d9
BLAKE2b-256 80968b859f6ee019104c91a4752f0c11895e4c626e67a1c7557e16d9040365b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 97e54f16722ff4a635a1ca5ac120c0d53abd57471f9332b30601c04957c0d4ce
MD5 b78101dc406d771cbe6f7c5af56404bb
BLAKE2b-256 cbb75adc9ca3fc5a7f9bb0712a14483df8506a5e8e0b065bc79f78fbdb1722c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bca9d74a89f88f09b0a7366705d239eb49d75baf961508b6ba98a39f7cacf37
MD5 224c01fdad4988dda45a4d9cd17dfcd5
BLAKE2b-256 a1719fe60d9ea38842925d95619cafe88490d0ece8732b887aea3ccef158d724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3374c2581f023ddad892a509a68cfdd5d340662dcb44dbadac13c73c7355228d
MD5 65f5057527e0361f5666af8fed7c5650
BLAKE2b-256 b10bb7fd5931bf537c5d7f4375be51d924353d5490c92a862fe55e69983d66dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev77-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.dev77-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.dev77-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81ba8f4a709014ae44101ae90af63374fe64a12fceda53b74f00d27dd56740d1
MD5 d5fa24132ed1d59000a8a31ceda6e383
BLAKE2b-256 8c8c04ef40ccb798b0bb4ed7146b3e399521bdff108def2b129dd61d3cdae79f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23effb938678909961a075f9786d2e45f5f149e13472593cf8d6f9d49ba50467
MD5 59c50cf345392ee6c0d756ef6d7e05a4
BLAKE2b-256 74bb63341b4a496053be0926f4c00d33187aed1c58a100e7c643def3b9c7d53b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b3a29c5ea18932b7419556cbfe76035ca85ffc598ec0a65c19a616a91c1190e
MD5 45472516e72b95f217646cfe45c07d81
BLAKE2b-256 bf76bf47b95d2834bea1961eedaad285df14339389eb9d10423f752cf8fd708a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f8471288daeded010b28aa120f9e7181e1c7eaf87ffc416ece069b23aab00c34
MD5 e591d5427515dbcc5b4113832ef1d60d
BLAKE2b-256 d1481d614da86b71cd8265507bbbeaa4656700eda71c9c3afe4e43ebe8d47b1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 20c6624626acc8217f3788ba91f4edaa714afc0192a57a52a4d065307030d42a
MD5 fd687d9356686c4476dcf9ead75640e1
BLAKE2b-256 d96f32329cf0b9d480c38c9bed392194a210259bcb1051d33645018cb8536a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d9f0126695a3a3d8689f6b511bb3ba50e025f6d30fc3abe2362b5d0a6f867b9f
MD5 142e188db204f878885fb0bf32379b0c
BLAKE2b-256 38fb64c0bb440ec8733adc472e089bb6572e3cd3a37fad1be64a6aaf3c194a6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6791e2c1e85ed33f8d4e60d2e70e2b2660679fd2a5c012bf1c71e24caaa2b81a
MD5 71f178b1e7ef3d7e9cd5011d67051939
BLAKE2b-256 2604522c6b7ff0a596276d96c355fb37d571963a8f73d2eb6bbc3ef4b5b55fd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d38931d690ff628518ec964fce1a92357eab818783eb7d23cef8abdffc71882d
MD5 534ac0c8d93ba838712dbd387f5a90b7
BLAKE2b-256 d7f7828d5a04998ca9584ece1ed69f7dc96598faf31394ffac93a625cff6a691

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev77-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.dev77-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.dev77-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a532572dafc007cd593bd2552a326912c270015885dd10223db8a2880ad0d655
MD5 2ee927162cef06c0f977827086c0b3cd
BLAKE2b-256 187449e652a819767712983c0a79a53cc86c1d4dc79d14c15b484c573453daed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fc128a6c15dc8af42423a8769081f1043fabdba0ef09035348041acabc51ee3
MD5 026dd65d8b45da2877ad81fe45a341dd
BLAKE2b-256 d848869e1ab4ca18565944c7f76b8d367481a7307c7db3d8d99ab417c50e036d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ee279d411cc14a6ec38acbdbb1a3f8244561e0ce57cceaaf518984bc2f5840e
MD5 64c424fc1872253ef4399b4b696101c4
BLAKE2b-256 7ee5b3d9421d128f0a1a8e28da842665d77a74c9bc4eb43f582eb2b8b8b386eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 271917dd0ce480d278c9e69d975dc085902babf9c81964a46e0aa966fe5081fa
MD5 2162a3139ae805095fc31ad06bf3edf2
BLAKE2b-256 6cd85ffb9ec6c5e8ebac6565d33e77bb5b63e7bcd531181360ab66db97d08f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b7bfd3c915f8d2931538ac07c7c4cf28ff5af202e701910f555aee380c72deb3
MD5 7862485f232f228139ef75474d32f571
BLAKE2b-256 63e15bad805dcb724dd104a8fbae9f7e69be50abef1bd5d4184a70d29113bcde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 857ac9ae9f6117a96b01427134b243d1e307215bb947d4eb80bb63ed04da1c5e
MD5 09823c6edb8a96270e78c34f9ac39a23
BLAKE2b-256 817daed8b2024ceef076c6877d1d3473242061053719fe534b31afb1c49b2003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32b0f2f6515e6a101801cc2f265be8fc511b9b066548db0ed3ded547a2018960
MD5 52182c4dff56662df1a7d6ab4d043534
BLAKE2b-256 ed9d399065462e8317a1fb2fe323012dc6447af9ec89f8be0858b22bc5c77edb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97aed580449d99c626cb8846eff9d62551365426a77527b8a3201a190ab1709c
MD5 9c8f896707e6f42ef8ece540657fe0c6
BLAKE2b-256 303a3af83664bc60eb96d90366e56ac278bb74191a3a2767215963bac3e1a991

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev77-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.dev77-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.dev77-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9067896628a1a6da94b24decf06a211b4b4f87d18d164c3227af7007791e1d5b
MD5 2ebdb92b2ea1934ccbe318d098a84d03
BLAKE2b-256 dbe6d54f6f730eaafbc4c0288c34e95599078017db1eef56ee974f2a3b5d53dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61ac586138b7e1e321e1b12a1c4d555e026759674a15c34e5aa11048f3291ac1
MD5 f31b4784eeffd9e32c33cc7b12ee6e91
BLAKE2b-256 7da378049a92246df608dd78da5a5734b9a6f088d455c50024c183c1f1f3ae99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3e1298f344bdb2a3d546685602e6de8704ae1cea836da6e0d0d17ed4983325a
MD5 609ec0ea84bc2e7360e52555144cd00f
BLAKE2b-256 e5679bdceee55e69fd283d4b5365a48aee1fc47df937dfce49b8f39171d2ef3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0fa5b23063328a2f4f200f416b174ff201f16b8cb9427b1923cd6921a98e4735
MD5 01519a0cc56c75749d68b688dd8803b2
BLAKE2b-256 68e80e0f060ddd9cf8563a46d7ed7f6e76353d235b3348551b952f75a3aa8a89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 567ec6dbc2804bcc10122cc9ff5d2ca9fabe3a8c4fe1c11b6ceae1c214e64c25
MD5 072950c919479af15134471bf6da06ce
BLAKE2b-256 3dccc1f82bcde95b1fe792efbbc4aee7e8b8546982e2c06f47344068b76de019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5b0054f27d138249b00bdbb3f119808ae32bf113189092413b4713b36781977
MD5 267f391699aa56f39c87733156294254
BLAKE2b-256 b56691349e1ed33239f3da299fbac2f68fa92ee6159e321c5a8f2541b6aa9073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7042d2f9f35a9fe3b882d1e1bbdc015d2170ac4e0381c8ea6ab9fccc2c80d8cf
MD5 c628fc6c09aff8e6e785a921985555e3
BLAKE2b-256 0e55b4bdecc2be458cf30f3df2c5cce21ac8d1d9e2bbe38075ccc02482b8d20b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd3bde61ffe2c1e6858f91a733cca6adb7d3747bc7ffee45db532ed6f2dd3705
MD5 821cc8870735116ea2d0e89b0e59e524
BLAKE2b-256 a11b23c54262e98ae916044fdb8416ed750a47f6416e0e915460ebdd8c3c7186

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev77-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.dev77-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.dev77-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e458bba6a7f4c6133c1efebea806123f9f7b983c79979fa519cfa306fdc797dd
MD5 1077d3baaae3be4675133684658b2ba2
BLAKE2b-256 cbd47d9737a6506a900e2142ecc7f5f7715df8f602f244814800fb8c7f7dfc50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c89f6b457cf84714dc733b3e1157b042d21c39e547246b3a7fe78b249bcdba8f
MD5 7631a1f90fcb232aeaf1c9d6ec93f1aa
BLAKE2b-256 a296810881aeab174217e7c7225f6a408e0f1d03aa8aeaf720112c18bb4ef081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce10c10b0f1c2b50fcf7b99f39d55771616ac84005a4ef8beca215f554742e06
MD5 6a0b827fb983539e942828d32782c712
BLAKE2b-256 ae3c4887c424b95aa9db949d4810496d1abd1b74f446c25c8c5737f59ba2dbd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bf3b1e37b55db443e899151b45c64b216fb00952378cba677bcbca91787d965c
MD5 fe8b29b54d563a62a56eaec626742a58
BLAKE2b-256 4d75933934201500955985fa079e48bf58cfd4582a5dc2a372fcc43f629ac2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6fa69ff1ab1211e445f785d9a7eb4f7d32b969c77327da75a3cef6e77d52747e
MD5 64966433a629377f12d02f26e18f0621
BLAKE2b-256 aa3693932de0c5b35473cbdf5f6df1173e44212d30bb1a9a87db0d4e20311069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6acb34cf0b5b060db5ddd8719e750893cd447b3c54ba1456197c3b5983a34ee8
MD5 e97321d4a532050485698663598d3d73
BLAKE2b-256 0d45a6a4de5d3ca5b8c8fb9fdccb90f63456a7c0844475c68988f696f5068df1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbfbc582b013046a1d6cd95d2771289d96b4b838c8055cf665a6199c1d966b4c
MD5 acc0a14ca41874702a6abc416446735f
BLAKE2b-256 50ba60440619da7ca72cd253299ed07898d4f68b88b0ac64ff23eb14b3b91bb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bd608114489cb17b8432fd55c8f1645d0a804b7a47790610f0a9adf1fce3753
MD5 e3fa840209e6ecad209281448ea4c529
BLAKE2b-256 588dc21c7a47af7afe18827b3897a604642fa7bca6e0bd64aade4e1362b9125d

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev77-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.dev77-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.dev77-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a39820cbedd4dad536e9834842e922ec3d2fff9ed9f621f2aaf6f7abe58ee2e4
MD5 db54e24972521ed7fd01575b084d2620
BLAKE2b-256 80158b29341a46195289c398ccf43a6fff21c3298822f1582dc2aff0cf87253c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 228f6dc3a06371522195df2a6cc45f4c3f82a23def0bfd1e0fd7bc48fc9b97ae
MD5 7d96266cae2d0a4bb11b3fdf13402c2e
BLAKE2b-256 e4a6287732371c8702516a3d860c69fd33501203a7eda59be30846abc82d0d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 986365da83fbb713ea23ce197eca10b126040f4c7fba7843ffe86ef80f873247
MD5 2c9a22e374e0fa15c89a5f58ed2c2e70
BLAKE2b-256 36bebe801413a4557ff3c9576d9e2cb665d5c920dadf96c1eedf4e0c8721dd0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev77-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f32cd68dc63071886fb3d01764e0436a018feff977abd9e4398349fc6fc1e27
MD5 635fdc9f86c154e78b830be706e7d507
BLAKE2b-256 44b7b9e05ed053117cdd40824215de8739c8b1acf832b8523bac8cc79aee1a59

See more details on using hashes here.

Provenance

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