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 - it is likely that specific chunking operations based on context will outpreform it for teams who have the time and desire to manually produce them.

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)

and darn it 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.

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

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

sorry its not an Enum in python, maybe someday :(...

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.0.0.tar.gz (19.7 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.0.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.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

darn_it-1.0.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.0.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.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

darn_it-1.0.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.0.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.0.0-cp314-cp314t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

darn_it-1.0.0-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.0.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.0.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.0.0-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.0.0-cp314-cp314-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

darn_it-1.0.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.0.0-cp314-cp314-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.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.0.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.0.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.0.0-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.0.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.0.0-cp314-cp314-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

darn_it-1.0.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.0.0-cp313-cp313t-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

darn_it-1.0.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.0.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.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

darn_it-1.0.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.0.0-cp313-cp313-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.0-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.0.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.0.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.0.0-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.0.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.0.0-cp313-cp313-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

darn_it-1.0.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.0.0-cp312-cp312-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.0-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.0.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.0.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.0.0-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.0.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.0.0-cp312-cp312-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

darn_it-1.0.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.0.0-cp311-cp311-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.0-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.0.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.0.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.0.0-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.0.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.0.0-cp311-cp311-macosx_11_0_arm64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

darn_it-1.0.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.0.0-cp310-cp310-musllinux_1_2_i686.whl (4.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.0-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.0.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.0.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.0.0-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.0.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.0.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.0.0-cp39-cp39-musllinux_1_2_i686.whl (5.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

darn_it-1.0.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.0.0-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.0.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.0.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.0.0-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.0.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.0.0.tar.gz.

File metadata

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

File hashes

Hashes for darn_it-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3139b1914e3e1fb66aff64e7cae7f2a6a9024e702100665560d6dbfc519e660b
MD5 3f824a3d938f6eb4b21c67d5ef7c13d4
BLAKE2b-256 fb146681ccf57a4b7cabd21ca9b6c650942cb2cb464e3ac89c89760cd73573d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11c7f90551e7118832b812287eede0cba9b2e482e117fae6c3454d77bca943d3
MD5 0633e09225325aa16736d72942c24d2f
BLAKE2b-256 32cad6e92335e9cfe1332080d5afa5ff9e33a8d7134a51fe34261cf0f89231c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9aa330cfccfce933636be77521c0485296a3dc2a77fac81e216fedd20fa39531
MD5 a2189d79ecc615ee71be5e8861a48792
BLAKE2b-256 209bd78fc5cbb1d7275dc88a5f167af887e55b5bcb93aad55d0f981c40cc407a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e87de74841bda61ec5a0ebcbf0a708bf4fec1d51070692d87da6273626da4ed
MD5 97fef2684169e98e6f72028da79de8c2
BLAKE2b-256 673d265cbf0da7f2e0e87f7a63ceacfe680d5680df91898c293080141cf9977e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6eb3e140f2eaedadfccc88215093f659aca85b09dda23db4a7e2080c74a7206a
MD5 11b9fb7976d3e7f5cde07432adceb212
BLAKE2b-256 54689fa8c587087b3d5ab92c078d40bfd6992e9506e4e5caad9152e11a1b8e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15dea0924d2c82683e3d5a72c10194f248b3c19637bec2f21ef898b8ce3b3beb
MD5 e48f94c73cbcad468f1c2adb163bfb85
BLAKE2b-256 35557c9db58442e1d4f9835c71d62d80c7d3fdbfdc8cbb887eb6791e968ac5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fe13e915f7003e5d25375f3d3432a6bb6ac15787ca792153fdd505b73c03897
MD5 20d6d8d05fce783197086d19d4de3d65
BLAKE2b-256 7eeb36b2a9aedd69629eeb0527d8600a3d1cdebd0d10ab5db338da1e21a75ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3c33dfec69178506e455656c61298a0aee4a597306461d6f6e27b01e9c4c5bf
MD5 5714c858fc13ed9dbf1f90d6879de244
BLAKE2b-256 dbdf9ddfcec0f11f2bbf3d6a4bbdc89ac41c6f32d69e56151e28ab002d5b7372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7862fdb2e0d10199d4057f37677733acb4a6ba51418b2cfab05bd0390c02b5d
MD5 931e7bf4f61a1dace185457d4d5b6055
BLAKE2b-256 0a3909650adca490cd13c2a09c4f8efe631cc8195a4fffa732960d7635ff11c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8df662ff616a1872a3ffa2f3fcfd57a26d7e09b39a627488d63ff4d5886f3c05
MD5 e1a4aea7957894b1fac3264177435b06
BLAKE2b-256 dafe80e2ce61dff5f54796996a97277b71ca06bf027ba1abd750b8f29ddbbb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15ae7aecbf205d4bbe887547127b50c00c755aad508211a5c33509add572acc0
MD5 ad7d68f819c63381842882dbef843d6a
BLAKE2b-256 aa32faa1f96c6a0ca119e59ddb00d7d552f4d0f8d1562b9f48086d1eab0ec4ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38a8cf4a605337f8417dafc27951190bfdd1665c3f51a42550731274023aca8e
MD5 a7f68788e6f60d8b2b3d0f1e14ae4d4c
BLAKE2b-256 45892a6fd9b146e413f6969bee570d7efa671d10cf5199eecdd0971340e339bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9f6b04f0eff5eee13fb1d0ba66a93969a6f34822b895ec171bc3b161d7d4d87
MD5 32ee8387328e84300704be89828e75b4
BLAKE2b-256 5bbba81bbdec5f65087606c9e1b2a1cda2b08ae9b205b96ddfce19c26c1945c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f814a7e79447bfde5217e12ba6110f8f95fa58e929a756e5e6a639dc72266817
MD5 fa33902747fad62361b0ae347fccacab
BLAKE2b-256 3afadc0f10e1262cc1661309957682a7dcc1d80dcc3eb6db9bbbcd4162602582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcf498e8b94d5c94e568320242f5d6161088a99e583fdb1d50d41df41d707721
MD5 b864d293df29c424febd48b733f93433
BLAKE2b-256 3d504e738c952a5f90a6d0a53181408dab730678845ea7456a7ef82a05c2efcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecce07952f8b7ce9aeb0acf8f603b259955703b43265e7407601b19e9da3dfa1
MD5 d4143e6ae376d845f9a75903e7f7fa49
BLAKE2b-256 416cac33fb2661fb9a5cd6ca5503e697c48b8ee29dd3e12058cc5ba432c83ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7772cf4cd05e1ca2fe1795d0771153aaf04ea3ceb34469bc3e814b629a4cca88
MD5 bc476980587c9ad7277a84f5a9562023
BLAKE2b-256 75e3760290a76980fdf164bef9c1d8cb23641a3082f00dc6f06e0357e62fbbb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef25b2a90cb8b0911b8b7df3444158a8ad1bec27f42314efdaca797de127cf7f
MD5 c0bedbe39145e80f28dde3ddd99b239d
BLAKE2b-256 29d5485386497c4c0b7e2ad86fb912b7be40d7beb2511102cfa551aa77ea51a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfc72967af010b93970a8b2a50900b0614f062cb99e24c6d4f4122b11375a296
MD5 33a9d138b117fdfd9709a1235e82779d
BLAKE2b-256 9ef562d83b5051901b0eaf6a72e211299dfff4a5961cc7e05657757b55cae4c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.0.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.11.5

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 305046ce43a6e77be4fc3e8d7c93e6f971b5a954d1c864e3dbd6da7f2506c75d
MD5 ca30e975393eb7fb66b004c7f642f09b
BLAKE2b-256 88c1e12044979ab3edc91218b1e888d88d983c8c7432f411ab1355165c3f8a65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.0.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.11.5

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 71dd79a6c6487c70900029bdb28ea3709ca14cb03067e6869874efb39f6805b7
MD5 bde50496b1642330159973a07f5d9e14
BLAKE2b-256 d3a31cceb0875b4e0e2e03e41bb7569b4ad368d4700bafda3a5879b9e08eca5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9916e9dd025b2fc3d1a37ef4cee53ddbc4f948e1cab04b7bba917955c4b63788
MD5 0f373fe6a872ddc9fae67c78e61c8fac
BLAKE2b-256 1cee3fc19dac0b1b3b841d31bdef908cc607d8418b1abc7f91573b34d0537d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19fbb775036991677902be7d2f8ab7b02fe4133eda09f98869158c446da23072
MD5 45e200acc07386e0038cef02925d5171
BLAKE2b-256 c862e7ca57c9747f0853c39ccb617b3021f451bc8488aa317e39e93dee2355a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec5df16b95370e1c16bb075087cba10b8ba0189002eed18ad128863bd3f659b9
MD5 b4c3e29ddff639b20f2e558ab1180d21
BLAKE2b-256 e6350cc0a9dbaf69f784fa2c3b5098e8243379dc3d9eb3c4a43f6bd6b41fe5f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2be9312e9361e6cc58db5f4f8069138eabf07e614567eb0df0f4c612bdf6d17
MD5 356c7366f19e43b038482ff39339af2e
BLAKE2b-256 b4a5f53f77403d4920e83959a584be86f75840f3d6092779b10e377f42592a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e5d2ff5f87e2087d3b815e26c9acaafb6962b55a51199904057b985161a8f1c
MD5 3e381fdad118bcffb67d552fef33033c
BLAKE2b-256 e81f0e19834182036ff1df07fe59d5c1b26d2559e131691c39022db4512bc9ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44e3978ff93d0c63c6cfe9f0ab54e1a2de942feb821a5643005acc5a2d01d081
MD5 81650615d6f0519a52b7b5c424c75216
BLAKE2b-256 4f18924a06ca1d3392f146ce1893c5e4e372cfdc0a321364cc9df662c6e9d566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce54982c71b1f5c0c63be5df1fbf2b82b4413d905d8a9ec3d3c94f0512e3dd4a
MD5 c569cc8dcec4da72168b8700a56f3fa5
BLAKE2b-256 3f95f889d98c4672fa5a53e91279f1a7f5b07d3fa90e81b026940b97a585637d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9aac85b19480b16468b73e64ceb3f62ab9c145fbb6627bcc7f5c4f6a914a9308
MD5 50dbe8e2e25312182e5c15096897e97f
BLAKE2b-256 72674df4854042094ca4f056a5f300893f5a75037fa7cc0aa22f7c44427f006c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4a86f69c163f3ea28ea67ee3985528bba5d25149fc6fa9334a70d21e6b92ed3
MD5 dbc0ec88bffa62a10b43ce514fa7f431
BLAKE2b-256 9f0f9d7a70a320f3c5f9bacdb1c72c4ec2deb6b8fd0351e50f40bf6cc4ad328c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b13e84fc77a2c24a31f8a985a1139fefff1f811c6382247d1202e7e7d8c6fc4
MD5 7ea0d4cba33b20c0d91690ce73a7f1f6
BLAKE2b-256 879a2333fa2f82df493dd12d5f52c43a959f6963cfbdac7732f726373f4b4bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 003924cdece4e221b7eed42845b6db96b4a56bc9c3b06d5e8b7ca78622778ca7
MD5 db47a285abca03a98c6a066c81091fe9
BLAKE2b-256 2ea01d472be10ee229608cbadd2577a2677eaeacb6b247efb91abef92d42a8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f737240a4b7ad160b420405fe4b7afdd57be104df7072d7ee929b91f7959506
MD5 2e591fbdb048f81aedad8409a2610fe8
BLAKE2b-256 c7f1d75c140f7fc8e523a70ed7e1dc2bc15795c2e295c4bcb4b9d60f2658f890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb6ded40dcf433012d90cf5000eb21bce291cb80032eacdc11ed5be5614e678b
MD5 d4f62752967f61530610353a80948b2c
BLAKE2b-256 e2add722754be876c570753277e55dc7c453b71f05738ea0f9ed0b1a0d72d372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ea73e3ff2178b37e4ae74ee33c3bba2c9548e90cfeab58a88c41413396de3a2
MD5 ac95fd1c6f3107505a7aa6ce0b7e6996
BLAKE2b-256 7b5350b9ffb86775ad9cb38e5d8976016fe1e5079a89b8334af713c847cbd78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58a113b2b8a2ffa286da1aed22f384ab6f3012622be535164764b35bd96dfcfd
MD5 c06203061e8ee2b80bdd849ff2085c01
BLAKE2b-256 22b2d4c49ead1d89db010c5eb08b3e2e059c951fea41f7ad86179acba7be2e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49757a2b4e857feef88b22673e8d7c88701b132675ef7a33daabd25ccde82c0d
MD5 b73b4cbd4f0d0d8f649e344f7440c591
BLAKE2b-256 cf77af38fddd3ad443ca779ed8dd5f676eb7e75aa14bcfe9a79ddabb2d29128d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b849c1b20fec2b793d992ca607b46c1f2ec4c64fa528dfc2e53f60ee22ec69ba
MD5 20b03441007efab576f12d01b5c454c6
BLAKE2b-256 99fd2da4d1c0589a707ad46a8245c33f0cc7f0a88fe5c123a5d367364e3bca8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8da094a7a0725df37fdb3fbef2628904f95e1065492cbf7804712523dab8fde4
MD5 bf100205651bc947a0496fb0cb7df181
BLAKE2b-256 c7b595aab27fd67482706273d077bf437f24084a98e3ee7d0208033684640248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27704c5c26cea646ab895d8d0ac68345684e870f7ac779d19a46d1563868b66a
MD5 d6ea3af0a52844f805e4a71d96c8cf0b
BLAKE2b-256 b225c2b715f481d313d70ba2c1651dd574c4783a2a1a0729d11819d56d5c7b29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.0.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.11.5

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4f994bb122fe602a674a4f53380f68e546ea3f40193e042d09b45829a33bfce9
MD5 bd9601a6f12f3a11c7ce35d360850841
BLAKE2b-256 76140af26823ea311d6bbff69e273e557e9c6feecbd083157a4bacdf623cc36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94da322a026ec68314e0c3b50e35fad925eef0c60833e7e480def63f4778fdb3
MD5 8a6d8e6745554d619296b1fa6f30c8ce
BLAKE2b-256 7dc06f593c4a708f1a2915ca444db05049b8bfeac366e7349848fd46395dc636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f20688fdf4f6e1011c865ab525de93e6f4d2fcec42a3da533adfb632f581a94a
MD5 2945617711ee2f232c9c98c3281375bc
BLAKE2b-256 03d01f0556d04eacd5fb3ab2c2fd57b73cee30ee7b9315d1113c5b6d7cd5bf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 374da14cbfe9f1d6613b1a80d601e32afe56eb46ee91bba6a6f5f178492a24a2
MD5 210dd205581e73f25f6230a4f33a9aa4
BLAKE2b-256 a269868f2770e8635f6298bf4b0e631ade892acae25351e4b55f2915b843c869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10344add7518c4db5a9ba0a01a91d64b046a9a7288a641a54f44ff3cd403c5cb
MD5 daf020f3a3ea6cd145c292dda7741099
BLAKE2b-256 b66955f42c4f9e236370647a76880438c2acbef3b0cccd37dbc9986d14b6f403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb0a9b979da768c23055108bb08b5d486c4b658d7d201de8512e6025c33216eb
MD5 8786a5f526be9eea94e71b1684e31010
BLAKE2b-256 789066636053ede031af9c62a7be9b52f1a344e2b3434f4827d617d9a145954c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2332e87cfc25aefcc575c11881291166575bd27b2f8d935385825b88924400ed
MD5 c5984526dd5cbcb637a16c17290ca7e3
BLAKE2b-256 8a198ff39854758d01d09be446c568141c4320dd5d8d43f5900de0ae6896a67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 487e846b3b952213c71b9c17aeac3f35381e7072800a3cd27003dab500284aea
MD5 a483f7d05792bf6758e92adff682b313
BLAKE2b-256 88b4bf3d3cf459459bacfd2dd1d492fd08771677f8d8075c63b7313f9a7d89fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e635688dea2bebe89581a814b998d8f23aee41e4177ed4f84d20cc9a99fdb1e5
MD5 b30cddf9f0c74d0b8652c8d85f80e385
BLAKE2b-256 b3b90e22fd49b6fb3f1c137ba800031f2fa372d6854554b8f825ccee0a50ded6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c4a3db747ffcda43b55401ae607260ca352b15bca5fc302a5c981c1d0337f14
MD5 9e30f4cafc7a516436c38a1e46292953
BLAKE2b-256 37d429c6ebb18530b3f0664ae677a582c80399eb1535bac6b05063a9f01b5026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08ff168330616fd2d19408d7c844fb5322edc276af20a4537457b611414d219a
MD5 05a1ad54eaf5f443091c77b1bd5b0006
BLAKE2b-256 5bf46f8570ec12d8f8c4f6feeb28c52620545964eb519c6df56ec26079a2aaf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbccbbd4f666e8d1333c5e39b8b88a3a8468cc275db0fc1efb4e0d352e1dcac8
MD5 5b1b937f9c2598a2b0dcf7972b37a945
BLAKE2b-256 c01420cf149bb6eda10ca82a35dfd0ffc049ce1c37b438d9e5efc104bbc2971f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.0.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.11.5

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f21dc94cbb73d7c4da6620f1188cd007f336b5591a001feab1fb248816e77c94
MD5 4f60b3a04342b7c6600554f07e026281
BLAKE2b-256 09847259e644e2908dca5a84f1fe078624cfb132de8465071d20807e91631345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afa83b27d16247a37f46e82eb49079a6a7473dce4b509b2d26e32e53cc74d349
MD5 e20e9e3066497e3a0ae136af1b15fa1a
BLAKE2b-256 15f44ee0c9f25dcc2830e008616a78f4cc3653343bf563965c20bc7e68ae00c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f52f880dbc324f49dc5d4f2395285f0368e674692d5147393e461865b88db653
MD5 b1f4ac89e6abccf73797fa89b5543edb
BLAKE2b-256 7874abcb4f4ed9c8416023abf0e104d44f836427ec7fa08aa527caeeb503f350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e418c8dbf93bd8a13839241344340d70d7bc4b2e3fe091c8a74072ee23aebcc
MD5 7781ff22e76bdf390d37f3a166c68715
BLAKE2b-256 d1c7ca952e76329932659f892615f9fe923f85fdeac886f5e5433f1ca653f27c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5da4a16983668238351a5350a251ab870cf807b39d7b026050be7f81b5646730
MD5 f4cea726530cd64a64f78d9b3e3b1420
BLAKE2b-256 e50ad3252aead3dc0ca1c4de2880d843d2fb1b69f7c127309d6c96f06a4141a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac5f6be832d5d6a8d17322958783c1c09ee3a14fa03599e586e52655188695d3
MD5 21b839f1a6938b8310692209400d007f
BLAKE2b-256 cbecd4373dd8bfd4adec3e13388e75de70b5498ea97a55f19b069c86fff405c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 615f12d08faeb117b1d058226356ea1876bad1a6646db022162cc0cc83814b96
MD5 11bb847e5aee72f63199995ac26703ff
BLAKE2b-256 907a5c00d398c4e00fdbaf7e88523e352ea2a3bea32e109f95bd9d7ca1b0cc16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2ed6fa95964eb7fc2af6846e52651122ad2a3c2e7bc51c1f1a002902e356b26
MD5 9ab9a94a098e15acf2f4c8c87d2db1f6
BLAKE2b-256 4e3c0c457a8722819d43caea022708d059c4cf5108a505ba35d07336cb939fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4432c28faa4cd81089fc203bc08935a04f03b48b26bd6a4bbee458f04eded431
MD5 e3c2853af6b2940576d71ae2afc1dc2f
BLAKE2b-256 1e5c66120d9d6fbffd2a0e0a37dfa9063aca25f2e44134a62a58926b1270ede6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c83653be9692495dacff53d22b384790e19e77f70cce8762027a5ad1db35f194
MD5 65e9e7632603da6c1a22f857ae4999f3
BLAKE2b-256 8a85b0d2eaff8493ad5c2705bfc680150b8c25cee1bdab5dd30f92442a8569c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2787f3de8c6799c71c8be60350083b9b1e2d10b412f81ac6742673f02cc7b5b
MD5 7f0ee61a49be2bc7d00b3085dcbc7e7a
BLAKE2b-256 2d425b0d4b27498a1af7d3c7fb54f2fabfdfab36873dcc865bc42dc9be3cc846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b10401b0aeb588d9f222039a36598d4ba1fcc960feb21883f63fe97aeb69de76
MD5 ecce08ceb4f6ea43d00bcf056528d16f
BLAKE2b-256 43cb6566adb16bc19580a9fd6b2644893452b314b568f945251cab7b8c05cd71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.0.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.11.5

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1a63a55577cec9986ad3aeb6e96ce7c7449c678ca7ef9b9815b4d8ecbc86ec5
MD5 3d0224a65f92989870b38ca910d142cb
BLAKE2b-256 5f940d1769ba5c7417c1ee082a61d8e082a1262fdaffb3508be3509b885cc476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f91dfcab6ec61ee1e705642a84f02ce3356f0b87dea113f43103a042540e4fdd
MD5 8a45153466dbe06033745733e08d3598
BLAKE2b-256 c8d9a5748b6ba09aa42b069074d842c49a18168e2cbfd8eb858b78ac20814ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82c7ed25717b1b5291008cfd8a89b2c8d3e9e8d6e63bba922af4fce90a807e9b
MD5 157fe77136340dd8cb48cc6197de4ac0
BLAKE2b-256 e6d00ff3fd641fbb7ecf679de15bbe388b5249133d790272ca4b1cef86d86657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 526886ed1240e5a5a269e5f0fe3369e989b5b0ade09d6d2172d4069e66907acf
MD5 61cc56e7c14bb4ee0ddcfb8be89ce2fa
BLAKE2b-256 421d04a4c16d5c9debcbf3b2e0ce9e5657f813ee768662e39ad17cec4db57465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88399ade0a8d9e9a5f6702456ae934bf54cfad16b21ca4c6c1c1dd3acd3023e6
MD5 52c8446232806532bc9a6d6d61678d62
BLAKE2b-256 92be827627dc5eca51b18af190039cfffce8535005911c3688ba7c22660074b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f659ada2fe5a2c36db36d98b4fbb6739edb76afa64e9fac92d5c471891706ca0
MD5 82805d332af95348b3978f0922016bec
BLAKE2b-256 b54d044a045cafd2c7db089a5a1a71f4edd7e3fe9a3222ebeb0b5591ce61730f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81ee6d2c1d01929ef36cc2aa671fc2187de4b4320fb08458ca74207e387809db
MD5 62ab8a63ed4e0fbb5832cf20871b11ab
BLAKE2b-256 273fa400deffffb368f2c6f34425d97971a5303c7f6a298a1201d27314b74f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1681197c63a8b8aacedf8373f21cb23c3a81fd462b78bdf69d3c24fa18f4a3d7
MD5 af70c2eed3e4f1a4bdc8868a990a2d1b
BLAKE2b-256 d3f0b7fd7dc6bebae151771cba04c777fae7a69b7a2e75dd072957afd7f592b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 016226ec791d4b8551398cfbbe655d27b83b3c32e316cd8aa284b8165975b8e2
MD5 1d9cc24d93b00ecf27f5e1a15e1be5da
BLAKE2b-256 fbcabe75e7b8c33495bd36b33036e12bd579bd1dc8bb7c2dd09164432e0d3667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40a44d010ed15d2551e3e7910c634c61c8675cbfe693bcce071de98761871eb8
MD5 8057ff150c879ee4072dd88ecd33e467
BLAKE2b-256 9246af04069fc68e0c4d18c2e785f3a47379666bcc73a66145d8b363deb760c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17e463937e2e4df0a35fcb279017e5fd2bbfbc98583bcee65618e4af259a419a
MD5 0f7194c59fa78a306b39fd14dde03523
BLAKE2b-256 0a8866843990e7ec00bb2e4305308d65fa2c0b33da74d05b8b360cf55b2e988d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f47b2b9562b23227d87137ca3a46ba522ff5f678eb011c7728b6f263cf5d5111
MD5 b50d95e61a9d79bf429648ef1a8f7cf3
BLAKE2b-256 84d36be1372e3691091002d1f3642c843e68250ca79cd84ffc12ef54e06a1e3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-1.0.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.11.5

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 efe7ba9ec3211cc4a4aa86bbd0d3e8c960c91b55fac0e59620d399fd0fc65207
MD5 2514cd15380b0d4974e641eca15a53c8
BLAKE2b-256 da8fd631480fd5b43e724f196c91c4a5ee567c3e74c5c4a4f2bcd2ac9400ffca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afe12b380ff59914c51c6d2f3b492090ce9916b6167e01b3cb2cd5dfe7aa754f
MD5 a47b009ac8f8e30c81a09c387b322b01
BLAKE2b-256 9bd55b2bb358677abace86553f86e9fad24506463a04edbd72788ca787f59d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 48b8d8ec0229c16e968bacd6abf6d0830c182e83a8f8a1ea0e5c680180883756
MD5 df53c5490e1d36516aa376a5ea35e99f
BLAKE2b-256 c67323d38acd4486ed222143a229d28725495d6eaa91a546d43c42f103ac0b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48a652b237834e71c3aa579ea0ee4b36e1ce80fa3bacf4871beb7632d3fc4990
MD5 53e767b2268cceec1dcbd2d7fd58ce2f
BLAKE2b-256 ad7c0a295e796895a0b823cfe28ed22ac104e12d5c5ca7126f465a60fb8f8866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 021ff56e8def012193686dbc1b6f58d7af58a221507c9ed7548623bf82743273
MD5 d8830f4c6ca20a9a72ef3cb6cc527d8d
BLAKE2b-256 3a29fa020d1197d3872d780f5e833b440d35a0e136d43dbbe3faf5548361829c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 831a7126fc2fa39fe794a01657cbfba10e308c38fba0abe907ff441581eeed65
MD5 de7bbe5fd8db98e62dc849c707226137
BLAKE2b-256 b49c5963b4c803c7cd7e85465e7e9ccd389f7bdac09a705ca6560df9c9c46e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6325a2aad4466fe52d4a0f6f8ae778810b77040f950b3621aaca4cd414eda510
MD5 714d5f770c0ba68eab29d14627d0486a
BLAKE2b-256 0544eaceff8cd9faabe1c6264c4267f493804ed6575051e93ee06fd5ad144c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6beab7ef5f8ba4217fa00dfce7dcd03226c36bfa4fc82240b398acb4fcd45760
MD5 af7cc29a9010240471317005dfe48aba
BLAKE2b-256 df4682fbf45ad4914b1ea8a41e30ab8fad1d6163ff88f40da4d753618381ac94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e585b86264699f1d47d449825116494c8b1ce898ef4648a8ab8638dc0f50075
MD5 c8599d5f75a836071c42eb61b66d1f14
BLAKE2b-256 cabe8097c5620a0a4be95d98fe1049c8f90fd1a6346a8f0602f92a89c892dfe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 340bfbcaa8d7659b7fa1093f6668939e5e30689bcd00730f10f4653892cf1337
MD5 74b0e901ea14e363ba635844224b8d54
BLAKE2b-256 ccbb3df8cbe8aadaa9f0495ea0bb251afcbe14cbbed64ab50ee7b7d19f28b1f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 35d35e3ced6db6afa9117e18627c5cd79d367f176808f9d7cd5d61126750c01c
MD5 32112b79924ec4870d2a54b771ba22b8
BLAKE2b-256 83ecc6d48805eb8e0f50514a03c3345cd62de1de6de2ba09149bc02243486524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca2c81bdd4b0e35292c1739ca698fe2f3d50495864a3abc44dfcdb1f515721d2
MD5 7abbe966b063aa408887057e2cdea76b
BLAKE2b-256 d19b2034f7564533a362d03b08f6e8afbb8b99460527461a4ea4536545c79e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e40702036b2bb31da6dbf5ea678708e49ed1dff6b3b1eb1e34c086342ec8c635
MD5 d8be9f3fa8c27f3f0754ac60ab1cd272
BLAKE2b-256 58fa0439e977c316e7c9412108aa631438cf0dec54d3c0222ef22c34e082258d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5eff11e4197bb64def12b25a6438d7e7e44af24246df49c390ccd635c24cbaca
MD5 db785f576971142614fd7a363e92357d
BLAKE2b-256 049078b8a973490788d0bbfb592c96ebb4cb7dc06b9295ea7dc50341f24932bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c86e4b563c551b452387fa7ba40f1923851ece137562fd0d3d5c7e005878faf
MD5 40e8842cfd5fbdc5939f65b3ca001120
BLAKE2b-256 553b0f2aac4b568acbd84f82eb1519d74d01ff1534da3ef3a521b7375956a01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7585537cc15689c9afb0265015912c19bc5a264327a973e4eb030b5a830b0ea
MD5 761d69c13200642e7a1e8a2233d50bb7
BLAKE2b-256 569ea9d3458de3c106c75a3bc69055da1e408f37ac2cbaebb4aacfdc5fa30ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d264ba1d7c617316682fdaf1fd95ee8a6459c7a9df65926eea2256d4b68a9f57
MD5 ab7eac31caf5b785bb18f7c3b47baa70
BLAKE2b-256 aa3660688f2b1f5177d0f14c102a1376c63817fb7643f4bbe08faf55ed9dc3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0561e2e58d7557df92b0a7970383cec4c197134f08f21fa10ca48d087f163e4c
MD5 b0795b2f58073d2097b7fe6f1340af00
BLAKE2b-256 0c097faa4bcc5b5ce3922e00c4d5c3804a7a1fb64f52d92084c85b6d25d0a102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76d52a8babdda14b6269a8a5644024df526f65ee8cd2d3cae3352b22ca9b7aa7
MD5 9923ce5cfbb5b71815dcc8c0e96cb5d9
BLAKE2b-256 1a186d0c4fcd62338307eca9d692e5b9ca65bf95ca39cb85f0697dce16dff5c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11b5c3bddbb5e0dca4d2ae8c6e1c85fd8f0c08bfb9939fa6aa1957cd9d77b5a8
MD5 61debd074ac3b6553064f62321aa8715
BLAKE2b-256 7f36819232407d6d61a37d36fd759b00d498dcfff7279ea979945606c72aaf6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e310e4de9a94d2fe58dc60aeb9c915578d2fa614f3bd0f790e8ef945e3ce2a2
MD5 1bb0abf27cd3608d9a1048ced5937246
BLAKE2b-256 10d1f36640354ae81bb9e9247454cfd081628381fd28bf221c653879bd1801a5

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