Skip to main content

Lightning-fast DICOM anonymization for Python, written in Rust.

Project description

dcmanon

Lightning-fast DICOM anonymization for Python, written in Rust.

This is a high-performance DICOM anonymization library that provides flexible, configurable anonymization of DICOM files. Built in Rust for maximum performance, it offers Python bindings for easy integration into various different workflows.

Features

  • Fast: written in Rust for optimal performance
  • Flexible: configurable anonymization actions per DICOM tag
  • Safe: type-safe implementation with comprehensive error handling
  • Standards-compliant: follows DICOM standard anonymization best practices by default
  • Multiple actions: remove, replace, hash, keep or empty DICOM tags
  • UID management: consistent UID generation with configurable UID roots

Installation

pip install dcmanon

Quick start

from dcmanon import Anonymizer

anonymizer = Anonymizer()
anonymized_bytes = anonymizer.anonymize("input.dcm")

with open("anonymized.dcm", "wb") as f:
    f.write(anonymized_bytes)

Default settings

When the Anonymizer is initialized without any arguments, the default anonymization settings are used. To see those default settings, you can either find them here or you can generate them yourself like this:

cargo install dcmanon
dcmanon config create -o config_default.json

You can customize the default UID root and tag actions by providing your own when you initialize the Anonymizer. See the following examples for how to do this.

Examples

Custom UID root

from dcmanon import Anonymizer

uid_root = "1.2.3.4.5"
anonymizer = Anonymizer(uid_root=uid_root)
anonymized_data = anonymizer.anonymize("input.dcm")

Custom tag actions

Custom tag actions override the same tag actions as defined in the default settings. The other default tag actions will still be applied as well.

Any tag action as defined in the default settings can be overridden. And you can also provide actions for tags that are not defined in the default settings, like specific private tags, for example.

Available actions

  • hash: Hash the value (with optional length, minimum is 8)
  • hashdate: Hash date values while preserving format
  • hashuid: Hash UID values while maintaining UID format and using the UID root
  • empty: Set the tag value to empty
  • replace: Replace with a specified value
  • remove: Completely remove the DICOM tag
  • keep: Keep the original tag and value (to keep certain private tags, for example)
  • none: Do nothing (to disable/override actions from the default config)
from dcmanon import Anonymizer

tag_actions = {
    "00080050": {  # AccessionNumber
        "action": "hash",
        "length": 10,
    },
    "00100010": {  # PatientName
        "action": "replace",
        "value": "Anonymous^Patient",
    },
    "00100020": {  # PatientID
        "action": "hash",
        "length": 8,
    },
    "00100030": {  # PatientBirthDate
        "action": "empty",
    },
    "00331010": {  # private tag
        # all private tags are removed (by default), except this one
        "action": "keep",
    }
}

anonymizer = Anonymizer(uid_root="1.2.3.4.5", tag_actions=tag_actions)
anonymized_data = anonymizer.anonymize("input.dcm")

More advanced configuration

from dcmanon import Anonymizer

tag_actions = {
    # patient information
    "00100010": {"action": "replace", "value": "PATIENT^ANONYMOUS"},
    "00100020": {"action": "hash", "length": 12},
    "00100030": {"action": "hashdate"},  # Hash birth date
    "00100040": {"action": "keep"},      # Keep patient sex (`"none"` does the same)

    # study information
    "0020000D": {"action": "hashuid"},   # Study Instance UID
    "00200010": {"action": "hash", "length": 8},  # Study ID
    "00081030": {"action": "empty"},     # Study Description

    # series information
    "0020000E": {"action": "hashuid"},   # Series Instance UID
    "00080060": {"action": "keep"},      # Modality

    # instance information
    "00080018": {"action": "hashuid"},   # SOP Instance UID
}

anonymizer = Anonymizer(
    uid_root="1.2.840.99999",
    tag_actions=tag_actions
)

anonymized_data = anonymizer.anonymize("input.dcm")

Error handling

from dcmanon import Anonymizer, AnonymizationError

anonymizer = Anonymizer()

try:
    anonymized_data = anonymizer.anonymize("input.dcm")
    with open("output.dcm", "wb") as f:
        f.write(anonymized_data)
    print("Anonymization successful!")
except FileNotFoundError:
    print("Input file not found")
except AnonymizationError as e:
    print(f"DICOM anonymization failed: {e}")
except IOError as e:
    print(f"File I/O error: {e}")
except Exception as e:
    print(f"Unexpected error: {e}")

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

dcmanon-0.3.1.tar.gz (69.4 kB view details)

Uploaded Source

Built Distributions

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

dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

dcmanon-0.3.1-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

dcmanon-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

dcmanon-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

dcmanon-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dcmanon-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dcmanon-0.3.1-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

dcmanon-0.3.1-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

dcmanon-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

dcmanon-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

dcmanon-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dcmanon-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dcmanon-0.3.1-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

dcmanon-0.3.1-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

dcmanon-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

dcmanon-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

dcmanon-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dcmanon-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dcmanon-0.3.1-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

dcmanon-0.3.1-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

dcmanon-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

dcmanon-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

dcmanon-0.3.1-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

dcmanon-0.3.1-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

dcmanon-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

dcmanon-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

dcmanon-0.3.1-cp38-cp38-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.8Windows x86-64

dcmanon-0.3.1-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

dcmanon-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

dcmanon-0.3.1-cp38-cp38-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

dcmanon-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

dcmanon-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

dcmanon-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dcmanon-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

dcmanon-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

dcmanon-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

dcmanon-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dcmanon-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file dcmanon-0.3.1.tar.gz.

File metadata

  • Download URL: dcmanon-0.3.1.tar.gz
  • Upload date:
  • Size: 69.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1.tar.gz
Algorithm Hash digest
SHA256 f4d4e800154d1af1b637712003390ab41b8214e52dc3d4043bc06ebe5c792039
MD5 8aa246f82f9c35ef513c86bc4181d38f
BLAKE2b-256 92a075c43071c99ec312d4cf266afc6be9a4b3d171bcb55f45127bd82f0b333c

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f666727aa0a1fa01d1f94270088b3f708cc36d39fd02cdd200ef99b1affce930
MD5 c5b5a6147f148bb1bdbf0d512f1d5810
BLAKE2b-256 e86a9484db3123c3e7310404b7ed635d0d9c6dbd3da64c4751421fe191eabe32

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56a3246c905e766d4f1c52effb911c6045e17c3ae99d5912be0a19a0155408e2
MD5 82858f162b775b78d4aac973b97e84da
BLAKE2b-256 81aa3236f0ddb45a6209b54edd383778095adc778b3fd901040906a779ce71cc

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c80423b5125f9de946885c52201c9e0e1eb4ec8452ef02932fa673ea0f14f68
MD5 a4f67446d74391e65982965eb01392c3
BLAKE2b-256 63af237847c2ba34bf69cbf0169911380ae025fc8de471f681d0774b26f23691

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0657b93c71dd974226ac15983dec449b604738e6089e0d90908eae6d5fc94194
MD5 7a8fead766df08e031105070dc595e82
BLAKE2b-256 43322be55bf7f66796a5736bfc565431852b14a2f0ffdf4831c3cfae9353f639

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed5e4e8e932653bd29f4f065599bf326c9bc01f05c3ad9414002435808538b16
MD5 c9895926eee72ca66f355a42edd86825
BLAKE2b-256 1e0f295b97a029b64026c3a938e77a4cb399b5a8001a33007c3d9e62e6c845a8

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5674183d846e101c44f6b5440793c87d895671d4d4f910b25bb393dd4194ea29
MD5 4e0190e1d7178a98e8921806c4fbd040
BLAKE2b-256 af55e353d49aeccf69ba5b8d10c751aee61ef5a39cd58016a74c863d5fd68a6f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b8828eabfcd8c8ba6f27a663fb2e7eab72ca1b2523cf5dd1f342aba82c180ae
MD5 63b37abc4f8ea8a9ee24e9d30c8dbba1
BLAKE2b-256 0fb0b10ebc2529c58a856f2a20ac1c799d656362d210ca520543174c9817dbbf

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4c64c3cf07b3cf8d73f97f2d9aba4ceed6c7712c4293a03bac9dfebe76dc217
MD5 d0ef01693aabee679ab7bbefa2e68647
BLAKE2b-256 b524fba1fd73aa0a232133c72cb4cdc45dd63acd87e41fc879a60b53754b90e4

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a74001d92646ee292eb2cef9ad5937e8f41461811142d2f6e5078e39f4f6d149
MD5 ecaca57a655f9f7b5440cfc5cbe08361
BLAKE2b-256 9e97343c33db2b3423f07edd6264d1e24fefb445c90602b14cab301c3948f557

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 853a73e7bf47f05531aba894ffd52369ef2c3de0a7edc2d12bdfb4d8ea5267f7
MD5 f035c9418d342a3d2eae07cf1c3041a8
BLAKE2b-256 3f714464cfc9f30ccd25b7dc225ccce18c74894a026a005e801013894ce8a82f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50127c21871bd9b01c0cd1adee598f7f10d12e21d35231699a570050d86c88c1
MD5 80064528a373a9002b58648088820e65
BLAKE2b-256 9f808dcd5aa65cf993e6e812531c4c2bfda61aa6d1086d2d1bde1c4ed32ecef3

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4874bc127a39d469369108756e183785d70e37c359692f11267d6096eda541de
MD5 50bdfe5f6ce61b8353d22ff3698aa351
BLAKE2b-256 eb81026107deade192152c6db878b2879c6263e5451adb9f82a156f7af3c2d19

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e78dbee468d01ca12fc6a045adfc4dceed689599da7743e51ff7f7231a60578a
MD5 f29750aa9ac85ff956b87525b84f7af1
BLAKE2b-256 708324e0690ef06adce511ba7ceef72a0360d7fa65536f920779d9d42b6fc7a6

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c77c37fc8ef666f960016a22072696151540d6317d63fc16e53121f30e6c8a21
MD5 ab5d8b3a29e4a416c17cecf4c92deb37
BLAKE2b-256 cd98ec23cca533bdaebf8e3dde83d9b073cbd51b541bce6db6f3f4fbbe8b1739

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa56d3f75935590811dd1d08ee660ce77bee3fcec4054ab570c731d468ac9f8f
MD5 f204376fdf0a817e47aef6be2171f736
BLAKE2b-256 e95301cd0264af9b484855dd103b9aa030e484329669a3022d0e99a99b8d3486

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19c45cfd5dc78095cc2e934a7852addecf96347b60e551be90e9976435ed09c4
MD5 4f1370930ec9994ba0fd557746a7b898
BLAKE2b-256 b15168dfd49bd382b90435fe3b9f5b4528f00afcff7dc093c4cfa2df419445b4

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5bcb8971c2163d07c7c8d8b92814930448b7d465962d972a1b6178b6150e653
MD5 8b99ae5d3d8fad971c9390545f453f23
BLAKE2b-256 bf6743dcd18a7c6e7074922507e761971fe89da7fa0d8bcd521fb10c723e5d39

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6118ccfca917d1e44a75f160be4b4fcccd371232a71097d140f34ec9c732dd7e
MD5 84e36cd8db2cd169015abbe2e2c11724
BLAKE2b-256 8cd76e240b9901ae71bd2307d32b47efb60d9b8735a007d4b08bd8b3884cb48f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e20fb6f5458ea992b33a0f9d50f1bdc4b744f87429107172844fa67b1addee9
MD5 704efcfa8d66196a4136fab70166ab40
BLAKE2b-256 ee0f1ecf289b9ed9e380a3af5dc207deab1f240756912fc479296f26d997a704

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4f3d69024af25dbc4c22536f03fec16f9de30055ea5146111c144c5cd39382d
MD5 8f566a33fc2c9f7a3c380821760404c8
BLAKE2b-256 0413a92959d2a1fb3de29d443d36d9aeecc3e9502782af5a312b7ef791caff0c

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fec3ff0d82e60d4b0ac113715e7fcc004491a4c888ef95bf9b23566d21fae9f
MD5 874329229577f6b8fabea69370d9247b
BLAKE2b-256 0f24f2e33e473b29b79e50de16c3571d2abb12c8c07714ca38b1557685a122a8

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77b978502bb78be32ab98e898a74f9c04a85e2b86e15145b8b1bc5aa77dc67f3
MD5 0624a861d3a2e2f4480dc05c0045e90b
BLAKE2b-256 f18f5e69515f8740845085b8202036fbb488b2cc2ced5a59836cffa1f84a81cf

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d943505111aeb4420f8be4b90b83bd7ff03f7e0bc86f8019df6fd724952b4fc
MD5 189b0a384d676307100860863552612d
BLAKE2b-256 a6ddf4c369192b46f824863d2e7739061f96782ff18ad4f81864ee33b5d44c84

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f25d29c3b76b450dbed084c54b3a16059e968b1efe0d7f5c9e49cf9c459258f5
MD5 ab9979ab0dbf0b46cb38ee7d11828b36
BLAKE2b-256 c4da50db5fbdd1738966725a05174745b2c206c105715b744ab74d74e54ce606

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3fa84502aff1f03ed3c58109706b66bd3eda43f52c95bdefb45f583a3e2a8bd
MD5 f15659f6625c59895fc1e8f11667ba26
BLAKE2b-256 92b3a3a3a2fc64250daec9bdef5348c32e983c0635d46c20cdb3b0e1dfc8b9bb

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b05a6e04af335fc76f18f3c39bda066f4c515595848988e39512d53937437611
MD5 21275f393df3d76b964f8bc50c9eb0e4
BLAKE2b-256 9da2a622556f5641a1d7eb5e4105ec735730c336d2fa401f90ce0b1d677aee4e

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cda7e09675aaa5a3aaf91deb76bf5be46216a9448f8f85993d0e04296480740d
MD5 0f0a556ee563636cbfde4da411b175c6
BLAKE2b-256 24e61d349347c7f79d3fbbf225c078d48ca04ae59a3fb6addb3e0fc1ea762a08

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ad92fd3a781d93453254a4560af3409d3eeba13da2c3ed649050c0165422ca8
MD5 7d926f7792418451d93b378674d2046f
BLAKE2b-256 33bd4307b33a548ab37a7679f8e02c920e356ea2d8b5b44ac4774e2b7f28ad7c

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efbb1a653dbfa348b1a1b3bdcf21643b33d28a43a7aa2399906f56484639e464
MD5 26b08e79435c995e5cda91aed06cdd35
BLAKE2b-256 75a7aec235276ae468de8c44f68c0137b8f59e99dcf47ab4d8daaa8cc0029dae

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c5e3c54b74e7836b7c16f9000658a3f3652e36123851543d1502d671038b9dc
MD5 7b0419ae0db0c58045036495faa61a4e
BLAKE2b-256 5811b7d67dd3fb7a685a01a14648dd3e70db6bda847bbb2f272b413f6a4f5d5e

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92bbdb0b4b7f0fd319690f9b8766398e8ec2742ba117d2a5008f10a0a08b56fd
MD5 65353e6c7afee0b2c0ea442adc6bed7d
BLAKE2b-256 bad28a1ed0e3dcafd58baad85154c6948078f3e7c14a9fa0648275cf2d01c6de

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f85f834f46c245e6dd60891e3eeaf9a628b179ba86d73f39ae837dddfe340f8
MD5 562255a52081f4c5f503725ac88ac309
BLAKE2b-256 f6fff2796ea4c2a6464d1709f3aeaa15586ff97ff9e7fb21a1f9f8de2aeafed4

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64787d4b486c3be863a3f16a25801455f0356963c59af6fdbf46d98279c20b9d
MD5 58074b7b9facc477af6f22a64e5a751d
BLAKE2b-256 5fcfd51868db99da185c16a7bbd5a593dc0aa9d6d730810a31d6979b743aad68

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a85d83cd9ea5effeae25394dc2418a0371a45b6f4d7e351133ad55aa13363830
MD5 bbdcc85d3d1296c961cda915c6c79522
BLAKE2b-256 65bfd2f0eed7777d81c0903ef0c8942b3c89aa63fca41cdfd441259788f7808f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 843869fac83a569e589f4c49a549151ddb364749445f2b4251789989e19b1ddd
MD5 9e17bcef0616f10934832e0a6742ac54
BLAKE2b-256 d891c00df1a079ef208a3d7132a8346b025fca3996f4fc9d86d032441ee4ba4f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 231e718b7b2835b30d4557b2750013f1ff6a0cd244b45f64b1998508a37aa60c
MD5 36ede7b5694cb901a1badd1e80733a69
BLAKE2b-256 8caac9c5328fffd1cfbff2fc7bf91609f2f5cb78fc26792acb43e816d75d5683

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc06ced7aa4d04482f10ee09eccad3f76e8f2343da54b2d0b05c269fd8b5d6a3
MD5 6e44cc03541d29b81c51a51efd596662
BLAKE2b-256 54ad5a8807ddd1b90bbfa72a0d07603e17586deb9edd011a6acb0f5ed3a34413

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 90f681ac73dd943f769ddc1e82b172ed5d7c90a4bda7d8148e9288e3f1befa69
MD5 899c1ef397f9f342d9be3712729cd6c1
BLAKE2b-256 6bb5d8a2869f871d238d25d24f4ad5ce4c7fce2dc685239fd89d3832116d2364

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecfcc6ccb6b737a01939c1bbd69fae4ab51cfb53e5fc36adf4ff540898003cb4
MD5 690e367967fb11a5286e4c4d4850a74e
BLAKE2b-256 d28618fe32aef538212897336340f5e12fb4e2b7d97ee620a42a22d91fc7542c

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac28b22792f54a8666e3ebcde7933b5b3e31f54820a65c9066a6dbb59f00cb5a
MD5 f41f23afcc88abff6a7d3b0f10706535
BLAKE2b-256 2e22a331342678101aa3b83d66a7b2e0ddb3896601df4aa734063bc8e9a864c0

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 816b2633cfcb49f8fc084c3ac04885f713120cce23449d0302ac8c232bc6631f
MD5 fb922a5bc8f7fcfd67b0445bc9bab9dc
BLAKE2b-256 9394197843acee8f10032d3db2330f609c3e7fc3ba1d50f4b57518f9e7a9bcea

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64a5ce40e5830cd23843a2b881cc8d52da0e248b0914a4b066842d7eef56b925
MD5 65b64f74851ba147b4e0541896c133e9
BLAKE2b-256 b4bbbb01510cf27798b5cc42cf345a859b3342279eeb03f7a977cc4defb6e2f2

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1560e94e8de99f4e0ffa8657126e95425a7e2e6e6b2ff216bf5b50fd7c4b7919
MD5 99a26df463f0180e4c01a60eab2a861c
BLAKE2b-256 1ecd98323869725575e577cd105ac9f58deec181dca86599de5402f5c1a65dcc

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e2289e6c1ce51d83b8d694ccd9417670fbe09d8f8c1a2335e68fb0a6dcbed6a
MD5 da61594384c32de6a7972abde34e4428
BLAKE2b-256 bf98a2a98e9cbc5970fea84263f566ae88624a80c17b0bc4053737e5749e3c17

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06f984d7da13211269e25555e4db537def37a2e99d404b43d18a4cc4c52b86a3
MD5 d39566f202b92bd9ef29d05e0fd7a954
BLAKE2b-256 a95f5793fc76aa762be81d815d7d9f10fef3d49f0f0688ffcc59d3ee17508e7b

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc00d22af2ddbe59c1e8f222f22def44d2ae1c395706a8b585c34c4c6c4697c2
MD5 577c428c229024c2504e3ba42e1f321a
BLAKE2b-256 f6584c84c4a0f83fff2eb74b4fcfc8137b68569ff4fc34f6d3be97a4c9b6c78f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f8f105c01671927df0b84d2f44861e04729ccd890f5d41ba3739ee20088fd3
MD5 423e7a99065eeb231790ad8053cf0bcf
BLAKE2b-256 bd1fecc75c6c3dd4b6e91c2448ea54e2820ba0364b849eedd89fc9e49cbf21e2

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5516f6749d128812bdbc72efeeb1a3bdd68b4018048c6bd9c629d03760892e3f
MD5 c4a166c36cf6d8fef36d37356ddfc719
BLAKE2b-256 1c229e9f3529b8039fdfe79ad4196e570f9d62355db335ae0586cfe007339c4a

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e09719b68d9a168017e5521f0aaf80f01496f97011751c8f9637d9e0186bad9
MD5 9a12043fdbb69e0d78c5f366acc7ac9f
BLAKE2b-256 44f295f62dcaabb356ab60715039a66c0d70472a60aa582bd8e090ddec8076a5

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0644f78fef9bab3012d1f133deff72fb2fea5570a321877432f71ea314700d75
MD5 7dcbdd5a018caea144fe7f98db7c9b64
BLAKE2b-256 207607bf91d069ceb48bc2fc39530ef4c6caf30114375e4f3c8dddbb535dcd88

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ebbc466bf97587a839245403801d7a82c7fabeb5d4b7bc711fd79137728ed1b
MD5 26feaf65f9559592d21548fbbdefe951
BLAKE2b-256 a3c628123e5ea70f4414db2328180269f1b92eef3801908532943586f9541e09

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a7d3615cb1dc4202e0f5008fabbdb7801a1ac6910d7dbdada2e498e5265cec57
MD5 658435389a95dbb077ec1a88530e1b11
BLAKE2b-256 46b01ad02042f968d255f6e48eac3b0d71d286e56100f647e61ce881c29552c2

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c4d2bd8ce4c16f2e1bdbebfac0a5a1c11c2a29ad6f96b6d39a6ee7f3516808
MD5 72be2632c87e6d93b8422acbbe78b6f8
BLAKE2b-256 6429b33671da3ac497b046c377803cc52d9009308bb31b018372533c17a0dd31

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e185ea4199929a707ca377066c8520d1101cedabf025bafe5c46559a65becab
MD5 2c4a56e74c4c99386bd9d4f7845092d4
BLAKE2b-256 8c410de11b9f2179da2cce9978c3e1b36944706508d1051ab6252d95d04604d6

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b411f994696a6e15fb4debe8de087dfa6fda145c01242a348b99617a4ef8691
MD5 951cc95f9f0ab38552f420c412a993c0
BLAKE2b-256 2fee41056aca7a3506c465781788388216809fcb7b8d2e924dde4e9812f57005

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a0ecd387f1b26472fbec65b5966d04965492379bab1abdca9d00c1b081d46d1
MD5 257bbc822fa1fc83b536e65661301167
BLAKE2b-256 9699a2c63a1d8c9304eda818b0fa7da11a0f2cf892d7ff96b3cc30fd2562bbf9

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e975590d7d67b067b708a6997c2ae3dcedb9d17006dbfacc52c8af7b968a27a2
MD5 f538edfc76a4ec868190fffb35e0a7bf
BLAKE2b-256 fff71bd9f0f9ff31c4faa301c95bddf7da53a18d8aaaad52413df57b65ef1d6d

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5531515e3cc96ffdf417ebe32adbda071666cda87557b3a50af020ae8152098c
MD5 35fd3ff262cbca70738b4d4fd200ba36
BLAKE2b-256 d287b67fd4c0f69d873b48b547428c33003c0045a0e7cfba0c3cd11e06302e72

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbf53ed021f599a197f321183ebe8cf5953288e9c6c6be2931563b27f6a24069
MD5 45edc7e4a45ff9b3fe731bf0caf11641
BLAKE2b-256 056aa9140c2492d69da22a628a08d4bec5e6418aea13afe3c327b9c7e82d6fd1

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 849488ed7ef09e37c2015e42ccd09a05ba55d5e15b8481ed008866d986a49377
MD5 da655c8971db4026cf5b1bb0bad61ca3
BLAKE2b-256 7fe857691fd58c13ac4abc00cfbfee0705783a8a19d03015ef3a78b5b5daecdb

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67945601b23ae9e73632bbe4c222894f5d17c48c067c5c9b2273cd2122499785
MD5 7085d3558a45b65743c90723e6a47838
BLAKE2b-256 7e4f47ee483f66768081ae6faec06a8231c0f1f40d930bc8576ef8898ea686d3

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 085a6821d91b732a81e7ab2b4d53801c10d3c60087d2cbc09c7a2f6242bba028
MD5 d1ce7d4f83eb384187bd632039ca0676
BLAKE2b-256 f02e43d30317cad1243c8e8388e28bcd06952615a522b4526a70f60945fe7022

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7013be9821aa07d4316e4717b115247f2182dd57b503e746c900e320ed64c46
MD5 f7d27168c0f46d249c1038bbcd417d47
BLAKE2b-256 f9fb68ba82303e447b68a510255eae202137dd5ff80d2a7345fa1860d49bfd1f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7eccfb5dfc4b52894ae927ed3ae44c4d8e1d7e8b0e3e441346bdab43d7764366
MD5 d48c0c32e7d7a8ae457731d24acf0ecd
BLAKE2b-256 22c39793e0519ff7f7c888046a2fe7bf34d5e49ad235687db5a53133171274f3

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75526634e1b183f5e93afd0699eb96a55143e18173e0c663c5fa8d0c2a2ee0f4
MD5 982ac8dace2e855114937b51d8fe1d47
BLAKE2b-256 9a7982d525b6df17981112fd790b9674362aca033f134e1ea7547fd39b81b9ba

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ed966c5737bb8c985a38912bb8422567f12034288208933c0b2af61d882c46df
MD5 32eff1c231c8c85be4ee9d273605686c
BLAKE2b-256 fcef5b69715be435252bb79a5a86fcbceee67ef87fbad5347ef81a02251c4996

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1a13dfaf7b0e8a2e21724c2db66f6c709591593bda2e6ea68f57136da3306d5
MD5 7c4b3ceef8dbf5cf820c566aabb17547
BLAKE2b-256 e91f6c12ec8d859948226ec9017c6ce09d022c7b825bbd197ff401ac36344111

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4410ea31cec2b428425850be52519ad1abf733e5905d50112c42215214206711
MD5 dabbd126fcd00e27689d3088155e9ace
BLAKE2b-256 b26eb71431b5b88ff885c9f3f45604f34cfefeab82c97206095f97234bd2cf9f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6b0f4943769c3d2a134cbef2a857176de2df3f4c6c614d938dd014818de2426
MD5 138ba9d9e33bb68e242638b31c53992c
BLAKE2b-256 e65d2884ff43e77da614708bc032008eeda1c5fbfd3bb4f34c170a93db09e3fc

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e7ccdf186fe9c290ac6d52952b6cf3ec916df88a4acb924b3eeffc6304196e9
MD5 6639cb1b22eb2f0a7dd8a52bdf6fd882
BLAKE2b-256 a73b8a0d41be3044c76cec40c704e5bfa0f0d0eb5eff1186513987cc646148ee

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c924fc41be92db7e2c5e3aaed133084f4d94ad188b93d89af0cd373e33e2c50b
MD5 8ac96da170791d2b8921277d7da5835e
BLAKE2b-256 15600198316449825264c942e88f90c49d4d3789e21f9c9e90a0fbd959d228f4

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b51d486ba4355fb85c5d4a2d0692e4e142e773a2718661a821b622f13c4c3530
MD5 a1a7c0d3ce839ca522f5406ee3581a81
BLAKE2b-256 41a9518ed16cadb969a1a3d534a6b8eb00a3e86a1b139a2133b7d29955383043

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c90495e2adb6a12a7ead0e676bd004e6331f2765bdeb23dca7a11ce53dc9843
MD5 4cfde974d3f8dfbb97afaf16ea4d7fb5
BLAKE2b-256 9aa7a1fd6abaafad8dac73c37511ded3093aaf2c6a33f1c5f1406d1192c4d9e7

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6599a1c2aefc131c73f1c4b752b12f0ec7b1bad273437fcd2fbb83d4d5e024ba
MD5 6e70d52749ef593b4dc338e801f8861d
BLAKE2b-256 f988e80c31a28319e3b40021ec7a2805fcad093c9c778df1ae5a1958a0c92f3d

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 905e3ac96fec464c05571229331a836117d5743387bc80a3b3094cad47caa501
MD5 523ba77b691e065ce71f60ac9634638f
BLAKE2b-256 353ddfeded37783dead2b93a77c5a06faeb5038b58accd257c7b82cfdc8d1543

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 76f79cf316249c886d59d854d8c83d62d8e67a5358d0a8f4d7053b0ecc6709af
MD5 c70277abec881561bb6afec14be6cede
BLAKE2b-256 215d3485505013454bd8d9f31793de0c4db7ce1c4ce60b384eda11105ba33712

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b9b48682ae71a6844fafc5e6d98b2c6be69045b5ad7cb5ba8952c5d6bf40b5f
MD5 48d8fcee213428e1588286ce8dbeab40
BLAKE2b-256 dda57449591a94ddc06bee09454625584998319743bb15938168bd46793196fe

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91cc2a45581cd7e6a9f008ead3367d3bcd8d9fb5f5876453bb0c619a99d15002
MD5 49cf799e772a05f60e218afa5ba20cc6
BLAKE2b-256 ac4e206464fdf7e8ba55e4a3055e245f5baa64d81ab18b94651f40f4896b32ce

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e3a8ea294fa227d41ab77adc1347b7f8e65bb30e05d85c47c8410a0cc6c4eda0
MD5 2ce5842fb2707e7902b8c040338fe570
BLAKE2b-256 5a337d78027f51d95fb8808b6d2782a242f9b2cde083a04932a451f453dcda8e

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 057e71529e789d4a36bdae7bc63448554a46c9c6a1ac9e338ce0a3eebd8b493a
MD5 a35974b176a2df58bcca6e4e4b06d6aa
BLAKE2b-256 0d7414d06d789eb30c510016de595b38c622135d3803dceec8c5bd6d6b5ba616

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff757c0e0a49869cbe9fa26c294289c9613e30c53283145780324c425a3d016f
MD5 f19bea077ad64064dc501de9aa08ec9a
BLAKE2b-256 6621cdd53266bb091a23f049f62b411c43805a0a60b5f0bea4a4a19bced4b2d0

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e184803430329c36cbf799c4eac41f659b98562884920f018f6013c1e75ccee1
MD5 1d25370e0966d47aa8670e251223456a
BLAKE2b-256 863a197043aa7d09e409fb7f126c6d658f1d7e25c394e321a797ee0f47f43951

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f34c4883fbb18940cf46a472ecd84cd522eb6fac32542680e178346b6dbc0fd
MD5 faa38a38dc596ead4c0778f0c1a92278
BLAKE2b-256 4ddabd45d02b29ecc8a38e09ed7fc10b044c1d62f9c63b234c3ce16d77aea304

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad219cc75b92bfebfca94b513444412498cdefc0b478d26dea612cb075e31fc5
MD5 f7f8ef6a6b0e32151f21c54a9a17ce70
BLAKE2b-256 6d198f7970e2e6572dbb687b692803d516525ac35ef4229522e6d811bf95c61f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15b3f18ef10a1fe75d372bf6993bb1a4b2b145823e4b0339cd40c875ebaf0e89
MD5 fd7966c1861c440e5baf12964dbf60ea
BLAKE2b-256 0c82625472e07c7eb679971e84dcf2371fadbfaadba7adc85b2add55b12ec33a

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3be6229c7038775b67495118a64928d7a923d892009b5e2b9ee50b59499ad30
MD5 d42b2714f630769360d6ed58b185b4fc
BLAKE2b-256 00b691a444b3560f7d041dbb7aa65ab57865eef6e0e85f0dcb6569a1afc6f528

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a897909118ae4bef787253f240f1d1a8fc940684dfc45e14dbbc3063ba8e8f02
MD5 72d43f01e102c1f97b281f9213170071
BLAKE2b-256 63487ca97fef59c472fc8396ae25a82f43a3411e11817eab6ce952b8f2e3d4f7

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a78b10d38a60b407c954fd0af097fec34c6847758179000c8f023c520c83d0f4
MD5 d4969169262ab36e2c0b091252f63a44
BLAKE2b-256 718f996e696d0ae510833b4fe6316601db44a32fcee48855c26e4c94088c19fb

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f951d5da51742f0391420b690f65d120a73747c5409344e49e275fa0b118aa53
MD5 bf6974948edcdb8704298d1784bef166
BLAKE2b-256 e4ec681c2dc30900367437a4c1f2ee7dff6cc879bb9eb5abc13690c44a9ac784

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1e29c822673d88710914f4d9174489cca87b60474037661bea7b7d78d6f8074
MD5 a40c41314214668924ca51f7eb3e9510
BLAKE2b-256 d17f2cb46213a70897de1ff34ebbc1baec8ac32bde1ba5bc7f00e2cd042c92e0

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4ac124792608d0e7abfd64258668f68e44fd76101944edfac181d4def9e0f670
MD5 c0c10fd641c704b825ae1e0ff8554631
BLAKE2b-256 f7f2d9bd96e429c5798dd7af87f275daf960b8bde07524d96864b93fcdfc27a4

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0c3a3305447042dde20e8362d8e7df329ecd385b57f5d46217213df4233f59cc
MD5 d1b1e5fc1ee5f849ef819f611418ea31
BLAKE2b-256 ae4a66ad8855b37a9c4f89afec6fce85b38cac8a52eb94fd726c407f11cce369

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 930c87fc6f966876be17426f200e773d789ddb4260598f3b0af7f0b3f7f4b856
MD5 cb9936bd06b498a9585da1d2bc0e0164
BLAKE2b-256 5dbff2bd7407c93be6f43cd67e5f653f16945ebc62c03093de786496d6c6808f

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 124199c4dbda76fe1835627ed4a1e7c981fdde5c1658cbb25baedd1ba0df685f
MD5 558f5035f2177fc9d103a8676de7f935
BLAKE2b-256 9f9bfdae1279b378ff69118d325dab0b5255bf343db176313e8269f65e62af1b

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfc19b2e2baafe74fb2b90c274f9778c5feaab7b37771e879848a5fbb64def09
MD5 c7a99ff0fb656d1f0afa52f5240af2b1
BLAKE2b-256 7b4190eab9f9c06f161a0b8335a0885ecda119e5dde128840a86eca624d6e36d

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afbad63e79f7f9797bde4108c8005f88013239e6110196ecbd9b5a7ee142dbbd
MD5 65d597adcf1b8b6cb09180890a22632d
BLAKE2b-256 0a3c4a79956818467d06926d4884e45f85df6d54c07d89b4039868c9533fa76b

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e4bf1cf63f32d71c16e78ec9cc35c9c054471f679dd1b446d9b4c4db1ae8064
MD5 86cfa13100992db1ce041818c87680dd
BLAKE2b-256 a9736108fd3e59bc304ea01c64495e730b9bade883a8781e5828a08133b5cb24

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e98c0e9dd8fe71ce69e635b4a2fafa513b4d454e455337d48e4344d02d05075
MD5 d7e6c50f9c8fcb7979f0bbef9d6d9640
BLAKE2b-256 423b72af06a6f9f2f8fa49dfced2a9998c0d4c9847af47e7dbc6607122dd4b0b

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c36aa84c850b10c2b3c35e9e085aa6f9a5b2e413cdd38a93b3ed1aff4685d0d7
MD5 960a69272fd281015d71dc770fa8cf9e
BLAKE2b-256 688ad05aad2482256f128695d7273fcc5b050bc9dd36c196c9df710706532c4d

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e417dfdca85fffcfb3c14b5b4bfceef0269f25fa6c9e14734a7f845bc9e72fb
MD5 af5a27e3f7ae80e84ec2c89b5a3140bf
BLAKE2b-256 98f51c25364de775a2e1a54e060c72f37e641a199e414d47e03d9dd9c9323ceb

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 803c88e557e8e0a7809034725b8d287bced7018603ad8efece3beb0f3d3daa58
MD5 8856e0b589ebed2a814af6a9d2bd153f
BLAKE2b-256 371d65319834d582fc43f8195b73b7e819445c500cc80967cfc887bf1dfde050

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e41cf9db5985850644b5c9bc7224b11cfd7d5f76d2619f757e1db247b17af626
MD5 1554942a86013f989002260e194f4c9f
BLAKE2b-256 74fa0c86384074674a4c50fff5ba7e3a10b2cc451ac7a0a88f94aee6e4367646

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20179f833d78bf8fb97f769c436c3d88045476d08d6ecf615d18c56969bcca58
MD5 15bdd33f03e79adb672138f45f42ba1e
BLAKE2b-256 f5927e339abe900901c02db5f095998538b7bac23b4568a9b189a5a731700ba6

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: dcmanon-0.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a1f3af788fc50a6eedcaeba82a5804043c834791f9a782ae89965f3626c5162c
MD5 f7628d0e0590d128088b217d5a4c06da
BLAKE2b-256 14d8f70eb213181fe80ee31e631439e64eaa13eafb3bbf8f41f6d06eb94844ef

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32bc9a9dc6a1d521969e92f89eb1bb3385240fb3c127c09242dd77f7cd0096d9
MD5 a7b40bee0caff9aa587e1dcef3a15d45
BLAKE2b-256 ceb0103faa324a3b72295c7c6a9a620213befba8c34de7506d2ee6d9f60a47b7

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd6530ffcf48fca2c84c71fd305ebd748107253505206418b1c9b2ffe0f374be
MD5 a3fc42f223ade4a5ac76c13832e11843
BLAKE2b-256 0a3022e5b084784e4bfdfff258db10ae6c568c49b38f0c6b0649ff9ae863b5a1

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a133b4b8ea29fa33cd432e7e112c384797fe7fb4727353780c20a8ab40eed61f
MD5 afc298238ac3140fb770955cfacfe6b1
BLAKE2b-256 502db2864c1db78b946522490ccc5fc46495a29c3dbf7878bb98a6c79a3e051b

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f8d2f3803bd695bfd4894c0a19d35e17cdea13b730429f8a5eec63e343266dc
MD5 252e0714e6c4f6ed131156486e62bdec
BLAKE2b-256 e13d2195c21f29be227d3f06e8d469f2d3b1d2f7c243ee930ae0f2bfef641940

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38fef69b41bcbce8a892caf8f14cda94032b88c23312bf57cd4c0ad3a2a7eedd
MD5 28a8d1258dbd00416bdb4a1a35b9d275
BLAKE2b-256 2bdeb458485dc8106cf9aa7be67672d887d4a2445a32b9db0583fd2199f5ef81

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7ff917a1d61ea856101b5690a12f17e34483d7b116c0cc3d7a84f4e97bb298c
MD5 c9c66e4fe0e69048869d4ef019f2cd1a
BLAKE2b-256 3c884b1c6dca1edb3cd476a4296a20c4a51c870ab737af9331512fb9a21cf970

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1703601145cf4cf92a96a8c171459192d8dc9d6897edbe7713cdb34e2ce5703c
MD5 9552bf5b15c2da7ac40b6cbf272fdef0
BLAKE2b-256 6273e31b78855fca1e3980fa6f057e90c610c00e54b9bc519a8b63cda135462d

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d429cb6b32d61e95fc8a47ab21dd3db731e1dda024d06001105e033cdeab22ba
MD5 13a3bfb339e73db9437e95c77269afd3
BLAKE2b-256 2540605122179cdd2db3f0e55616071863b17dc6471ecd995bca4235fdeb9933

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89fec0b24eb193a984ff86a92a0cfdbb6ea9bbf2c4dc5c071a28cc86c56ef139
MD5 7c33b279e9dbe23655aa9a9f42975408
BLAKE2b-256 3753d1d11691340681e4b93be9b0d6de6a9cf261f2be592516c7b12fa69d6a1b

See more details on using hashes here.

File details

Details for the file dcmanon-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for dcmanon-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56b33208e2d4eac8af2811fbc3ab81211aa53fc429912146e7808a3b8c6952d6
MD5 f95d6087c9b965bfdc78d8e0d005a31f
BLAKE2b-256 24ac531bc0a5b84c35de0c7e74fb7c1bf5a2d344b748820b57b1800cb2ba3020

See more details on using hashes here.

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