Skip to main content

darn-it

piccy (darn - Welsh, 'därn', meaning 'piece' or more favourably, 'chunk')

Darn is a python tool for producing optimal 'chunks' from markdown-formatted string data. The tool makes use of a novel 'punishment' based approach to determining chunk boundaries, which in practice can be seen to be an improvement over traditional "semantic" chunking methods. To avoid adding unexpected behaviours (hidden text cleaning etc...), darn assumes ASCII compliance. pre-cleaning to remove non-ASCII compliant characters should be performed by users of the package ahead of time to avoid errors in processing.

for more on the method that underpins darn, see the accompanying blog post. for detailed examples, see the documentation.

Setup

To use darn, you must first install it, ideally into a python virtual environment:

pip install uv

uv venv --python 3.13
source .venv/bin/activate # or .venv\Scripts\activate on windows

uv pip install darn_it

from here, you can import it into your python session for use:

from darn_it import (
    Chunker,
    PyNodeType,
)

chunker = Chunker(
    [
        Rule(
            on_punishment="const",
            on_scale=10,
            off_punishment="const",
            off_scale=0,
            nodetype=PyNodeType.Sentence
        ),  # ... add custom rules here. if none are provided, darn will fall back on its curated list of defaults
    ]
)

with open("file.md", "r") as f:
    text = f.read()

chunks = chunker.get_chunks(
    text=text, 
    chunk_size=500,
    # granularity="tokens", # either "tokens" or "characters"
    # model="gpt-4o", # only consumed if `granularity` is set to `tokens`
    # overlap=50, # respects `granularity` variable
    # return_vectors=true, # turn on to include the full punishment vectors per rule in the output object
)

Rules can be applied to any structure from the mdast specification, along with the Sentence and Word. A full list of currently supported punishment functions for rules is given below:

punishment meaning
const a static punishment value
linear a punishment value that increments by 1 per character, starting at the provided input
reverse_linear a punishment that decrements by 1 per character, starting at the provided input and stopping at 0
triangular a punishment which peaks at the provided value in the middle of the structure, starting and ending at 0
inverse_triangular a punishment which peaks at the start and end of the structure at the provided value, and hits 0 in the middle

When settling on rules, you may find the punishments and punishment_breakdown attributes of the output object from get_chunks() to be of use. To access them, turn the return_vectors argument to True. The punishment_breakdown shows the punishments attributable to each rule in order whilst the punishments attribute gives the summed punishment across all rules. these are really intended for analytical use, not to be left on in production.

Download files

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

Source Distribution

darn_it-1.3.2.tar.gz (93.9 kB view details)

Uploaded Source

Built Distributions

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

darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

darn_it-1.3.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

darn_it-1.3.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

darn_it-1.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp314-cp314t-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

darn_it-1.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

darn_it-1.3.2-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

darn_it-1.3.2-cp314-cp314-win32.whl (4.3 MB view details)

Uploaded CPython 3.14Windows x86

darn_it-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp314-cp314-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

darn_it-1.3.2-cp314-cp314-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

darn_it-1.3.2-cp314-cp314-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

darn_it-1.3.2-cp313-cp313-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.13Windows x86-64

darn_it-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp313-cp313-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

darn_it-1.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

darn_it-1.3.2-cp313-cp313-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

darn_it-1.3.2-cp312-cp312-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.12Windows x86-64

darn_it-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp312-cp312-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

darn_it-1.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

darn_it-1.3.2-cp312-cp312-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

darn_it-1.3.2-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

darn_it-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp311-cp311-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

darn_it-1.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

darn_it-1.3.2-cp311-cp311-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

darn_it-1.3.2-cp310-cp310-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.10Windows x86-64

darn_it-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp310-cp310-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

darn_it-1.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

darn_it-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

darn_it-1.3.2-cp39-cp39-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

darn_it-1.3.2-cp39-cp39-musllinux_1_2_armv7l.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

darn_it-1.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

darn_it-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

darn_it-1.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

darn_it-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

darn_it-1.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

darn_it-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

darn_it-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file darn_it-1.3.2.tar.gz.

File metadata

  • Download URL: darn_it-1.3.2.tar.gz
  • Upload date:
  • Size: 93.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2.tar.gz
Algorithm Hash digest
SHA256 9e57c6322ffe77ae819d8c0b9473ef6bab0add3946448787eaf18d3cc70afd94
MD5 24eadeae9d0ab0de187dc6ba33ccba5a
BLAKE2b-256 037b89fd01e82e96c794c596925980f20394f9743da624bb74f58ee48af03b3c

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f15028da848c903104fc9b59f6947a9ae0467ddcc3ede4c5823d916b65c8b47
MD5 d5b92759b2b4ea515a9c087bbb5e79a0
BLAKE2b-256 98fc25e12906179ebb22b34030eb37f9ed924050fd129abc9c9c05afc1e688f9

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca5350336591febebdd49bfd7632658fbc0f2255a8a149ed335cb7d5fba9f9e1
MD5 42f2294b33831097980af929168ce2ec
BLAKE2b-256 66aa065706615aa92890fd4b0cf87b535763ac3b6a782b7bd38f5710a0eda661

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9cae5a13f98201a5164347cb59d0c50073a07cc344145a1706d1e02fcf199703
MD5 93b4cca5e5d4309d23a63afd68a1dffb
BLAKE2b-256 b64527ba3d51adedcd5ffb6c3e5e7fcacdb22077b7ef364e2b6a223e5665cc2d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d343b67dd0465964929181751c605f123b8f9c1c3b334abf54a6f51d133b4f49
MD5 7f90193f563905646b9268869c9d3b9a
BLAKE2b-256 37ec1c415e846b2b784290c49fd2b56b71153e3114262c439d3021b9e2a25c89

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bc01ffd8e10f37bdb3ee80b5939cecc6e65d1c479ff866f375872c079db221b
MD5 e70d77ff2df978d08adf913eceba4e89
BLAKE2b-256 98041673a156b8922622cd63c65c7c0a699b1595cf17065285ed54c708a8f211

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e2f8c86baacdf2ac1db69f8cf0db5aa4dd99b3e0acf7e25d8160ee95ecc5b18
MD5 54152c035c352e46444d961584fe3c89
BLAKE2b-256 8d660556384b83e2fa8d7c88e6e65eeeba709f502c70444ce94767239bfb254e

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4193ea166a93bfabfd53e6cf0c79e398e6e003cdc798be11a61aedf5d4ebbe0e
MD5 54add80b18c1b797d7aa8befa0110b9c
BLAKE2b-256 60748f43ae49878a3031fc40aac9345b835dae7ef5e6808da2882de71e99e380

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df8f116c45f5a4b2a752edf149e8409961c876ac3999dd74ba96bac85389563e
MD5 7b44f6d86f9d3cfad1f46589222efb23
BLAKE2b-256 d5db1abaf031b14516b417d1302c5a8565b54a783e76c7695b63a726f5d905f8

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90c38978f7532153d06bb47429fe93bbec2dd329ce0d750635caab276ce4038d
MD5 d19b0c0e17a07ab20043cb3c2fbbfe7d
BLAKE2b-256 1eaa8ea552e73d3d5da902848c73cadfe090f149e3127743d18446d7a29028f8

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df6f4653c71d0202dffb9f579ad5380cbc7cd9a3efde1986c701d7927215554a
MD5 92b83f39ff4b3c3e2c25994020605a53
BLAKE2b-256 565ece31112767bc41948d709dce9c31c228d388cad47e68dd1f87748464dd67

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1835be9fb65c425df03baa6ab0e812121a6e0b7124d0b7e9a860b53302c3e4fc
MD5 4cb5142971dac0035edccb40fa6604f7
BLAKE2b-256 134b781001d5374168aabfab53a54ca1dd34b431392b88eb9e96ad984e313e24

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71c26d3516340caa6a96e1ad1c72ce497cdb693c8f322aac83046834dfd9052b
MD5 fd22df3631e0b2ba871df040ca364ef4
BLAKE2b-256 6cce2adba336f13f43c1be40b104bae763ef7a479349ed94c02ac39e6e4bff9d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c313ab5117864ced702a1cdc6bd41139ef8b763bd7a3b7abbccd10a3acc2880c
MD5 be5d4e0eb96caebf9215d63eb7130438
BLAKE2b-256 3725fa4a3ee8606b57e40a439a650190f13e05e57ae3c86963d1638eaa341d13

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d508189c6993eb586b05085cb1c2517192b7f93e02a6609aad5f10029d37087
MD5 2dfaa004444ed812b2d7bb8115ee6a2e
BLAKE2b-256 fa294a7d76f3880516aa78e00aa3160f560d4d417580786e40e9a98395f28247

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33a2abef8275fd44586471a64863044eef6d3360f2fba5f9fdda84fb5f93c9d7
MD5 1b9c46b06bbebb73cbdc67ee461bd2ab
BLAKE2b-256 bf9414060cda773eae497265112fbf44337ad1aa61fcbae0c92c62548bed872d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51f6cfffbfad7a363ed60644bab9298d4d437ee255adf9174fcad7c9bf0455d3
MD5 1846f94e285af71371d05eb87330b869
BLAKE2b-256 f21240b0b15504d2df8576270a3a0d05927c90bcc78db6ad3b7a53c5c5dae093

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f510f861d10bd4a6f963be9817d10d3d272f3bab7d7f43bfd4ab9ad7d6893c0
MD5 1855f15d9ba229336e69ccd59c3d6a5e
BLAKE2b-256 b5cb446d30d623d6b1702eaa46cccee6e3e5f3317455686a6abc7c37d5387426

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19594c49a1325bad16422d9e2613be4c7503fa7b2d8f7a73de9c4cd41789c78f
MD5 dd3ea87e7001837e00840e47334ab479
BLAKE2b-256 36e72eca42d2b92271a3bd4a29a5beda662bbd6df4050b8f1149f74d27c2489f

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df772ab5395242b52b4b632540f3f8730853f008030b7e0cf90eb7dc281f6f75
MD5 4a007a6c61952441818b4b25f28c31be
BLAKE2b-256 a764017d69b1e9cced389594491b91403e2f83744ef3d9104aa97504715d1e4f

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 558512897fa4ab6e3a6d04de4e2a3913a2a594e10d67f1cc24d703178309f0a9
MD5 b344af1732392381aacb16ff1fabde09
BLAKE2b-256 d44e42514866adb2e82a22cb119d6ba645a86f1e004e71f9402b5b0cc4e3ffb9

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11e539b0c46086bbe53e6432d2957affe20f129555513014fd6a95277c411b73
MD5 7be283fa7f7e5d2e574023f3e8d77e21
BLAKE2b-256 fe76173372df6a2aec7e397213d186a24b44654cab9c92dfcaf88920f0589ffa

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24e09cf1b606ba0b8197dd0a041ab2f912869e8270ed9bcc50b077b8d33fe7ad
MD5 38214aa11ba8c7b7ac7226e468839a18
BLAKE2b-256 c0b852f0474b20cea3b9a6e41b8e22d665c743ee8fc5a09a0855fb55432b4658

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc275d59259c3d7bb8541eee9ff1b6449e078444f0c129048699281e0bce1e33
MD5 edf3270e9cfb19cd745731ab6f685aad
BLAKE2b-256 ed2a3ce436ccbdfdc982640411d05cba423c7c4109920f2925df1ce98b0e7ac3

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 444f109c5fed6d800ee11c4a22b22b7912ec3b11a4847484cd14e3ba92a9b872
MD5 544ad01a27249140738a7ca909659943
BLAKE2b-256 0ce4f3fc7e192769b534f7ca72674703fffff7292fcb13f2da925fbc5f5f84e2

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: darn_it-1.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 097e0df79f57f4bfc7f5b0f67c58bcc6a7113068a3c7aed24053a28efb776600
MD5 8736b945ea8b1106af9c2ad911ad0af0
BLAKE2b-256 3b35f309a76a389acd05299f1610e0c4fd86748ea749d2962377550342f6cadc

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: darn_it-1.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c2262151339c2087c6c5740fe046d6e57f6bec1789a24ab64160418e76a10047
MD5 d25168b26e5d5d88f1639077ce66b1f5
BLAKE2b-256 e6947cfc525ae211d012c6c6d72a33f4c7b125bbdcb271be5cd5bf76c2b20f6c

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89374548c790b2267ede51b91c6c2305ead59e4c1a1dffcadf711509e5fe88ed
MD5 b37eb409c16dfeb27257f81d1f0d2641
BLAKE2b-256 0909794268f8af59fee7e13c34589ec8dfbaeee1e74290ec172538a6dc2468b1

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 262585ca936be613156f615b493c839ec129794e220b621c28d5b886ba0f352e
MD5 9ede056d79d74829ec7fc2b0f3c5165a
BLAKE2b-256 033c47f854772779bd62ec002387460484bba726644af544d56c50e0ebc77437

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b777285f1807d669163f696daf5fccfe25870c19402e8293801ec8a32377096
MD5 043a1eba39032d47007497979c78e19b
BLAKE2b-256 449483ca6f654a4e702e2351d749e125d7f7a9acb69a93a35526eeac4a70a722

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dead66907b104d73cab60549bcb05e05b6a47f6b6f63a0bba6b95af59b91b45
MD5 e3ca9475ae225bf197292ee3278c46ba
BLAKE2b-256 afbaa595a3a055fe5532f6d560dde3746968834319f3148806afaaa1ebc15dc7

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4eae9514aebeb17f5d93712de7936ad973cd0fbf3d0c9796d0d3ba701b708f5
MD5 2e9c930fae9ffb8433cfcd3eb4a6fe3d
BLAKE2b-256 80b80bafef19a576fcbe7bc93491efe91ff700d1099716285ffeac088c0b0496

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7795d00c9cd6c1c59a02da06f0591ce491b85dafbb13203f768f52287504c70e
MD5 2d1c3b6200d43b255c8a45f04e52c203
BLAKE2b-256 745cfc221b9c3b51ac8424c86dd34a3d245156ec1ba448021facf73eb966effd

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e2332940c103ad9245acac6aca44272e342d31c1bb3155a3d80d891b3d8603f
MD5 04a6ed0a26c4a00435609f823238036b
BLAKE2b-256 a383e3850670fb7354305879895a338947b6f76ebfa6c29502a61aebd1e562c9

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24401bc9550db3f4c73015a3ae884f5c80004d7617ea47239cf848b8d1a58abb
MD5 38fcb9be8f271f01680a23bd527dab84
BLAKE2b-256 da4498d11320a44bc0cbfeeff9ebbb090c0637b36fed0dfbce5938a24385b7c4

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce0da7fb0385ed66f6613e02eedf5172d517b84e20d4b221d7e718c3b19c914c
MD5 b352f39282a9e7f90a78e77c4ce7a60f
BLAKE2b-256 d9c4e6ee2eb63be826f8bdf1dc480ddf2cd5203959df08c54d78b407f0019da2

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf57ed194f899fcb6f297fba456d6086ac7ea510b5be84052bc036c28be5391e
MD5 05ae2bb4fc384f1a20a30904a9185e0a
BLAKE2b-256 17d0e096402bbd09e9babd9e30710ad7423c8dd80e91f3c823906e00054c4a0a

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d33cf4447f6b10947f53d6e81194cde754f10f24cb4769ed905b765050a50c3
MD5 dd37ad869ffb76acb7c24eae54c935a7
BLAKE2b-256 73529e1f59fdec15e9a846dca701c37fc1e540b7d3e265764dfbcb73bb2d9949

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: darn_it-1.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b2d303212fbf5c04cb7952836925ab3876135ae404284e39a751e7b51ac40464
MD5 2c16a0090b829aaf888645be36187940
BLAKE2b-256 66927281a805744902f08f947b4846b1c79d3c6168555a6c9880f27d4fc4d350

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a932bf25a300365cec86c6279c6a8bbb3a31e406fbf6fe2df0f1e43d7c278f7f
MD5 941b0b3e572a242d2cc26dd5a0313953
BLAKE2b-256 fd3f4cc793e8aff3ea674f0dcf9c06c283afb2c47c460f3ad107365b3de2a773

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d162b579cbb0f572da7dd6e58609de343a51abed1d1762fd2b483a723250e1ac
MD5 1f27eb54bf2d84ab54fba01cd8a3395d
BLAKE2b-256 2fd56f6aa51390cecceb4d85ba3cfed97d9fc0313da91c55ee905c9192a6987d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10a1fc229db3a4b0fd06bb25dead2c15fc5b5e470b607a1b5b16721a644cdc40
MD5 32d124d7575c439158d1c371afafc7bb
BLAKE2b-256 894dd322a8716c4c587641c4b6672060b165d13c36533820932d93d497d45e5b

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6528644c4711da7d2ff3293eb148d5cc9724d7dff0fa3cb5c4ddefb0431499f
MD5 244e255b731dcaa3c5a9657b567169ef
BLAKE2b-256 6d02c57cb71ca7a55aa316b4ab6b1c4cb789dd689566889ed0829e11f72de4d2

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef48202c1b237ca01e853e56d1f3065ebfd584be0aa3a753245e996823bd021
MD5 067917fbbfcced11b29d029804a6f1eb
BLAKE2b-256 9798c0f8d03856896dac69346da73c6fc31925a991fccb48c0e11323974bdb41

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fe1c2a5b8ab655ae5ca15b0329958cdeb126536af3f8e425814086eedc2d327
MD5 1bed919c4b0fecb9c6321ce6551835f0
BLAKE2b-256 ee3a000739acf2bb097ebfe74245491d8c306e0e7ea09896f295d32d37e5fb7c

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2af36d1dd3729acdd9aa84969ff1420d7fd5f8ff01114a73bc612337efa775ac
MD5 9363fecbb911a53423f70d88befe4390
BLAKE2b-256 0840adc67f4d5ff9bac4fb5081f4503803aac33e7f453810519bfeff78369ee5

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a292bc5987d449daff8a7b3a4447576f84581670ff6cd6fdebf860fa5e6819e5
MD5 61c0f99a959ca8a055ec77f2ce894059
BLAKE2b-256 940841dfa5b77ee23b334b3abe0c0238f9613d38456f40be0cc67ed5147db5c0

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a54f9269bdd244e3a373bcfda0f54aa966a2860e52304cc8c929c1cf39e4bfa2
MD5 4a802d2fb9ac5dcf81aa944ade18bfac
BLAKE2b-256 c8e5c94bbee72504ef79b4588e3eec22b327b370ce63502fa933a760c2237ed8

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa755980c1580ff83b0de002f1a2e559df24e0ef964b1bb3f2a9d2d369be0130
MD5 782ea39b21603704b135aeeed357ca92
BLAKE2b-256 381c8f563d611cf23a5d9127c4e9fbd6ae9e8f9befd8674b1e73b3cffa54e170

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af566fbfeb18fe999ddf22e8b8b7e6382d4a24b88b5044f8f39ab28a77c6117
MD5 d947628af9ff7e220f8f1c4d85be003c
BLAKE2b-256 ec379fbe47f69237f46bbfbc6fb0fd611b213752f040ab919602924e59745729

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: darn_it-1.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0ee6cf1e4662699331637424d72741d7704a54dd64e4fea8f2c731c5aaa4bdb1
MD5 093e7c0a90a186f233ac1dcd6045e11c
BLAKE2b-256 c62aa02ab6369798ee2c98d25601e689184efc950b15bd32e1c40453b9e95b9e

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e184724d102d95b70d73b14d8f917d52cbafae60c88739d02a0fbf98d910e4ca
MD5 d7318d8ab7c29bfef95646a22047c295
BLAKE2b-256 3fdbf79251e14207bec4560769634ca70626a809b97d9a6e6917666446740181

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 880793f5bd8f41469b3a02d268efce5616c3e1166d25f9615c3a1aaa74ce4dda
MD5 770a51ef65c062b260a21a2b2bfc63f7
BLAKE2b-256 08fa53284474a64df8facc3588668967444de5efa62f835970da59695c1a6431

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba544d92da6cfa9800344119493ef1ee5af1b28d910bd5d945c1b32e9d5a2a24
MD5 a02fef34e9f6ec8abaf9d05f194dbbd6
BLAKE2b-256 9a7aee53c8abf1525f6278ac0b768adbca9a09271f87ed4eb07e63b1aa98bd9e

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 036febc01c6e601c3e90f73372faff1cba7ab1ae0008e223341fb48bad326380
MD5 c02b8fa7b84e564754fa04ce77b63623
BLAKE2b-256 06d089eeea54d49d836b7ebdab126bbda2e15b9092f8359264a7c195bb279466

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 303359afce3759f6126e2452511a0d259d392fed521df27999eae5061e61f6af
MD5 23109979f1882912fd80acff1f39c568
BLAKE2b-256 2c52e936374514e4816f5adc6468c69d7cd14f3c3a852ca8fff1517b9bc84bc1

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb2591c0f595c0ca7339d4e431698049f24162b25f3e676348ab36bce12e1256
MD5 9f565ac8ae9ef3a13e31fc946e9fc2d8
BLAKE2b-256 5e049601cce6bf31bf4cb7a8fa203b2b3de72b1cb4ddaed3f2416aa758d16404

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d70cfc483fb348ca9eb81792bd1c79c4f4b3b55a23a73f251c376de252536fb9
MD5 bfca1aedc0029366f3aa7a64d6ca7f0c
BLAKE2b-256 f10397486e6db02cc7faae3d6c41a150f79bc4b2bb62f93e491ab22daba1445c

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e98d97bd8dd9f6a39fb29d4ad66c3bdae58cc555ad14c174e455dc5d5f68bf13
MD5 0637328f9311018bb50a82fef6904f8a
BLAKE2b-256 ca10c39c9a4d5d43f8e12ad60dbf25e031df428109b805993f7bdc198e304beb

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb471b21d901fc9e86b530b0b6fcfb3b63aaf760bc680a4b59a3379325c6a9d7
MD5 5eff3d9431c4c1626e403e9725282742
BLAKE2b-256 8c93b1e7175894e2bd991071cd111c166c2dd301c2d0d0e1d3d80c981c925f77

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4f90c18ada37baa783e1b23d6e78660aa5a00ff669ca35f90b6bc8267110ae1
MD5 a1a643abe083fa768aa27efef9a40800
BLAKE2b-256 847c839ea35c39ee62aea79348cab5cc3b23bd1fac0626b0e137dce77aeeb1cf

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b05fc5d5bbf4a08c4afbbe3fc65683b4346887d3fa6bd3396309478a2d7d6555
MD5 46c5f8e100007f1e0e75410932596188
BLAKE2b-256 3815fb3c3322a89c68a2a9a7848409728846e4f46615113356b0ef8b41203feb

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: darn_it-1.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b7d74438670c03eaab9374c451e136d1f88092107ca0e6c4cc42366dff61fb38
MD5 959e7704d35da8812e664f12f929fca4
BLAKE2b-256 93e093e150fc14191138f3e0cf86fa676027d9dcbeffd97893b76d6981c93b63

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea3a79097db684327f4b223ef4b4d71b14517ccddef97a4abcdb8aa96c6c02b4
MD5 de1eb8e4e8a498ee8f728387a544a580
BLAKE2b-256 0aee3762e4c3b4c645e00133f5c784e4a9480e0430629c9612d71f4f89d66290

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dacb86a9c5b3b357be30f738fdad99b1125f7c3835fde0c840d66412f4bb2d8
MD5 78052a0bb1a3dfbbeecf7531f0505a15
BLAKE2b-256 5620184f10116402e655926fac8c3c9fb8b4d7174322ec423dafa720dd58244a

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e44158a8e7e3d746816bc595f9dfe5d491d11ded22728e4c5f91ddfc87e5de1b
MD5 40a115cf18073d3e0e8b64eed32f5ff8
BLAKE2b-256 e374834dc3df03c400bc4b23c912a2ff86975faedb000ce9e33b05b9a6cc2eeb

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbe26ba3eeb10aca1e60d6748b0474870e101ff52fedeb97ab7da28355e068ff
MD5 c1008d51f9696520773a832a5a6b5117
BLAKE2b-256 19fcf986bfa997b9e64299ce7a564f805e86ff36c27cf7e1625665ffa6cafbb1

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f54b90f130cd9ffc25392c2f9029e14faa5d359087de1138f36e2de5880b7e3
MD5 f17f7aa21f3442976cde2f5df8d72fc4
BLAKE2b-256 c699246b5ef5cb2a782c20370f7950a0db20e199c77948b62f2869a4d2f5e383

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9815f20148434d227ccc3bc274be8ab49ed3cdf2b76e2538ca2a724f18774e39
MD5 bc635cf5a12d05aeba55aafa6312eaa1
BLAKE2b-256 a13d0833cde30df0748987cedab57428d6a8d3788ecf3987654b5a0b98865bda

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfdd1696e0fe6acf935e7d268492edc35f49914898aa429f146e50917d70e5a8
MD5 d5a2d536dcc4520f4933dbf793fa47f7
BLAKE2b-256 10237b27ed5dc3be065988b4cbb04c8385e6b9af832f4ac3fcc812e43929840d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa9310cd33707b706ff0c5a730e8fc267681594da8b376f5e75f3049fb0e9275
MD5 25372178ef70f1929a23aef814382675
BLAKE2b-256 595144bdfa988be8abe21ef71d150b94f3a9fb8f84de177b170139fe9a9faaa3

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac0b9238fd01ccd4103abbf1c93cb8421dba1f5da85e8e078182224fe335c3bb
MD5 3c54802c9f0f6b4d983e5dc64d698c37
BLAKE2b-256 fa7087bbc63b53e197eb563a69ef0e91b9afe60a274ea5bfa6e101bbcf3e0e17

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84c0c2b3cf493dbf21b0b280e4c6fc64ebd4b2de0f293222aef0b9294ccd19f8
MD5 be10a74882ced22661f0f3f298414f33
BLAKE2b-256 f66c5c9ac359a8b648d0662c54b5367950baa8c6bd3b0d6649982d31bd159771

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d81741feea773ad5fb4054367b062c6b1b2f85df70586975b5848eee88f5e412
MD5 5dc404495fa3d9f89dec0880ca01d0cf
BLAKE2b-256 00988d68e81aea5be67ce6f273bb237cb5742e09ad1f3ee6403da72ddfc687ff

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: darn_it-1.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 206112d4077ad70e93175fb9c85ed019874a5dc68a1ff099d466635b77751ee7
MD5 3327871666f324289a22972b73700a8c
BLAKE2b-256 0fd37d240439a54f3799f24827f49b237fbd39a1d16e1c6a67926b3de7f56a0d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54e9329aac8bb413855e56795bc716230483ed80abc10edbae1c25ffa2ee62c4
MD5 02f60949c50da19021202cf37054b1fe
BLAKE2b-256 fd8e9ef5febee7aecdb8bb4e8978a3153685dc618a03b2887ee92924219c72fd

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66f885cc55cd3162cb1cec7ee45700867926c6bf4482d11dcc518fb617737cc4
MD5 fdcc4aa2edd0886f2a4183dec1c6b9d9
BLAKE2b-256 4e20f295daa52e8081026e5979c33214f3c762940a210ecaf212108c67904d71

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16429e0cef64d61225264b07a3506f953abbc800906c38f0aa5e56bf926bdf00
MD5 cbe3419c39ef74ce3e87c7ae9e413c4b
BLAKE2b-256 82d6beaab8f0616d1e1a18465e7b89befc6dd1b47ef97f0ac2427d7696e78344

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 882a279aeb0046b17e16ea6e19ee05c54ef256e4305d96381ffd9010e413d193
MD5 c3efe5e8cf536471342f7db637a9e2c1
BLAKE2b-256 2557cf481d8dbca78939c7f637956add6d3d6dc0fcd3193bc1bb9ccd51422f89

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785d6d8c40d0d31fa04420632eb7286df044dbf64c47618e259db488eedc8832
MD5 550e96a0aa1dcf297128f048732159bc
BLAKE2b-256 f2f76bddd8e7bc44bc4d22d01bb47387d8c2be043f04832f19d17bce25fbd887

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ecd335b822c719095a343fb06bc227800ec2e9ee513b9e54d9586d18f4b9a99
MD5 4cba99573f8ad5e6fc5d7edba7d607a3
BLAKE2b-256 368fb3168c3d5b0fd9211761e07be9767df0e96f86de83e6c1690d3b6276b5d8

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ef2258126ef0c541707aba283a4578ab50c91c8af552889e0a7fc673f4a4af8
MD5 7a33f3ac12a3b4dd035d730eded05c2d
BLAKE2b-256 da5871236bf73fa33d3d4dc81720a70973eaf1d07fdd67d968740a009f72d0ef

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71c1b733a1fd81093aac829467bb54468b4a7810f66473173fb69d9e44ebc2a3
MD5 1b4545551cb55d92e9f9fd16886f5ba7
BLAKE2b-256 618f3bc78d9893252c19e0f73953ce324ee71f14068fd7c12082c49170ce0136

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2f8ab7f0ef16457f84dfd459035e582ade1c80080f7dbed0b2cf5c95efe49f8
MD5 ba7198b705de81d46bc7b0bdd19943cb
BLAKE2b-256 ed589743b52d9a06039717a379cd195128f636a73e0d7aab1f0feffd8b6d5250

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3fb29190c0e2b65cf58edda4d4e42f039f278e43ff3de5f71baa4940abe047a
MD5 f13e29b06198df48418f48c3eb332a1d
BLAKE2b-256 9393437b74c0f2bf5c2e614e87aaa888cd30613991bfb7606909817ab6523d72

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 965b535b27fac95948c1630497ff6b0faf919f766d17d7edc0168a2ba7f8b8c2
MD5 6f33b0443c22761c19f9416e5c0e3ca3
BLAKE2b-256 ee1f01748612c03034af63db3e8d5d84ee745735a8162079c15a9f96bf13caa9

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3e186c887f44931c79788c2d0b4ad7764fd3fe5e54104346dd54fe60309acce
MD5 dcd36e39e6647efa69cf4f78a0013f29
BLAKE2b-256 e55608a533415529b3978eae3dceb14a27c8c141bd01db8c6c0fe8182bd2485c

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e340ea5ceb2e6081fcda9acfd99ab2f94a03fd69d2321f22201804840cac17d
MD5 771a0f1f7705524669f3c73ccfbcf7cc
BLAKE2b-256 9526b4e4217981dda021a619047b3817630b643346c749da951599986e01db40

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e26f75cad5444a481ded1da4612cbefe1410a78f37494b482af9d8c3f2cca96
MD5 b19c061dad277ce91490da96c9160498
BLAKE2b-256 b1a94e827b5634835a683b41085fd449f4d314fc2d006ed787781a927fd467ab

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a241959cf7a5e73465a02213d4bfac741f7f21385839c7ff3fcc01c1996a1b6b
MD5 bd5243b53c9aa8cffaea6b930dce95c7
BLAKE2b-256 fb5be63c726ec764683bac3b92996da4e2d94b24f75798ba94d2c4d8b4406b1d

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 601f152fdc106c55bc82429966baf2669bf5d8d5d870a5d483b7ba0406ed457d
MD5 b17b9726101e5ee0eb17b9e6dd5d3006
BLAKE2b-256 1c92f30332ec41adf692eaf00897231aecae7fe4deb7eb2230391dad3da5552a

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7db3dc43f7c9d4c0ec25a77f5a3114ad94b68c08aea319e5b3035e904fb2e8b3
MD5 d05e3eba45067c4a8aa74a0455e623e9
BLAKE2b-256 5ccc43b371c461ea657f83b414a8d9ea27c9fbbb4d241653ac31830638003133

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce136f44939567cda2774f1775d7ece35d32d523d418c50d202b4e2c7b8a001d
MD5 6c4d896bd9ae822ed7ab580c20f63806
BLAKE2b-256 bc7a48050a804c87a5082fa832c9001711be259d8ca678434bc8aa9c5311555e

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddcf1598533956994fb9475b62c35add4d9c319d01e907afd22d7d9ca9d50d10
MD5 2de5bb5112cf45d476bb542c784aea44
BLAKE2b-256 324d779d1d3dab750e208cb114e317a39522ba01ce89d79a5baedf18c97495d3

See more details on using hashes here.

File details

Details for the file darn_it-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63968133ecbf22ff62798418969259c5b963ef812002901821e690680dc9e5da
MD5 18e455eafdbe681c6f8707c3a20eef2f
BLAKE2b-256 bad3ae5e7751ccb8d5b9d1010cd3bcf908cf4c9f5e45957ac94bb83c289f2380

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.3.2 This release

95 files

1.3.1

97 files

1.2.0

97 files

1.0.0

97 files

0.2.4

97 files

0.2.3

97 files

0.2.2

97 files

0.2.1

97 files

0.1.2

100 files

0.1.1

111 files

0.1.0

111 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page