Skip to main content

Fastest deepcopy implementation for CPython

Project description

copium

image image image Actions status

An extremely fast Python copy/deepcopy implementation, written in C.

Benchmark results bar chart

Highlights

Installation

pip install copium

Usage

copium is designed to be drop-in replacement for copy module.

After installation deepcopy will be fast in either of 3 cases:

1) You set COPIUM_PATCH_DEEPCOPY=1 before launch
2) You call copium.patch.enable() manually at launch
3) You use copium.deepcopy() directly

Generally any code that uses stdlib copy can be replaced with copium simply by:

- from copy import deepcopy
+ from copium import deepcopy

Alternatively, you can import copium.patch once and enable it:

import copium.patch


copium.patch.enable()

Or just export COPIUM_PATCH_DEEPCOPY=1 before running your Python process.

This will automatically call copium.patch.enable() on start, and all calls to copy.deepcopy() will be forwarded to copium.deepcopy(). On Python 3.12+ there's no performance overhead compared to direct usage.

There are two main benefits of using copium.patch,

  • It requires zero code changes
  • It automatically makes any third party code that uses deepcopy faster, for instance, it will speed up instantiations of pydantic models with mutable defaults (see pydantic_core).

Caveats

  • copium.deepcopy() ignores sys.getrecursionlimit(). It still may raise RecursionError at some point, but at much larger depths than default interpreter recursion limit (see tests.test_copium.test_recursion_error)
  • unless memo argument supplied as dict when calling copium.deepcopy(), special lightweight memo storage will be used to reduce memoization overhead. It implements MutableMapping methods, so any custom __deepcopy__ methods should work as expected
  • copium.deepcopy() will raise TypeError if type(memo) is not dict — if you're unsure what it means, don't worry — you don't need to supply memo to deepcopy in the first place.
  • copium uses unstable CPython API. This means that it might break on new major Python release

Benchmarks

A full benchmark suite is in progress and will be published soon. In the meanwhile, you can reproduce the results shown in the chart above with this minimal script

Pyperf case
cat > benchmark.py << 'PY'
# /// script
# requires-python = ">=3.10"
# dependencies = [
#     "pyperf",
#     "copium",
# ]
# ///
import pyperf

runner = pyperf.Runner()

setup = """
import copy
from decimal import Decimal

payload = {
        "a": 1,
        "b": (b := [(1, 2, 3), (4, 5, 6)]),
        "c": [Decimal("3.14"), complex(), [], (), frozenset(), b],
}
"""

runner.timeit(name="deepcopy", stmt=f"b=copy.deepcopy(payload)", setup=setup)
PY
uv run --python 3.14t benchmark.py -q -o copy3.14t.json && \
COPIUM_PATCH_DEEPCOPY=1 PYTHON_GIL=0 \
uv run --python 3.14t benchmark.py -q -o copium3.14t.json --copy-env && \
uvx pyperf compare_to copy3.14t.json copium3.14t.json --table

Output:

deepcopy: Mean +- std dev: 20.8 us +- 1.6 us
deepcopy: Mean +- std dev: 928 ns +- 11 ns
+--------------+---------+--------------------+
| Benchmark | copy    | copium                |
+===========+=========+=======================+
| deepcopy  | 20.8 us | 928 ns: 22.40x faster |
+-----------+---------+-----------------------+
 uv run --python 3.13 benchmark.py -q -o copy3.13.json && \
COPIUM_PATCH_DEEPCOPY=1 \
uv run --python 3.13 benchmark.py -q -o copium3.13.json --copy-env && \
uvx pyperf compare_to copy3.13.json copium3.13.json --table
deepcopy: Mean +- std dev: 10.8 us +- 0.9 us
deepcopy: Mean +- std dev: 880 ns +- 23 ns
+-----------+-----------+-----------------------+
| Benchmark | copy3.13t | copium3.13t           |
+===========+===========+=======================+
| deepcopy  | 10.8 us   | 880 ns: 12.26x faster |
+-----------+-----------+-----------------------+
 uv run --python 3.13t benchmark.py -q -o copy3.13t.json && \
COPIUM_PATCH_DEEPCOPY=1 PYTHON_GIL=0 \
uv run --python 3.13t benchmark.py -q -o copium3.13t.json --copy-env && \
uvx pyperf compare_to copy3.13t.json copium3.13t.json --table
deepcopy: Mean +- std dev: 29.0 us +- 6.7 us
deepcopy: Mean +- std dev: 942 ns +- 29 ns
+-----------+-----------+-----------------------+
| Benchmark | copy3.13t | copium3.13t           |
+===========+===========+=======================+
| deepcopy  | 29.0 us   | 942 ns: 30.84x faster |
+-----------+-----------+-----------------------+

Development

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

copium-0.1.dev1.tar.gz (104.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

copium-0.1.dev1-cp314-cp314-win_arm64.whl (35.2 kB view details)

Uploaded CPython 3.14Windows ARM64

copium-0.1.dev1-cp314-cp314-win_amd64.whl (35.8 kB view details)

Uploaded CPython 3.14Windows x86-64

copium-0.1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl (166.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

copium-0.1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl (173.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

copium-0.1.dev1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (168.6 kB view details)

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

copium-0.1.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (179.2 kB view details)

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

copium-0.1.dev1-cp314-cp314-macosx_11_0_arm64.whl (37.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

copium-0.1.dev1-cp314-cp314-macosx_10_15_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

copium-0.1.dev1-cp313-cp313-win_arm64.whl (34.0 kB view details)

Uploaded CPython 3.13Windows ARM64

copium-0.1.dev1-cp313-cp313-win_amd64.whl (35.1 kB view details)

Uploaded CPython 3.13Windows x86-64

copium-0.1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl (167.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

copium-0.1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl (173.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

copium-0.1.dev1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (168.8 kB view details)

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

copium-0.1.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (178.1 kB view details)

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

copium-0.1.dev1-cp313-cp313-macosx_11_0_arm64.whl (37.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

copium-0.1.dev1-cp313-cp313-macosx_10_13_x86_64.whl (38.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

copium-0.1.dev1-cp312-cp312-win_arm64.whl (33.6 kB view details)

Uploaded CPython 3.12Windows ARM64

copium-0.1.dev1-cp312-cp312-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.12Windows x86-64

copium-0.1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl (168.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

copium-0.1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl (173.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

copium-0.1.dev1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (170.5 kB view details)

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

copium-0.1.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (174.9 kB view details)

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

copium-0.1.dev1-cp312-cp312-macosx_11_0_arm64.whl (37.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

copium-0.1.dev1-cp312-cp312-macosx_10_13_x86_64.whl (37.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

copium-0.1.dev1-cp311-cp311-win_arm64.whl (33.1 kB view details)

Uploaded CPython 3.11Windows ARM64

copium-0.1.dev1-cp311-cp311-win_amd64.whl (34.5 kB view details)

Uploaded CPython 3.11Windows x86-64

copium-0.1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl (157.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

copium-0.1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl (161.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

copium-0.1.dev1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (160.1 kB view details)

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

copium-0.1.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (164.4 kB view details)

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

copium-0.1.dev1-cp311-cp311-macosx_11_0_arm64.whl (37.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

copium-0.1.dev1-cp311-cp311-macosx_10_9_x86_64.whl (37.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

copium-0.1.dev1-cp310-cp310-win_arm64.whl (33.5 kB view details)

Uploaded CPython 3.10Windows ARM64

copium-0.1.dev1-cp310-cp310-win_amd64.whl (34.7 kB view details)

Uploaded CPython 3.10Windows x86-64

copium-0.1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

copium-0.1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl (172.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

copium-0.1.dev1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (170.4 kB view details)

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

copium-0.1.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (176.0 kB view details)

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

copium-0.1.dev1-cp310-cp310-macosx_11_0_arm64.whl (38.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

copium-0.1.dev1-cp310-cp310-macosx_10_9_x86_64.whl (38.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file copium-0.1.dev1.tar.gz.

File metadata

  • Download URL: copium-0.1.dev1.tar.gz
  • Upload date:
  • Size: 104.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1.tar.gz
Algorithm Hash digest
SHA256 eba4dc9bb4ee8fcd5f7c535e38b169df34de720c9da95d7ce0632c0d8b938707
MD5 3dcedf3804e6fbe85286c50b260813c4
BLAKE2b-256 e7446a50ba54c531c7578089e952c9a121eb97438aaca5630b7ac73139a34a00

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1.tar.gz:

Publisher: publish.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.dev1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 35.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1bc14d7928a7376af83cf12bf89baab85be433b99d8f8417b9912711dadb8180
MD5 2f69499b1562ffb43f4e6135312a6c70
BLAKE2b-256 719eda88a15e56657eb076ad8809a492ce21688c5cbbbca5e0cd9a6b822e21ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-win_arm64.whl:

Publisher: publish.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.dev1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6aba8bc8c83b6a48a05e64284a4b7176fd757da6a682731228fa95ea3a9989f1
MD5 f9c2058f40548bdb890766dafdb99a10
BLAKE2b-256 ba9559dd7bae7cfa34e65475414aca6a46eed95e618483a2464bd6f039c38369

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-win_amd64.whl:

Publisher: publish.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.dev1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec2cd64a9a652c2b9b0722e92e2b644f3c2b39849cfec6acc3a02935ceb513b5
MD5 8cfe56b8dfe8bd9e4f2bebeef9d06fbb
BLAKE2b-256 47404088fb0e6457dcd2a6dd6e2c9a7c3e446fe243f77dd37b062f425fbc5126

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.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.dev1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70e7358773fc0c6f1b87db4d2bcef9f75fef36b8fe723e4017a6b42ba6c4be4c
MD5 b2c7e13d99eb9b7604311fae1b51b418
BLAKE2b-256 104cecc894c33d2668478874b3e27365ae62c6fb7ba8a6210db74ee85e1a7fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.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.dev1-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.dev1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90ef7c68b38b49c2a765e92fb6c4c1610756be86b3f3a3405e16249e983d3baf
MD5 04140e813c10724a2c61c8940a59b6c0
BLAKE2b-256 cca71f6f74c095b657097bf40b0575fa9bec3145353cf064f1e9b504fa62514b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.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.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be98eb2d0904f6545a5d3efae2a25cac0cd64343f6f78a6be2cc5a73b2fdcd6f
MD5 4c4f8aa7a78b68ef4a938217496b7082
BLAKE2b-256 f479ffb5e89933812e403467fe68338dd5ed18adaf80739286a7d71f91730360

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.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.dev1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 665a702fc08c69e848016f89aff3b13634345228b527b1d081e17b4d707b5cc9
MD5 b4136cc6ad62f51fb601cc789ddc2c49
BLAKE2b-256 4ab87caf191cbd3897c4081fc5822ce4abc5cfe6d52af1d34e362c8334bd770a

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.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.dev1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f25de8b7a7866f9b6bcf42b69d3f956cf2242caf0f5c0ef8f2ad26e51dfdef3
MD5 3472b5b2e543d1d0cde7036ca2f7f168
BLAKE2b-256 42f7b8ed92af5f2f7b76f8e548e87c1565f0293257ff66a9c4637419b7ce845b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.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.dev1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 34.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 baa78a3abdc1391fa11cd758ed92f4ef461415f6f3c499b9cea25777575376bd
MD5 95eab230a3ff23c2abd6b0a4480b4b4b
BLAKE2b-256 a2e912ca0d71544e80ac458bf9330328065362de831c86b70444c1befe3128b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-win_arm64.whl:

Publisher: publish.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.dev1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 59c8e6b6bfd2ac6981eee00e40701372960cebcc515861d677951c76eb304328
MD5 285a8de41dfb927db3b263c2b9494a87
BLAKE2b-256 e1dd13b126366449d0e2c48ae9c829d03177c3ed71ffb828b4af6ff55a913fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-win_amd64.whl:

Publisher: publish.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.dev1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25e6cf497a066046413cac467f19b25b31b416f21b845950befb86bd19bfec64
MD5 040d047f247ce39268d604214496a91e
BLAKE2b-256 91fa8fb727e6e102f35a185ac57eaaa2e85d10928838c1c27742f533ca349d9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.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.dev1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d993ebf6cfdcfb0111f7a4094c7dc3c1ed69b7e92ad37fdb2ec8ad72d4e49ba
MD5 e520536c4fe6c9868e47954b51da9b4f
BLAKE2b-256 5c79fe438aff6d3ec52e679e5f7a278e3a91f302ec69ad3261e1cf3e9b9dbad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.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.dev1-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.dev1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 835fe70c37aea96a4701bbe8fdf54f7a8d77f8cc87e4f790a5ca1092c3a4fe77
MD5 41cd924c9511f2fdacabefa9ade48d47
BLAKE2b-256 9e6b290ba43763285637293f3205da9a1c7c19688215ecf0c589193977d7067b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.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.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a750ab9af1c3bfb92a07a883a80be0c0874fdbec78e3818cca84862117fca280
MD5 0a65a47a2a767369edbca83fc189327d
BLAKE2b-256 093263f170ea50c4ff26330b749cf6f5b955885e70cf31a5f74f808a3f52e9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.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.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4e552ecbfd4926a6bad8004d001730ef3e9de295a683713fcda2e50fd71de07
MD5 9c304e829c46b5de85d705e8c2886ad6
BLAKE2b-256 7e446af3aed8d1c977d92960dd98a3b6abee2d207b4e9bea8a3688d4c4228eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.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.dev1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83f214c499925fd20fbd511bb7b7600e818d909a2b4b4a29f8b013871afcabb1
MD5 d4c5de1d5a522e1e65c26c4f55d9d11d
BLAKE2b-256 463b3f1e73a83a77d30c8cec3909addcd446ac52fea0176782aa31068ac0cbd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.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.dev1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 33.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0f8ce3165feecf1d01de567d04ed38778ce630c7463c994d4fc8eb2b93a45ac8
MD5 2cdd7e4fc5345eb03c901c5483a1b857
BLAKE2b-256 2a32fce019d9922de7e96da44bcb7fd44aead96f8e5c1fc0b4b2965d5a725622

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-win_arm64.whl:

Publisher: publish.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.dev1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4bf952e01c279ba59762593becc89114d5a6846036de923708419afe649d386b
MD5 d81c7620bd723817aab030de6eb8ac32
BLAKE2b-256 abe27a60f6e5aa5a9640a1e12a8eb3c6fabaccaa789790206446f154fde49dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-win_amd64.whl:

Publisher: publish.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.dev1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92f8529c2dedcbe9a441a6fefcdca323a9b252f9295b240f0df2263b26e8c45f
MD5 e6a0a73d893613beee0d14c669dea0e1
BLAKE2b-256 e32209e160b9316d709b61e524fc9411b8d2210392a4dbd083a7718f3b0bc791

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.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.dev1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3bd97f60a4f20cdd3f1049b4dfd8ffe89c68936b2cff5389eaee4aa68031c2d
MD5 391e3c21c3244cbe5767c0bda6a9f0f8
BLAKE2b-256 c2f4c142d83b8eae89d478bf34560b0a309e1c943f4807eddddf97e79b0fea51

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.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.dev1-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.dev1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4489a5582f7330e9d84cdb8720b971179a10a82303010aa1de9c45e6a527d257
MD5 2a3273471811868381ea089031eaacc0
BLAKE2b-256 2bfa0433470ea5661f20617e0bfbd22303d50c3bd9d6b3a600fc72c6cb8781e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.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.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf337e0d094f1b8de5e86b9b48e6023b45617d9d0cf8e72ba345efad3e2f20db
MD5 bdc87e29fa32d8b12040215daaf14323
BLAKE2b-256 fb588f7fc299022e7990b192837e09c521f061dfbace59391924cc53926dffc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.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.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9dcf91358cea136064b47475c606d88430ecbdf6086f9bd45d4c9441183faa6
MD5 af445f1e0f72032dfac43c3e9e78a17c
BLAKE2b-256 9ee299df2e69dff8ae96fdeedac33c58a45e6f90e0805e1ca6105b40d34e44f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.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.dev1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49ef1b32c41e272ef9c99bdaba53d01e65b1ebf2bc40ae65c8f242a0678ac6a5
MD5 9f551d07b7bf52750d398ca2d35a5822
BLAKE2b-256 badcc4b0f9a892aad8e3b386ca741e0d844950bdd438f5d1c825ac39b4ce2dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.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.dev1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 627124e066418802521894f1b4ca6f2148b113cfe6a9ceca67cfa711e2038e19
MD5 e07aa74f3bb706df145df33ca0967813
BLAKE2b-256 79926f34a1170be7700faacc9161a914791927bca0180f5dd4aaf7688133002a

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-win_arm64.whl:

Publisher: publish.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.dev1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0b3730055c1fe9c43092022736c4cdfa3d90315fd0ed7d51aca1d3c44c5159a
MD5 f611235ddef5c910b222b1fc6207cffc
BLAKE2b-256 964d26fdae78722bb4409d07ac6fa66d47ceaf0a816509c841476495796e7d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-win_amd64.whl:

Publisher: publish.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.dev1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e824de8a319055c2f6e647909e07d9553fa5ffc2fa7bc7ffc536ddf6d9817806
MD5 661d6ba2065563b137b412f084322caf
BLAKE2b-256 405dbaf7bf0d01a76902ffa59a96a2dccc1e93afdd9921bce8cce30edd1be1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.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.dev1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3173aa49b4592d7730a405bd6eabc2ade651d7730ef8076370fdfcddcc436bd2
MD5 12252f832ec4fce0200f72026fe7b152
BLAKE2b-256 6291dbf2a55e72f090cbc60ba96a6d6c690830139c8b8ce98cac2e2d2f8e1bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.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.dev1-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.dev1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6487a71673d5c051b35b296c984b5b38c728d559f5856e9b79bee4200739671b
MD5 897a65855d7916c554c3368467800e15
BLAKE2b-256 f8b455749edab3ba12da779097c566fcdecf560e48d10463098d9d67dd8e7105

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.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.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ff7614f5325db84eec71d5e25db464f6e3e7a5adcafbda059ff8cb01862eda8
MD5 551e957da5e55a6d3311f8966ca50498
BLAKE2b-256 1988d38baa8363c1949d80f571b48d0492fec0d14fadd8efea6b494467eb326b

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.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.dev1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29e62fb9097518f68b70a9098c62effceb2b09e4049d552140b8864fdcda3158
MD5 1a620c65a3c366887381ab8021d3b498
BLAKE2b-256 8fd2478fb283bc5f88eace21227578b53b0cb4195a5163eec05ff4f02d8714b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.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.dev1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ab19912c152bac4381e7f36f876db3fbc78835b1b20bce10ef90c5dcd58f609
MD5 ee1e986b963599980267550cc55fe3ff
BLAKE2b-256 7acc8cd5862b8a9385539bf255bcad2be664d8c6687ad0cd55468ef03cc1db4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.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.dev1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 33.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e9033c3a2c6438f895dedf2738d23c60d5472260698bd97d6776b8a3076c0b78
MD5 03b1ad1ed6a3e1e6eac64fe7e3ff60c1
BLAKE2b-256 f9c67d0748470a6d188ba6906d919d86ed2adaf496ad8ab8a616ad7d575da5fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-win_arm64.whl:

Publisher: publish.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.dev1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: copium-0.1.dev1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 34.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 974591488e3214f5b7dd35a83b035137b807f92d5fcbce792e3192f6d856917b
MD5 7b3b7dbc2c2ec66535e8039e5cd4eb15
BLAKE2b-256 1e47bba8a78c4204b52891454e274a40477588e0210666bcd79cdef781a5408a

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-win_amd64.whl:

Publisher: publish.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.dev1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b83da2696b969ecaf5e692c0754191d89c56a95022245a20ba03a512dbc5dc35
MD5 03b59d650219bdeab1bff6685189eb1f
BLAKE2b-256 27422f1512be1300521ee0f2311cf524b93fa9805a83c07251e69c6bcc3f872c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.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.dev1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75a4029118e634594bfcc7f62b3ba8341bb8562d79c477ad96068b33e73df1c3
MD5 f93e32ba7ded178cb492c2cb4d3b4a92
BLAKE2b-256 e7b51d2a96f5a458818dc10f7bbe226be0c8a5f481f1e93577e73b3aadfe11de

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.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.dev1-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.dev1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d37900fe36b27c8db0852eb4c4ff62e97a7c526e2f0d90300a5465639ce33c39
MD5 498c5e06e46d11adf24f1c3b5b2f8760
BLAKE2b-256 065e88d14036efeaa63140f52374393b4ab8f78d3226ee69a669d815c3be7f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.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.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bbe3f859a2e401be385c7868ffb346f5a5744ee387f1b9a2c6628c2f0150f27
MD5 1c1aeaf797981e1331417e7cec3e9e1b
BLAKE2b-256 5da4fdcc8aabe4b364770c527b2c50209e7b5bd044fa99c0cc8f78a619530d4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.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.dev1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1e8978d0192f91d08451350f8f3e1b73e273199af7bcd22b1a03a4cf578f13
MD5 c6c74511a52988e70c284a5e51a33c95
BLAKE2b-256 cbab6fc19da9874425616648f5443f754783a486768a2f9b274c1694e3576d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.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.dev1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for copium-0.1.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bac6766217c50729561f68862e89dfe3c41a39817dabb9d2cb38b66ee5ee4d56
MD5 1b3d3800a0dc64a34f8777f7a819ddaf
BLAKE2b-256 0248d321d38cc8e4c67746e1db063fb5ef27b666be6eeee963f137ba49122323

See more details on using hashes here.

Provenance

The following attestation bundles were made for copium-0.1.dev1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.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