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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.0a1.dev74-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (454.4 kB view details)

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

copium-0.1.0a1.dev74-cp313-cp313-win_amd64.whl (66.1 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.0a1.dev74-cp313-cp313-musllinux_1_2_x86_64.whl (458.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

copium-0.1.0a1.dev74-cp313-cp313-macosx_11_0_arm64.whl (75.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

copium-0.1.0a1.dev74-cp312-cp312-win_amd64.whl (65.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

copium-0.1.0a1.dev74-cp311-cp311-musllinux_1_2_x86_64.whl (432.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.0a1.dev74-cp311-cp311-musllinux_1_2_aarch64.whl (426.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.0a1.dev74-cp310-cp310-win_arm64.whl (59.0 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

copium-0.1.0a1.dev74-cp310-cp310-macosx_11_0_arm64.whl (76.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 27118693700cbf69eb64c05a5c29254f519da850a5652443386e79ac769fbd60
MD5 d61bc19d947f7da0ae6074a743cf1bea
BLAKE2b-256 e3f34c3d36e2f9c58fd3d48978a3552e24f356c1487b032814689daba0e9acc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 edf233278b67879edf4c95ff0195435085447ef661d4577f4191522cc5d2c4a5
MD5 3605875c77675c50165dd7d231d8036e
BLAKE2b-256 605168c25bdb47222f6fb94418d2dcb9c34b65a42b1a7ba311f763c52b7f74bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4ea27484369d6906f12ab25409194ea83a0620f51cf4a4e1089b6bdfaf57ed1
MD5 50b2f4d192455407540de9a6173e0d79
BLAKE2b-256 1bab217caa88584e334b4a875fba9ab4ad56a0739cfe1731cff328b4e1101be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ff679ee4530c3eae56d2562dbd76ffb2b7fde02da73175ace89f7641361e33f
MD5 ef4e26bffaa42c004ab2fc821c2dd4db
BLAKE2b-256 f5383409b7dc73ff1470284380acd9d38836e94e738f08f63a4e9da07f0793e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev74-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.dev74-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.dev74-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b072b8f0893cebfed623a7f31fc632c57a4d3fde1629ab9a563048dde69087f
MD5 902d6dbc8b8c476d2cb4b2980358339b
BLAKE2b-256 dffddd8297cc5b88fa60f60b3bfb2fa125f8ab1e8d4fdf1537909acd2857a95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92efaf8c08e7081dc476244a3a16c07d2130a00e4c4397c1f324da1aa93fc2a0
MD5 4856a5695e73457c8e4d14900e8d7351
BLAKE2b-256 d65f84cb8085fc36df555ed321f3fccb12c70061efa1e33b84c97b9e2955ee74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40acafd1c9999a31b77e54adf843142235fdd41c6c83df1b43d2075e180c1a6e
MD5 4e15e0fc67196afe1d38db815b84c142
BLAKE2b-256 a023b468d7281687346ef13db8bf872654a68bfdb25cb942ee85472880dc5337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1190cdbc3bfafe88add8ff075ff95360af5a0da5bdbb6973d0b132d75979ed7
MD5 f3f6754c5a355cb8dadc8282254165b1
BLAKE2b-256 18c22157f6c9b42445f755621486ba9c4985a1603f380a4138727617d2b4d04e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0b8c3812270659e192a38423d23f82d27cbd3c48ec0ec2b39ea4fc5b8457816e
MD5 d3bbd1f5aec156dc9d70d525cbf15ff2
BLAKE2b-256 1460b149e1c6f1dec00c1b69a9d9ddaf328a418c7e8234517e431cdc5bed30c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6f01e5d0457ade4f7cb2e9a5edea97ec6d886f374f24f1d49508f3ad43d0410f
MD5 753e403a605e645a1bb58f3d00b097e1
BLAKE2b-256 ba35e87af94d456985cde01316e603f0737afb2b2818d8d57a1c8a0e3b8825e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8653dd7195850c51f67c5f001b2ceca326aa44ca52cb9205c3c8c3fa9ea8b28d
MD5 abf0c258baca5ec6b0469fa61101fb28
BLAKE2b-256 ad943dcaa6dfdfaab23cd88e3b7f8547312fdac4cda7e9bbc1eb6b02a4440eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 407b8628737c4e5d30743d41ab33c5a397c4515e1aed8ee323117fd2e51a777d
MD5 4cf53fcb4fbe87cc7997b5f19baa62fd
BLAKE2b-256 0803a8a38a02ceb43e1e553b8383e8309bda71ff7944a34fb51614dbf878793a

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev74-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.dev74-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.dev74-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e93089976b2e61fafa1c45ec1de6ec1bd0de47e01528146f35b2e5e2b17cf7a7
MD5 bdab5e90bffa3e235a04a89856846b5f
BLAKE2b-256 b104815e2341fbda296f6e90b63a53a12277d63845b433bfeadc56076817d8cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fc430dc7a4e350c0a89fcd8616682768b21f9ec36a9b2691f0bb689074e9aa0
MD5 fd19b507477791f56e9cc6afb5431a84
BLAKE2b-256 c5d26daa7bcd05be6378e91c103838fd1264f610571d69ee2160c3948ca8fcdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a1fcae4e85a8a166e4496ab4566446feabbe65209ef9f54a3b7bf124433e89c
MD5 9091319449d486334a11ac4ae567cfbe
BLAKE2b-256 d923ae76c28f4619ebf29a43d2a96ed1012ffb79af8a791e367c187c9c98c4d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f757ef26ec5099c9258318825a3b622d2bd58b922a00a11e8875d2dee6f5084b
MD5 64cfd593d471c0890197364724d28ec1
BLAKE2b-256 89124279f8d37bfc42a6debbc05de56c8677138f8aa1ebf0593148436e7662f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bcf44cb9485ce51bb2235f14df36bddd2ab9add8324c02392de417450474feff
MD5 c079847e52d8ff66cc6269401c005f7e
BLAKE2b-256 09f829ef6c1c8fe7fff34aae0f815dd65f0eeb68db1805deb4c6008d35045a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04f5511a2ea58bb45b6d67ad551c0b6c190677f0e38f83ee112464789783c00c
MD5 15cefde7757bc83acff6b76fdc5cdca2
BLAKE2b-256 f824d11c4af1dfbe435c501877140c7f75a7bce20d25d17f57e058a70f1facd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dfc6a257fff38e97d7569ba7a018d8c68065d38f9d010995f1a53bb160564bd
MD5 a34a3b5ba7725356af6659e79389ed40
BLAKE2b-256 1569f7dbae394c8b1bb044b6d9776e8ef1a69eda3ec490feec49497b720266a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9be3e0c6f5976ab2748781c2a0d3f2afc72bd416bde1fc4971e6d186dd2a52ae
MD5 ca97b8c815de8b4fd5635edf05de813d
BLAKE2b-256 02edbd1c417f4a6535e0504969ca727412f089144c65f6b4b92c36477793945b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev74-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.dev74-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.dev74-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65cc43cf941ee0a9624c60edb8ea81834a05717ed770127260a4341e06f12c06
MD5 e68651b841f8029426401796c7cfba85
BLAKE2b-256 8868c63469f16dbdb97281d923c8887241c1bba96b893d7ab73ce69fe420b46a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b97d189d04de76f9e79339168aa5c07c7289dc25a292b3fc98955a804747742f
MD5 4ed5a3b11c4895c1d8a67548d3a43533
BLAKE2b-256 60dca340d8adf9e9260b9c2004bf3637b25d30dac98f108650c420d2f4f2b751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6551b7425f244e724d9eeccc606e2f7cf7a7ce1d90acec2758fe4106411b1dc2
MD5 d031246df0c6a0ff8980de9608815cf9
BLAKE2b-256 7a8ef73702805962557deb48b56e6cc66bf6cee688ea8c0c87c47d28ab72bc0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 89b9a776088c103a531aac1a7f6d979ddfb17e666d5f9dc9c9598900ee8cb4fc
MD5 7f91a809f977d210be438dad836f1aa2
BLAKE2b-256 aee9779c9ef39d416709e7bfc8f75e2b71fca57a65e34bf889f49d2d37762d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b8346898a30417ec3e0988b7dbc6451828ccef377ba88aca556ace91021ce569
MD5 a85dd847307b3fac78664c4ea47b15a4
BLAKE2b-256 7fd10ac79a030d0f95c66953648e02e89e3672581a859954178929dd51f567a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2bc9c3802e3add24d4607a41ceb11b1dba08a3473915c81591a7c44fc0f97e16
MD5 c782ac8725109e4193e3c1ba724e0412
BLAKE2b-256 0b40f54bf58f670b55d239a85ea432397d8a5bc92044f494cf5b55e7a3fcda84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7adbc65c082ae7afb6f61fa0c9b613f1ff6c0477127439181246f5afae115b1e
MD5 57911d1c06902ca1c5bdef54c0fdf2ed
BLAKE2b-256 0c83404bcdc20f5adfbcd7d00b844908353f295c3dc777e301dc13d808abc12c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11a43a05214d3c0166572e5fe9e54b20df132bad96a7a2344651220aef30ad1c
MD5 ee09d470d93cd9ae06795be68bc43a00
BLAKE2b-256 af53788caf33f03673ed38a932d8dbe7a63987db97d35c47ca15516f89c3cc67

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev74-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.dev74-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.dev74-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57efcf04514be523845e9e455a4f1ccef8f359c27e6ce4d70dd4e683a184d2e7
MD5 b4384ec260387aa1cf49ca793e662631
BLAKE2b-256 40bc62badacd8182f7472947b71905f58a5998f325bb1f299a28a14944f2d91f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25b33736f6dacf8106373bcdd449caf81ae7b3f822c296de92330d552e77469e
MD5 a85b63725f5e8949369fc00073f3970c
BLAKE2b-256 3b874a3c2cfcf442480857ff328a72a21edaaadadf38ffe776647c1f5bad5997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee7fa2a21fe9c63c572ecc9cebbb02deeadd50a75d2f9734de603b1f5a0a8e3c
MD5 5e66dc0b56db0ff8f3edfb1231bf1e0d
BLAKE2b-256 45d73e9ccb862f3ad0e101d6abf428eba00f83c56defb8cf1aec7818de3dfa13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78e57814edd26243b30babee6440140d0280f5405af41891adfe5adb5c2b695c
MD5 a605e642fad8264652725b74347c51d2
BLAKE2b-256 7fde36f7d36486774cfc0ffb8ed56f89b5edb07b294c414e78e614f348a1fa5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 883798c906e3f7c3ed2e4ac2de934f2ac233950e68e9c431221073579a8cb8cb
MD5 f2b51c9ae944737453ae31b6052a5930
BLAKE2b-256 3582249bdd3b4b38d464a8889b425f21e3b5235c4af9eb6c7d42fd8f1bf9a7fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0281b9715c4da33397a6a87954aa24c2041a470480f5b1e95827683d80ee52a
MD5 f11b6d319b075bd3cd6708db03911d65
BLAKE2b-256 655dc8fb48fa0b056f4829c64a11ece31fd23b51154fbb888fe33266d06ff311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d161206f553f73b7c4dc14367729ecb8e1d42288400c5143d385188a8affe70c
MD5 fa3aea157fda0763c739b1f4e5563482
BLAKE2b-256 6eecbb77936e5cb0603606c7df1934c190885402c010e63582aa19ba1222fdb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f0e98f0ee32d35e6305995bd5b39ddb34f6ec13dc753c6323dd6312e17fb3bd
MD5 23400a31167da40aa2a466cd47c4ad52
BLAKE2b-256 6bf742d061bb2713f15139fab15ee8e253cc0bff0db5589cc987755503d11452

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.0a1.dev74-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.dev74-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.dev74-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2c7476564606fa9fd2fc6a79496c2aca06d380e4dd21a1379ca903d1e515e88
MD5 0663ecbb60cbc2f669b710c967d90cb3
BLAKE2b-256 23ba7654b0022f5358815db31c9681c5692a48bd84c41947ce3ae64c22266475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7a4737341e5041d5aa71dc2846c635261386d181a2a9a0cfbcf15b656fc392f
MD5 f4be1c4eb77523bfc07f8d24d65384f3
BLAKE2b-256 954dc3b3c14aa3d814e76d24efe1e4b993e80905b99501efea4602bbb37872a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc9b685321de7a1ab70adc26957decc7af42b29d3f6a928e4d3abed551181a0c
MD5 1a67d60cb61d01800bf0a9bc0fcf23f7
BLAKE2b-256 c98541ab412c47bef51ab46b92eef582ca475dc2e9043814deefbe6bc16e4222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for copium-0.1.0a1.dev74-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 30ac8d917bc6806b7030c43ae5a3987fd307bee74cd15a9959eee6120377efcf
MD5 84c37b4aacaa704a2cc047f6e026c4ca
BLAKE2b-256 d2228b7eddbc8aa325e8f7dd3b8568a639eaed80e45bae56f434836d28c6ed3c

See more details on using hashes here.

Provenance

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