Skip to main content

An opinionated chunker for markdown formatted text

Project description

darn-it

(darn - Welsh, meaning 'piece' or more favourably, 'chunk')

Darn is a rust-backed tool for producing mathematically optimised 'chunks' from markdown-formatted string data. Due to its simple interface and mathematical accuracy, darn is recommended for use by teams looking to move quickly past the problem of chunking at scale and towards more interesting engineering feats. for more on darn, see the accompanying blog post

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

chunker = Chunker()

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

chunker.get_chunks(text=text, chunk_size=500)

overlapping chunks

You can also specify an overlap argument to pull an extra number of units (characters by default) beyond each chunk boundary. These extra units will be repeated at the start of the following chunk, allowing you to maintain a small window of context:

chunker.get_chunks(text=text, chunk_size=500, overlap=50)

darn will output a list of Chunk objects, which include the text of the chunk, along with the start and end index of the chunk for further inspection.

for users who would prefer to use tokens over characters to perform the chunking (i.e. chunks will respect token boundaries, and your chunk_size will reflect max tokens not characters), you can use the granularity argument and set it to the string "tokens" i.e.

chunker.get_chunks(text=text, chunk_size=500, granularity="tokens")

For advanced usage, you may wish to define your own rules for darn to obey:

rules = [
    Rule(
        on_punishment="const",
        on_scale=10,
        off_punishment="const",
        off_scale=0,
        nodetype=PyNodeType.Sentence
    )
]
chunker = Chunker(rules)

chunker.get_chunks(readme, 500, "tokens", overlap=50))

a full list of acceptable punishment types 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

NOTE darn assumes ASCII compliance. pre-cleaning to remove non-ASCII compliant characters should be performed by users of the package.

The Maths Behind the Magic

Darns 'mathematically optimal chunks' are computed by recontextualising the problem of text chunking to be a bounded shortest path problem on a vector of punishment costs, and using the classic dynamic programming algorithm to solve this problem.

a brief summary of the steps involved to achieve this are as follows:

  1. Produce a representation of the relevant structures in the text
  2. Apply 'rules' with associated 'punishments' for breaking them to each structure
  3. create a vector of length = length of input text, whose values are the total 'punishment' for choosign to cut at each character
  4. run the dynamic programming algorithm over the vector with a maximum chunk size to calculate the optimal cuts

more information on each of these steps follows.

1. Produce a representation of the relevant structures in the text

Darn makes use of the rust markdown crate to produce an AST of the markdown text. This AST is transformed into an 'EnumMap' object. the EnumMap has keys equal to the unique values of the Enum its built off, and its values are vectors of start and end positions for the structure type. for example:

# Hi *Earth*!

produces the following MDAST (accoding to the mardown docs)

Root { children: [Heading { children: [Text { value: "Hi ", position: Some(1:3-1:6 (2-5)) }, Emphasis { children: [Text { value: "Earth", position: Some(1:7-1:12 (6-11)) }], position: Some(1:6-1:13 (5-12)) }, Text { value: "!", position: Some(1:13-1:14 (12-13)) }], position: Some(1:1-1:14 (0-13)), depth: 1 }], position: Some(1:1-1:14 (0-13)) }

which would create the following EnumMap

Heading [0, 13]
Text [0, 13]
Emphasis [5, 12]

Importantly, notice that text covers only a single range, despite the fact that there are multiple 'text' nodes in the MDAST. this is because they overlap directly, so are trimmed out to avoid unneccessary computation in future steps. similarly, exactly adjacent nodes of the same time are merged together. This is done to avoid double punishing the same index for a single violation.

2. Apply 'rules' with associated 'punishments' for breaking them to each structure

A Rule object contains:

  • a Node on which it runs (this maps to a value of our EnumMap)
  • an 'on_punishment'
  • an 'off_punishment'
  • (a plain english name, used solely for debugging)

the on / off punishment allows us to tune rules to punish (or reward) a decision to split inside or outside a node of a certain type, for instance if you wanted to encourage splitting between paragraphs you may have a rule like:

Rule(
  name="split between paragraphs,
  on_punishment=50,
  off_punishment=0,
  node=Node::Paragraph
)

You can have multiple rules for the same node type if prefered. The reasn for including off punishments are two fold:

  1. you may wish to actually reward splitting off a certain node i.e. give a negative punishment for splitting between paragraphs
  2. there may be situations where you want a non-linear punishment between values, for instance you may decide you never want to split on titles, but that youd prefer to include at least some text after the title. to do this, you may provide a decreasing punishment function to the 'off_punishment' value, with a static (high) punishment provided to the 'on_punishment'

3. create a vector of length = length of input text, whose values are the total 'punishment' for choosign to cut at each character

next, the rules are applied. each index will be punished according to the defined rules based on if it is on or off nodes of every type with a defined rule. at this point we may choose to reduce this vector to consist only of the first elements of each character. this mapping can be reversed after calculation. by performing the mappings here, we will ensure the following algorithm respects the token boundaries and that the chunk_size will be measured in tokens instead.

NOTE the tokeniser will be selected based on provided model name.

4. run the dynamic programming algorithm over the vector with a maximum chunk size to calculate the optimal cuts

Here, we just do a bounded shortest path problem. the jist is:

input:

  • punishment (vector)
  • n (maximum chunk size)

instantiate:

  • cost (length = punishment vector, initially all values oo)

  • cheapest node (length = punishment vector, initially all values are None)

  • chunk indicies (unknown length)

  • start at the end of the punsihment vector and work backwards to the start

  • for each index i:

    • if i + n is greater than the length of the punishment vector
      • set cost[i] = punishment[i]
    • else, find j s.t. i+1 <= j <= i+n, cost[j] is minimum in range
      • cost[i] = cost[j] + punishment [i]
      • cheapest node[i] = j
  • starting at index 0, look for 'i' - cheapest element in cost vector within range n

    • chunk indices += i
    • move to index = cheapest node[i]
  • repeat prior step until optimal chunk indices is produced.

E.G.

inputs:

current costs = [5, 1, 3, 2, 4, 6], n = 2 (can jump 1 or 2 positions)

initialise:

costs = [oo, oo, oo, oo, 4, 6], cheapest nodes = [NaN, NaN, NaN, NaN, NaN, NaN]

steps:

  1. costs = [oo, oo, oo, 6, 4, 6], cheapest nodes = [NaN, NaN, NaN, 5, NaN, NaN]
  2. costs = [oo, oo, 7, 6, 4, 6], cheapest nodes = [NaN, NaN, 5, 5, NaN, NaN]
  3. costs = [oo, 7, 7, 6, 4, 6], cheapest nodes = [NaN, 4, 5, 5, NaN, NaN]
  4. costs = [12, 7, 7, 6, 4, 6], cheapest nodes = [3, 4, 5, 5, NaN, NaN]
  5. cheapest option up to '2' from point 0 is index 2, so cuts are [0, 2]
  6. index 2s next cheapest is index 4, so cuts are [0, 2, 4]
  7. index 4s next cheapest is index 5, so cuts are [0, 2, 4, 5]
  8. index 5 can hop out of the list, so the final solution is proven to be [0, 2, 4, 5]

5. split text

Finally, we perform the splitting on the optimised boundaries, and return to the user the perfect chunks.

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

darn_it-1.2.0.tar.gz (22.6 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.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

darn_it-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

darn_it-1.2.0-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.2.0-cp314-cp314t-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

darn_it-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

darn_it-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

darn_it-1.2.0-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.2.0-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.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

darn_it-1.2.0-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.2.0-cp314-cp314-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

darn_it-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-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.2.0-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.2.0-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.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

darn_it-1.2.0-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.2.0-cp314-cp314-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

darn_it-1.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

darn_it-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

darn_it-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

darn_it-1.2.0-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.2.0-cp313-cp313-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

darn_it-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

darn_it-1.2.0-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.2.0-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.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

darn_it-1.2.0-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.2.0-cp313-cp313-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

darn_it-1.2.0-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.2.0-cp312-cp312-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

darn_it-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

darn_it-1.2.0-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.2.0-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.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

darn_it-1.2.0-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.2.0-cp312-cp312-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

darn_it-1.2.0-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.2.0-cp311-cp311-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

darn_it-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

darn_it-1.2.0-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.2.0-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.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

darn_it-1.2.0-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.2.0-cp311-cp311-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

darn_it-1.2.0-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.2.0-cp310-cp310-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

darn_it-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

darn_it-1.2.0-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.2.0-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.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

darn_it-1.2.0-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.2.0-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.2.0-cp39-cp39-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

darn_it-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

darn_it-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

darn_it-1.2.0-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.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

darn_it-1.2.0-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.2.0-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.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

darn_it-1.2.0-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.2.0.tar.gz.

File metadata

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

File hashes

Hashes for darn_it-1.2.0.tar.gz
Algorithm Hash digest
SHA256 566236c588958e4373ee1c1d005994bdd9be67325884612929cedf948fe593aa
MD5 57a86695940d8888b2daebe790f3989c
BLAKE2b-256 3b4bd147c02912b3cf87d43c5cda4e9948489a3566e1b3c33bf83c7b019f85dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62c0db07653a2e6ba7e3a36b57a9b1202cf48df41bc3947f55b3d8954f6f00b1
MD5 62a3bfd506a52a2950dede339f991873
BLAKE2b-256 3b9211d46c21cc05dcb4621088475dc76683253e4bcbeaa958579668d27f6be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5701bd541d939c990a7e2985dcc888e96c6f186ff5d821f597b869af7f78c80
MD5 64f89c7dd6d4e632ffeb281ebe7c43e1
BLAKE2b-256 299d8773466685f9e7cbbe9c761c548a0ed94a3144e31947049a7e71d1da3e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65456eab80dbc15cab49785a7a3cca0f50fec8bc067ebdbe1fe2ba4e88269383
MD5 b6b51404ac060c7509cf1048906627f8
BLAKE2b-256 b4aeb5aedd6540f868d8e86673074a4c2f22903d417913503d37291612dc9806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 955525b0349e153090cd8bb81854bec6948695772492269a4d55666dab1b176e
MD5 7ba68b5762f7ddaf66f7086efef3689a
BLAKE2b-256 88f487e4c16b5c2e0958e1f5bb1fedbfab3d7dab72d66586dc3aafe61263fff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d73e7a161fbc3774b1738ce932354821dcee86ea3f59b5cf1fadd18c79e03a1f
MD5 56ce8cbf86b558895e012d4f990171a9
BLAKE2b-256 54953f724b6e2575e7630d1223e442041197cd1a8d2ba68d73ad56fbb60a3a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2e8418c76f8848075fc638a17c069d22effe0805e46630ed326b4b1bf23a4ff
MD5 bea6a5debad9af7dc6f0a65a7d9bab5b
BLAKE2b-256 05bcdb610b9ba7405f97ec42959577e58a30b6bc15e8d8d5d246b132fd80c866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a109224d247776da2e5d715e9f44bacfa4893911d7cb7ededd7e90ba20b7bba
MD5 b8730a48a9a4f854037f62a20ed0f842
BLAKE2b-256 0aeab556409b9e4edf62c60bf8659e9c31470aabc73d1ab03f11f37e4c59d8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3e62701f5e89a8b812014b89c7bda08be140ed55be1af6d1add85890f0947f2
MD5 e6d5341df36246e3f8ea6778eede7714
BLAKE2b-256 f2329385404ad04ea35b7e3dff98c386d261f0fe1a2885863ad2987f8d7af498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89be1b3fc54d9e6753ccf2058498d7ca13bf65623ffe58a746501ac5ee60449a
MD5 b23d4718ce305f752adb643b8d66f24d
BLAKE2b-256 d8f8dd12a8bb9720b5ca5bc8550013bb2d7eabd2f44288e3e572bfe93e9b849e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e4751719db495de0895628fe4ec17c112699a25d98c11de311828f4c76f4ac6
MD5 9f86ab3102ec8c5d4aef6da6527caa00
BLAKE2b-256 7a6c231ed8b18c102a6c56bdb898b5c4c4e6ada27c12d4d77d5770635e8df1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4c50be8f24e69c7ef448f022e2f918a1e182b90b333332ec0f7cf643a341466
MD5 7990a91edb5835cf65eb0897af085eae
BLAKE2b-256 8860604e9315c007c58eb66fec2c36e90336628b51677277952aff28df5ae4da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50605077272c45d937d1bb678d15377dcbed18caa0ac4e1adeb084679b71c9c6
MD5 c8e805949837c43fedef4284b060ab75
BLAKE2b-256 e616e3580185c2fc7e5f737fddea220fbb80a95bd333278dc2a396319ba1fbbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a53d1df88ee11bea01e6cc5750c56bc1a609e09749cc24c6f59c35c2999a9203
MD5 5f7c2442b86cb8f424cac4b285e1b25c
BLAKE2b-256 3eb5b69e2bd2b9cfd959af7c7cd309cec3300cc3e16d0797ad53360a9e28d26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6a0dc499ce9442da5f3069213988f63a08e8817cac64c093da88e400bdd6be6
MD5 79103bfbf71c7d2405ebe434741201b6
BLAKE2b-256 f7365414db91030b92b832641f264dc58a573d966960a0f2e305c3af2ef6aa31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 017df9f5d8c6b98fd29343d70af9059e3ffb4d1182a86c669b21ac877526c28a
MD5 e33d7eb0abcfac95ec23add5bfb36a7d
BLAKE2b-256 8d0f7c781cc1280d26825a3f48b45eee60fcab52e91eb61d20f2a5efbd27d20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d874b743a3f66b91f8f9339133ebc2fde3da904b328ebb49c0e423d55c0f32ec
MD5 094952cb396343102d3e912b7f7ca935
BLAKE2b-256 478784455a431b0024789d08b005c8a2456106f3ad658aba5bf9ae6ca21dfd91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a02c5c0a9eee4d085c34c1e4824f3b94682cc767435533d0e56a9f35dd3379b
MD5 a0c92d0bc05d2a6599607e4eed7e2d41
BLAKE2b-256 f4848156d0e40c10e4e66e9ea612ee2474f4b0e6c3d11383940c7b3f358afb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18190ffb4262196bc69ac1d4a3e3ac753e7d21b7de3bca301acb718fd4f46f63
MD5 0702e90c90940c218a75d46112016652
BLAKE2b-256 307848925f9e4311be418b48f16eafad6bb08b77ab355d8bcf41640344788c81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.2.0-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.13.1

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 511a9d4517213175392a5a5d1551fbaf03510c95d0aa20a233be88df234e176a
MD5 782158cc756e7587e8d42e7d564b2b37
BLAKE2b-256 c3abb1370f984a3a87e8619225c8eb13cef050a1859b1742c3060696aa3a4e17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.2.0-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.13.1

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d0da87cfa1d21c524aa79c0d069c839a378029c817bdae587b21d7edf1696d47
MD5 ba1532fe9814584b1024b59c7c175d0e
BLAKE2b-256 088c8f0a0c546d4992fa8cf3e827185a62796f5caeb81d63d1f6e71c5f4d18f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e05a886dbf9fdde7aa576df6afa731cd734f08627a22bf88e1d13f8ccd01152e
MD5 289ed441ae22477e250ffb6f1e2f9304
BLAKE2b-256 0d6c5cba9190de8497ec9d80097c9a001907d567a54b7c2f5b25adccc9087003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5a20beff3f091aba2f1524951b079edae1d1f26b626de2d45c9220f33f8ba41
MD5 c1b296df659c0ef40d6a3dc6d882eb5e
BLAKE2b-256 f3cec2d72242db3bd4fcc2c9d153ec4228fd6ac88355248bf8614a66f45d2b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56d506e39c00b05d873b52591b5874726be72c399b7bebb9e5eeeb0429321512
MD5 0f7cb8de3bc9ef4613ed90a6ef85f467
BLAKE2b-256 3d624dd6ff4d46751a75dc77a77549d4b5ade1587b2aeb84c7b2c58751dcb57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac2d9f909980125a6dc9a3901fd84d4b378cc06f3df652f3f9467a5f7e16045e
MD5 a53dad6ce79ae96a2d6ef2777d225083
BLAKE2b-256 6635c9af6e4d576e854f39be8eca53332bb0dc309009ed7e5be8160d3f201ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24d87583d28cd416cf69ee78b1d4a3a4af31e3a0e48e5b951e82b0429cca3474
MD5 6b4f14429c4435eb2e11ae23f68954f2
BLAKE2b-256 92e45ad45bd3c69efd664fea01dd7451265c86cceb5e8d064315c53241e57a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92b579d791d14d63321c7330462ccd1a4dd2bc3811b12bd9c0460e480f43f391
MD5 a8b81686563920b5a1a7eeff6b08fce2
BLAKE2b-256 779a1d0113a4cb7b4e14b2fca68c6ac3bff3583a3840bcbbfa7a15581ab3e74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a596065244ca1bceeaf756017014a7eb0c6ff51b19afc596f56b6abf8faa9041
MD5 d788011cdc215d07f6c215dcf3abb326
BLAKE2b-256 1d81084cb4e0a06c7ee55d7b722e0284fa3131134c4a847e0bbf4ba3e8aa55be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47cd28ae500ce38d9184d7834096fd456d65267b66407106709deb248886f1a1
MD5 d11231496e3bb4207bed162b470f30bc
BLAKE2b-256 94386f13909fa1b85daae141a2bfb1b25807cfb8ac383ed3fcad0f89e3613bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c5e5b70040071e97e414e51f5ad49b426def84eca14a2b88f5ad2da489f814d
MD5 3e37cb1b7d5f09dc2b3f912f941a4871
BLAKE2b-256 0fa9c4db9662df2a5aa447f9af4593b09b1204479d59a997373f98a91b142916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36a4d92a10f59292f31370a1ccc799f3820b767805d102d24ca0f3db6e5921fa
MD5 f6945c86ba3fa03f696007f3390dcd0e
BLAKE2b-256 da52d96a4a4520f1ef9c694fc8a4602e6ef1704ce607a2716b661b18d639ba90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f0829408b2ae65e138f16dd8cf40822b2918d679b31b3500221ecbf0603a8a
MD5 12db6847ec6303444e1a654a3d014e43
BLAKE2b-256 1ef0301bf290474d33400ae0a666f245050f858539d4049690d1d6f69948431e

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78f1e0303da7e5fdb5401951b730a6aa218a41e587c7d0104868c25ebde65d45
MD5 92c6e2a87fcfa2721d50d866ec10486d
BLAKE2b-256 852428e2d91d6f93cf1a045ba4aa510c921295f8cc8642a3cbf8d0933a6368db

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 200d75a8dd1f1f732b80ee31ad234258d299f7f449f1de3ce73b7466cd5b3306
MD5 43dcd5abd811fc3642f69c42ef2ee4d6
BLAKE2b-256 e7b9103d6902451e6f76a5d7832832df2ac17f2239c2dd65390371f3ca1e7092

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b859bd41adb01390a7c4af1f8554ba7ab6a6875fe9fde17e4fa4ba337cabff6
MD5 dea163e11371440d8d64126de6f5c832
BLAKE2b-256 936a8c6c3ad215cbe129d2f036df30d2f9e8a09e7cd47b8db4cf47edcd8dcc7e

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e16e17004a2cd1aa92b217c60987df592d2542c8baf493edeb2f8aae2367eb3
MD5 ba5d6f018a85264794783b96afbc9e14
BLAKE2b-256 8e9917ee1d2e3fa24f9f4544b173943c8f58e46e0aa06e8706bde201b6706e95

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1d786eaeea8d834c44607287b9540170298ba153a872904ce5e87b9880f48a5
MD5 131eb4258ff810118873988ccdd429d3
BLAKE2b-256 7f2bc20859c759988bcd4336a8ed0b28c1c1b8bb670a860492594e1e269b2703

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1af48290dcd49b683b7ff09bdf7c19f6c116f0dda1830d131d1916f114d2ef7
MD5 8767beaff085d5d18f801f6e1128392b
BLAKE2b-256 03aa868bb0064f73bdc777e0924b3d9794e925029646aae61c563b2c7f34fef7

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3423858430daa1c171e56041845ea04739104e8be5bc54e06b9e6ed1222b01b7
MD5 e542bd6223f8841b6f134506182437a6
BLAKE2b-256 10e19e160a2f08357f030a5d57ddb0145bced9d43cdd39b209dd1e905d8ecaca

See more details on using hashes here.

File details

Details for the file darn_it-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 087078610d49c38c3562de79e2136a0fadb1b6116bdcc538899f5133082c2d75
MD5 3c1b51c744c9cf8e313cc5acba10de3d
BLAKE2b-256 e6884b58c7b8a4a19cc9ed63b5f45fa8f862d59e132707c0c5a1567dda931917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.2.0-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.13.1

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 38f617a3f4687db935970352a51c8467706b98c0ba897f413664d7cbc1cd48e0
MD5 51de32f87bdea71302d81b723582ac03
BLAKE2b-256 ccb1a40e73e07062794ad92549385ffa111f8be1d452ab37b35a41ae19fd6e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb920536d0b7d4ea7f72a6cef5aa2e2dd220734d1fc3771075f34d4809784739
MD5 8fe7b81d36d765c8a70b33cc83965750
BLAKE2b-256 289860affd3ac7d1755676828a386af8112d77dab3a82fb759d03971a063a0ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17a842abb3ab83c274f28952e25224dce6ad8484ea6f7c1761120a46d19a4a37
MD5 9697441af27a14528e523ff0c726c045
BLAKE2b-256 fa37e3508b67b99154a662b90c56e6cf174deb008c0352953688398d1976fd6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0fa3bfebbfb3c5925d15efa137a7ad4625a64339d6cb789db280ba49ab608d2
MD5 a076ca1a909c4e74a6ea4fb7169422ce
BLAKE2b-256 5010ee7e2749b3a3f91f059ecf25d8c9c5d6b624006010deebd2861777f38d4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74be209cb0a5017e951805d0c726dedc2833e9788a1cc7a5161b6e5abc4d1819
MD5 63905a7417a8baee53a56bb266e7b352
BLAKE2b-256 1c8a4f6921207deef5c3eb48ef4f6662324c9bce593951eaac40ad359ccb917c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f43d21656e3cf34cdbbe9b7b23def444ddf35b82e92980d8523ade5a7acd113
MD5 2d4fb07e8327840c29cde26496fbbfaf
BLAKE2b-256 e1ba4b5216dee2f5e6aff19db7f7135d3c1d074ec466eed72921fee76b2bac33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f54a2d4ec1533f21a65f96250f91bba9f8f697fcbc6b099122f7a6918d3c35a2
MD5 0c813b44a1cdd6b185a6a67cdbe78a55
BLAKE2b-256 5cbee2fd1bc984a88b5685e5a223a584c3cb07a4389023b835b293db480116a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f48bdacc183fa1bc30f5bcd77a5774a05e907346ba36d07ebe79ea6612133e3e
MD5 56aa1fd39dde686a117ff0d5e5932f05
BLAKE2b-256 e1fd814d6e0ae54c13fa0353cc6ed805c339c6af2da5145763ceaaa4c6414a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53f9ab33d6a6b2f807ef80ff97dec7528c5bb8f1c07c46e4829aa6905e1cc8ed
MD5 d2126bd9a0375d77e8dbd4cf2bfc651f
BLAKE2b-256 f25bd5f01d2ffa3862ca87967a44f3a690dc09155986f3abf6a05b62a91e9ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 820a47e3c219c6dae0b4667638767bcba6ed53f1fb1a8eec7f35bfeedf6d053e
MD5 e0fd087402da9bdd4199234a839621f7
BLAKE2b-256 6860aa08c0e33114151888ae478506063cc31ea04a7508ecea13b2c9f962cf35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf36e9aa53e9273ed8f00d42c2896ee82172e95d8e7002168a0375d43f45ae68
MD5 3d730f240d312c528e3bb71beee48254
BLAKE2b-256 1aabe5969a6580cf50589693807725ae0c26d2415ac298fbfb1e6d456a7010bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db0623bd138b908b43caf9e9f9732194a9cbc2fdd24956790a96914bd4e2ca21
MD5 f89aaaa62b4295dae8ccc9aa4d9acb43
BLAKE2b-256 ac49638f6febe3428f742003edb46f5c71a19943d0d88506bc79781a688d487e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.2.0-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.13.1

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c5358f2837cfb323284f08cd11e8c56e27e6c479d214c4e8c06bdcb17735bb38
MD5 861c19962bdb8959784243f60768972d
BLAKE2b-256 65e69c59db790e2c8d324e57d309cdc0e317719f750b11ee4208fa9eab2b8c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c19b3e02a0371c9e22ae3b7d920152166995aecd9403adb385772a828883d11
MD5 30235b670bcf028514c4441edc05fb8f
BLAKE2b-256 3e848cceb1b3a7a0169f1fe1ce6cd72e5ea9cd6fe57d1647bba041bc78aac718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b9157be76dab0bd03bd8ba91561812f82dd23f525fa7d9c205a6b6cb477fbcd8
MD5 73919664fd2115ce50c3a0bc668b71dc
BLAKE2b-256 f20066fe3cc5436ce7e99edc2f21c6c744f21716942d94d80c4c7a1f28d94f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9091590363a66bb95855b04116d429ef86213578702a0b9f7bc1ee2c12c6c0e6
MD5 bd240209140922007cf2f7d6a291c73b
BLAKE2b-256 b4ae989aef2c85111e6bd5f6f0000bc0341221543600b427044cedb43c89c49f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c769a23250cb2fd52aa93f48cb54ddd333ba90a9d2b4257b67fe42a4eb67eb13
MD5 b3ef2b50811da9d96b6253e628ac0023
BLAKE2b-256 3033b17419b6d0ea53dd58759a27d791058bd7c1c055a160a486f62efd525eb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57f2b072f0c52f15250916ca7362245f8f5991ed64027eeea081e0303121f609
MD5 86b9bb2d7c918eb5f210b3119ea55a97
BLAKE2b-256 02504cef898a0677b3512c36867826af1c96ad5b7003232c54e4f76e1be40bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37ec3a9c23081b775545dc7b94d254a28d5760312b25837278351f80c70d58e9
MD5 47a906422471578be9ad21c6e08b0767
BLAKE2b-256 22a7cca801d3bb5274b00ac40644a993aba6dacfab6ff4f790bbe7edbff07faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41e06c24102cb49aa611287c4dfd5abcd971930fcc63c192e80a963340eeea37
MD5 b4a699f77897b3f91726fc54c0755488
BLAKE2b-256 6c3beba4176d92dd03181dbb80df9d010930c3224707c8bc7abfa6b09ed78a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b712f5ebf4f9e74500abc38054178fee0ab8011d49790a78a9e982aa8067b2c5
MD5 79b9e8d9fed2213ec2b0c27c197505f4
BLAKE2b-256 19019c98200835dee8620a1e0abffc0563c5255e2744664e58dbc6507795e668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24e1b97b4afd94ab21d503c141db5426f11fc546109d258dba6716866e77d368
MD5 a184999f7fc096f98beebc81748ac86d
BLAKE2b-256 bf041f3eea0eac79c10c9c92dfe522e97452e9335d844c909dd3405f8d1162bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 627190dc963f84c11103aafc52eec8225d137e1bccf8fee9f5e181396b591d54
MD5 198b3e73021b50dcb7fe7193562b714e
BLAKE2b-256 b86e9a40cc9c451fbcdfa649801a04b4a0ec09908f437f9f260ad76e58f578dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6cf1369631ee79d2ddae833b74fd089884f73350ff27f4c8ba0fc488988bbbf
MD5 591f28b4bbdbce3b7739317dda2efc6b
BLAKE2b-256 b1f56786b54838cd6de9d49c3efdece2191b16e6e6aeac11b5882cdf424d7b02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.2.0-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.13.1

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c59c971bf840036eaad974dba588641d8390a53b40ac4e308c7e7c1ac6202f65
MD5 2b974681e483672d6508a02500e08c4f
BLAKE2b-256 549f5bb9913b3145c515a5f7e6d205d2e3722f199aeafda2c8959568795253a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffb147c8348de316494b4a1fbc313634c4525e55d691bdf45bcf892a6ea607a7
MD5 77ffbd11b7b7f00894e2ee25e545473f
BLAKE2b-256 8fa42179971eec7b0af93946926e53d61d72c4a10d9c6bac99d201f891753477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1ae91b6ec722cf63a67a921a21bf5b0f94bf5cd74daadf20e14663bae48e9c1
MD5 93a5397b8fcf68710154ea45fa61eb70
BLAKE2b-256 de7b456797a80eb9682362dff5cace06516763f477a6c4277852fbe38d4050e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67269bed35dbbead4c1678ebddce11e4eb5ecb26c7f747b7a3cc96b8a8015052
MD5 fc058c22b64a520108d2c19b24db909d
BLAKE2b-256 04cd48095703d0a932038bb660fded333554e555d2b97eafd0bab8f75e19ed84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1824cb882f522ca751ceae332c76234edd22a25b7d84af9b6cd660cd8ca6ba82
MD5 67ca2783605ccf3063618e9ea82ab02a
BLAKE2b-256 bfa1cab3d4d39c820eca1e85958215acac84184c20a2c66d9e487750406dba1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2249af693d7166aba209b70eb12ea7e58eb19169f7a28bc41de8629dc8631648
MD5 778f7a757e05cfc06a41bdf8640e1354
BLAKE2b-256 ae922708d54afe7417c5ee128662603716763abe32f579e7b99e8d6e196ffc92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cbb01148f56ed98f949ae291665ce6c40b0c5e90ee30d8f79f0993cd4288938
MD5 a82259f18b88db98ff20e7a6ec77ab0f
BLAKE2b-256 e5d2a573abbc69b2681aa2ad39636ee691a6c3277145f01dfb09da15e4279109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cfd5fdb080776ab768b4c7010fb4264a5686b64685fffd2f0a76139a7c79ebb
MD5 9d3bae0af045133d28c71cd4489c4da9
BLAKE2b-256 da371997535798ec2d9939bdb200da6e31cd7573f7d8ff016f4ef7ab800329d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8937b6b9e18a0059440c94475bebb685e6839f217428399e715b4b4ecefa8ae
MD5 365cda230d02516510c3da754b6f03ca
BLAKE2b-256 c7ce2ca99267ae9f73aee9179d4c302bd8dcd7b530a395623ed91ccc52ea5d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d8c180e88be0679478bf3bd183fa61f727a6a70cde15e32096323e60939aab9
MD5 a1bec3d7da8506d0523da4bfcf19f900
BLAKE2b-256 1d4b93ab572c71da1b698b7d83185c7cd3e8361a4e06138fbc055e949c0d67c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4dddf3b6fd617734ee10acf7527963e032f597ea4cb99e8ec9401c8ccf9bffcc
MD5 e4e1e3ddf2998212b3367683aa4b0d9d
BLAKE2b-256 7ee011f27dccce01d6351ba334cad8f780724f80d0f947fb69c6d69ebc0daa56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f425a29a0bc744378955be49348d6d3da16d204e9591e21b0a5f3f3a0f133aa
MD5 01d553ad48182bff3b287b09edd138e6
BLAKE2b-256 679cd82c2c3178869aa50d615dab824c9bdc7c20fc880dc0e5832c40afe5892a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.2.0-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.13.1

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 672b51bccf9d54e561693d329c6d1018219efc1a4ee5a7d6f749a4819183ce03
MD5 3f1d8fbc0517236cfd0ed98bab5ba601
BLAKE2b-256 fb13c170fe685aff4deecebdd203d523b0ee9554f84b5f197a84943550e0f659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6873b43d886d9396a282a544923bb8e7a5b1d72dfed3ecf4e63b068cf18ad7db
MD5 6631a69aa0469642d24359422b599f5b
BLAKE2b-256 477431cd9d22aa113f9d845501d716f01ae3aa351e42052ef24724fa0a08a421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9761e4d43064fe856ac1f5b124f8613bf434f59958428314778fc1324aa1c53a
MD5 65ec21f4b7d1fbf5bad22cccedb4a958
BLAKE2b-256 fdee4c94b608dfd4251142e07568b74718487caee3f0ecb865cf116fb9e032e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb543832fccc72331d8a4cd147f0a768a4da7e3e028ee8082922ff3f43f043f0
MD5 4ebfa8b6ba6e1296417c258e4093e93a
BLAKE2b-256 8a12a33c6530bafe63978d6979f28396c512522b9019423ba3a9bf273fbfb804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4065c9ba7d4aa910539fff5df0e53990b166a5778fee7190779830350bc6bacf
MD5 739d5da007f9232576f5e65d5d11386e
BLAKE2b-256 81d476adf1d294c11f32fad668d2c3be7b288e8f7c6c331c9db8478ec34f8308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 135ae3938c9c261dc6c7400c98ca0453c7c6609916eba5fa876da19be804fa9a
MD5 ad2d12e4139526a03218570732aace91
BLAKE2b-256 da3f95fca2801b6faec9ec2701598bb9491dc1069a10dd2fa5950121f0388b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa348157270e04bc9f9dfd2815b9604a20458daf11932d9ca6465707418bff9a
MD5 d3da44a034b93f9a385c716e70e70d1e
BLAKE2b-256 97b5e4538f29a21dbed9fd67d1120c531e24945905179d2d42349b1ce9b10737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bc02f7c6008e8960fc1a3fc4a8bdbff074d3de9d0b7189997306d05201dfa00
MD5 e7924f20260e1cd59133d394bf6ae92f
BLAKE2b-256 3c514815443dba4461cdced41d5f818266e9bfa7cae7b1dd5fcdde61a688b7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23f1a75f3cb6ffd00b621159dd314376f8d0e376d38caabc685cbe75e775c64a
MD5 e740c057ea4f8c4bc044a538f66a4736
BLAKE2b-256 8842d452915ef1d351cc4895bdbd22ea31ec20098b93e332a1222a4b69894ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7099f3700efad983a7bcc29872122f0fd81331c8d8d2d4faf483d6cfd7c62ac5
MD5 da4b846ed513f74bfc085fc07b8fa60b
BLAKE2b-256 b9c0f813c3afde74f5ca6bf7d4f0f1bde64891e9d00a7d99dbb4e6688942df67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27483c9c9cb348fbf5a01556d4a67ce60292499a309d71a7a62be7b956cb2d2d
MD5 b77ffe1372a53573d8cea509266959ce
BLAKE2b-256 041e273630ef0470d9a7b8e463279a17d2b6134d8b00a5255b474507615cfbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e854ee638a9e40790d51a45ee969b794a474bc8099400ec9050b9fcd8b14bcf
MD5 a892aebe0ed31de81d3614893ed8944d
BLAKE2b-256 2375510ee706737606c72ad73f2fb27f478e452fea0b248665930b538a993b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dddd48aa10d92e18a5843ef6fb585c7e8fdd0eaa6abe1055581ae928df6d831f
MD5 193bd6895f2abc0bd5bcea7419402c50
BLAKE2b-256 9ac45d702db055c1a4a81108eda9f2420145e95d238aaa139a1da20b512f1256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 589e886c410e1112997e4586e99035e1442a2fb82f925bbf806c2df1d80ddd7c
MD5 dfcc1090fd6b0a59f80ded005402d0db
BLAKE2b-256 2a15c880b89825b31d8d411245451f7631b80b8daad0bd34fe66b5d46df8b4d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d92af8424d1a8c3336cf8386a5ff8d7fafaceac321b4e889743285d4ed65e334
MD5 425d9679b30db59f0d3f947f1531f46e
BLAKE2b-256 76aa49740daf6afd8df793ab2c0ba751d9db781f9b454655f12b9a2d3f13f4a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 885c5fd9ac1704b5fc5618400b472e2519717f207d6477edb39546de8e53fd9b
MD5 685ee152cb47dfd9f6cd5d0e02492c5f
BLAKE2b-256 9839058b10df3f9e3ba07482d5bc33b7e0e3f9a7cee9254aeb9235d72135e32e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb3889b8da5f410a2e673ffeb00c87e3dbd76dcfc8b4ae4518d745fa7a02dc5c
MD5 03ed3d5e03dddf6a88b5cc89b18032d0
BLAKE2b-256 71c97a6d4a89b7097ea3f344f6c6aafc730fcb684da32f3473f3d15cc8ee9948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67320a2e5231a8becdc8bcdf8f83ca9666e6b9be641169bbcec0f9fee24821ea
MD5 a2fe6f03034207285f9a5670dfa4e9cc
BLAKE2b-256 a44cceb6973e61fe7fa798f43cf7c7a92f51f3f2e7f059f8aa2e50554882d0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69b86480c32745c14ccf88fe09fdba1a70b3d4eb3d9dd1fbbe1a010e881fa39f
MD5 4609c6758826e296b177fbbaeef4e3d1
BLAKE2b-256 f48e05cc960af31000130b197668a147d77311078b6263d20046f8608c32e6ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8921d2d1c4c83d8cbc9b0c6fa1d4488ed683a7526ad92719d5cf7715fb3c0ef
MD5 4ec87356d69f8be7ef96e1a88d7579be
BLAKE2b-256 575141d7f5605b7199f7f473fb033c2def9fd32d32120ae9180c5970e4dbf6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b59507650392ea80e31a3ccb4e96c3bba16423e82623c08909f257bae51b4e35
MD5 3ac8654361d671a6a87af7c4b2a8b72d
BLAKE2b-256 c17339ea2c7492da2ebaba6963bd95a869aa2ccefa61fa43c5a483290a09df15

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