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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d7dddd8a5844b5088bf8c059b874e4ab9bd8f23a7a2cd1dfea4501d674e73c37
MD5 891464812f7ce8950bc0f3478b6040e3
BLAKE2b-256 281c4396c01138891e2b5b5da7af6379253a9c620eebe05e5322f18d2e0b62e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 de242d77a389d5a8b159d3f27de15fc3fa381966df13cdf04f4207d210b9bea9
MD5 2136935574d29fe339168a609b9cb2ba
BLAKE2b-256 6ebea5eb5396d094216cdc376a9160cd948058f4723e0ca7d4852b1074caf7fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cf713e5c7e946c64a5cc717ff604d94462e5187b5bfe15360165f6efd448856
MD5 d927fa3e3957e2b5634dbdb3bf4b6926
BLAKE2b-256 5a7b9aa151a61846f4195968b8b20544448b99b3a3306ed76f48d30553cc69c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7239850e69e49937cc4a3ea63335e8e11c5716d6a44d958663553cf110d78b25
MD5 f8a8fa1c03c8dfe1ee4c54288cfe0d44
BLAKE2b-256 d19973d16c08cf61109150f1ced64dcc6379d6d0fbf78f4e374bd811c7f91534

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev107-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.dev107-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.dev107-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be2902ab72c05ef90d4aead3bd4b7892d2c221c8a897ec81d2c557963cfe56da
MD5 b63c9d8d31f60f3cc4847df84786a819
BLAKE2b-256 4d7bc8fd065ba6acb21298391222feb39b98c84be2b759a27ffbc0437b7f8770

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67550569ee43d3e5ede03849e2e459f5d2d41a08065826360d445deb0da38597
MD5 a240a396c6739fc381be49b4a1b46f56
BLAKE2b-256 79aba78745ecd96276511d6f0a2475ada040a5cb34980612cfe54fc49ca6d99c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f653264f5e06b92533aaf25ec4c1cee4dd71e62dd37bd6ba1dc01ab48ac4fccb
MD5 8e48bc7bd745597aebbdfaa76aee39a5
BLAKE2b-256 e9f3ad5302d40e81e09d4d5273c37fb40a92ed65e0981a775063f35dea9fc0f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4909950710416ab6f4bae13bfbbcc4c6ae4851804441d46c01dd83707a9317f2
MD5 cac02c8ecc592f62001a46ed0aacd9cb
BLAKE2b-256 bab167c49d4028edbed2867438a3269dc8cb2a1fff76da5f05e30e750c59e6c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fd93bd56b48ee39bb6b910384d77c853b7b4f45b8bafe2c2e7d3f50d7804a275
MD5 3e6e8d2683bd445e44e845d69f735ce0
BLAKE2b-256 a43f5f0467a7a4a7e5d7bd36baf3d0bb21a5b6c81a54b8f33992886a046ce45d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 855a4a7e310bd9f2ca06e878c65d53296f71d129e44eda9333ed550d60a7814b
MD5 993dc9726b614f2409d6874abbe6b612
BLAKE2b-256 2980a5608f5d5b34e44d649bbfc88b8ac613fdd9e5470923e012190bc99668aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a672ef00066edc05f6c4c33c146188e00b0497bb21a7f6113f05e660d75326c8
MD5 14fb8518d985d4b80e26321ce325d2d7
BLAKE2b-256 b12e609b563e0d9d7833f95b857607031f6497ef6c93862e9f6b30bd066fdb64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 119af204f4b0e22bf7d68bd09d1b8476ae6fdf8ef828b992a9834c9e8656fb37
MD5 b4b9ed6f2bdf67cdf1f99fb1c62e1587
BLAKE2b-256 9c4233146bd77b21b7e82ca282d77b1ae4c248bac16195920605ccd5b878c9ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev107-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.dev107-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.dev107-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92eafe74c4ae267d6b4e35f4fab70ffccfaded94580d3895681c4af230d3016e
MD5 a0e1adbd116e03eb00a80726d69d880e
BLAKE2b-256 b179adedfa3f9b10e955442225061efbec9ec0bc7f8d4c96dc9a6b50477f570e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4fa0fd9edf2bc17d6d84b1fbcf4dec6a3d34051760358ad1778cff864e67374
MD5 d83957d3dbef6a2a64a82f473296f34d
BLAKE2b-256 5cc7b3cd1c56714e3ecf07fe87712e04f4116d30a1326c591136056b6f0027f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d404072fdbb69be21fd925bb0c20b15a24b8d0ed5360272e6fecd607e115d80
MD5 accc51545bd5ce26e3c6086bc35f185c
BLAKE2b-256 f936fa6f996c4cc776dffdaed635878005346ca3b31d4ae814e460db61058372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4d904687f74af6a2e24a4bf2ce5a83807136319295f157af9633133d98bc190
MD5 56e60e369dc3dca134bf095399a5e0e8
BLAKE2b-256 c923b8a5da3a180cc396edb78af79b49c53923ac75978f2daf41110ccff58e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2726d65450c014cef796826dcd43826968c78c19fc7b47cf691acdddeff3db27
MD5 1b5f1484b4ab96d16f933e9237ae3d75
BLAKE2b-256 193f768beba242b937e5de5619e2dea3a36cf1cc5145add162ac5feaa4bc9fb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22166fe9eb9490fecb17eaf29d4b79c27dde566e0ac70a7451b20f01fad54e0b
MD5 fff8b0723e2c273fa113eccad914ef1a
BLAKE2b-256 25bef9bf9dbb90fbe64b1d90073c1ab8ebe56f85d3966a112e206a61c27aa5bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08194ae94aec69d3c8145a48f6950a1b32d3437ed87b2d3321c91fddb943836e
MD5 e1e957ec626b339151773970821c72a9
BLAKE2b-256 158a26239c53f7207f958921974d3bc4c4e93e9c18b0da11b3ef506d6de00c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b048e09d3a5c85ea780d66ae262c3321130b949762b144432a3258bedceccdf
MD5 9cdd4cea9133795c6b6c4df8f39baa76
BLAKE2b-256 bb79dd464f9ce9d7053dadd7e7fc7bdd9c65267aaf7f8a09daf306bfda08378c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev107-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.dev107-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.dev107-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dce4821eabe856e4d12eae0a23b05de916e09d2b0c5628ce48392582505ce686
MD5 a0ec1d5d50d248e3ac0f896e4cc59894
BLAKE2b-256 18dfe623e6734c9f7a1e9667f44702503ddecbfbfd1a9de9702426644692fb3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96cad82813c6692b4ae4f3b59acd72549132f3da5b423632594abd56fce1a91c
MD5 782f7bb9c5df75ea04c5880af6d1e687
BLAKE2b-256 492632696e4f98c5b18ad62036a5e64c516fa4b6d4efea3e3c76c9e0f20cdd0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2897df6367e472a99c5a933f639730c8c9be71a2bde7e3e0cf04df001d81617b
MD5 c6e17f078ad2df920581a53c1ee83eac
BLAKE2b-256 8ae5a84fcfe38cfecca214c6bf09b1d7ead9a462d748bb73a75eddfc9c6e09fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 470c1548ead1a45992afb9bbf03f850eec91f6f6c32da06e1748ad6394b30b37
MD5 80fcb657a86a1d0c23e8592f6f537c10
BLAKE2b-256 b8970408fe6e1b07b678202462d8bec0a5a20b7b4fa662ab0a9a44ea1e5607ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3942649c939f1780b9bf7cc4c50f0c38337a00df2d186337a181f95e4f712db0
MD5 8d83affc06bac2923fdc2e449ccb3d62
BLAKE2b-256 9b11dc75fda86915edb24074fff58f211a5a7168179094e347c8de7ab51a6855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d1a0c48608710abce90f6d3e71a3840a038235a6d7ec838eab84d3bb847b6ea
MD5 8001d2aceb3f9d3ff0a9cb493910ba97
BLAKE2b-256 b3a783bece85146c3fc359419ec5ecf1b4d69c8e87725679c0dd51dde5f82498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66284b42f8faa02aa5d9d24d7367d27ad7b462597bd1878823fced2fcf0eaa3c
MD5 3e68aab677b86495ce2f5b1de0f9e2b2
BLAKE2b-256 8cded9f3b806a7b6fd953ee9566b296e13bdec6540397c055f6db1de6c594f94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b476026200fb0218459301400162f55bf56464d464267af6ac47ef8f4bfaca57
MD5 79401b023f5b9d13d578c98cd5e97905
BLAKE2b-256 3b3daf0a9e4c2889ab4ee12b02196077d54b59801431c7cc53a6e110e6c687df

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev107-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.dev107-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.dev107-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6e5efef6237500b7e3a78f85cd62f667bc9155c675dc577afadcd97322c100f
MD5 971aa8ee817be93005a5e9447be6852a
BLAKE2b-256 728b9c72fd2f160ea78939463609ea30605894ba168146849f15e40ac870c24d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b9f5c94a698612f7bb09c40305c76959206777391996d97ec5a10d2ee21fefa
MD5 cbaa287288ec42f336903f9ae8cbe278
BLAKE2b-256 3e263dd275137ff08ccc1537e4218c3596059dcc8cc22d1a793558693033d31a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd7ec9d354c0ea450bf6c8c2604676006c2f1b4a6bc0d1a24c93f67a6af53d5d
MD5 efdf1af9ca1f165b468dfc88a3843359
BLAKE2b-256 fb8496d62f80d97b4a7b87e766c191501ca4d3401221b161a522848191271381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39d61a13ec11b653d698fa13505424e24d69287f0abff6ef7ca6ce03aa6aeee6
MD5 8820a88cea10920da81d982c72c007a4
BLAKE2b-256 613f99e49f37878e251fe286e32620c86c6ccec09d1bbc7c991fd2659d5d0f71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 fb9a08a1237543284831b114246f259e013e34076037f95697a63d700dfffe79
MD5 71c7164077c1e085571515e8ff67d59c
BLAKE2b-256 a63f4d6b3b690d4736089ba7d5995ce919b6547200569014eaed7feac7b61092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c547370194d1e5bc1b4dbd0cbd02ba667fa81fd52f9e8eb46c0a0e1b847bb73a
MD5 096cf2170ff9878279cbd08c9ddfaa7a
BLAKE2b-256 066353515a6b049554a8f3915e149ef0632200fa168533b2369b5752cec3248c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ed5a1f992ab96daf5de0fcfd8c51a0139f4513c23e48e99c6576556a3206278
MD5 6935d5ee1cf5c5d896bcbb35c23f5357
BLAKE2b-256 13ebc0d927ae1818a86dfc6fd904a41050d09e6296e4a55541997931b3e2e7a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78bcc170b7c19be53b13f8c14c68bbcaedd6fb972f262f6f7f8ee0a41f1955cd
MD5 01d9bee4a0703ee28c3a7b3a2ac4489c
BLAKE2b-256 1961ccbf4e00ae44f3e17d7f73c2e65d881cb2fef858faad4291124e0c1d260e

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev107-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.dev107-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.dev107-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba8208cb916fe9205065120ea3a7e7bd3dc73488d099aefbed4848786b18f1ae
MD5 746328f4e02a1f8954e95e1dbd8dc8da
BLAKE2b-256 1f1a00c9520cf92c8d5056833eab3d66a7d5f69c10f66938b0ef2b7b60b413d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6120d7cd42b06cdf6cbc9591afd62742f49e6a4285086867d9a63efb099ef09
MD5 1c3f52bdad965bc3130fb73cb396b931
BLAKE2b-256 33f4ddb2add207fb6d7b87bf69b0992f6ff31bd7ad72d7eb7b37ce526144444f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03e957bfc6ff4af3fa2d49947422462961f7f8424d2752600becb09cfe473c60
MD5 6a06841eb6620fb45a22c5af4451f92a
BLAKE2b-256 dfb1cb97cf09d5e84e99d013d6d7479ca69ecfbc0faaf82270079bde1661211c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev107-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acf00bfdfe55f48f9365a8933f2f78fb2e3b4b49f30dcb21c49cdb2f82e367ff
MD5 1afab410aff5ce43664acdcfe57e459e
BLAKE2b-256 b0ec9c19719c525b996a6c760baeb257f47af44f8c27cd8a54d73bc94ab993c0

See more details on using hashes here.

Provenance

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