Skip to main content

An opinionated chunker for markdown formatted text

Project description

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

opinionated text chunker that respects markdown format. Built in rust for speed / safety, but hooked in to python via maturin or otherwise to allow Data Scientists to use it for text processing.

the tool will receive a markdown string (i.e. anything that isn't valid markdown will not be guaranteed to work, dont especially care if someone tries anyways though) and output 'chunks' - an exhaustive collection of all the text in the original string but split up according to rules.

the tool will receive:

  • some input string
  • a chunk size
  • a definition of size (this can be used to account for token based chunking vs character based chunking etc...)
  • an option to include overlap between chunks of a set size
  • an option to allow chunks to be larger than the given size in the event that certain 'high priority' rules would be violated otherwise (for instance, if i want to strictly never split a table up, I may need to allow a table chunk to be larger than the set size.

and will output:

  • some collection of 'chunks'
    • start character index
    • content
    • length? (i.e. in characters / tokens depending on the strategy selected) we may prefer this as a generator rather than a list output?

the act of chunking will be performed in a way that aims to respect parts of text (English language only). It will do this with a hierarchical list of 'rules' it will attempt to chunk by - and we may want to expose these to the user to allow them to reorder or turn certain rules off etc...

for examples of rules:

  • if we have two paragraphs, and the first is much smaller than the estimated chunk size, we will still return it as a single chunk if the following paragraph is small enough to also be a chunk of its own. if the following paragraph will be split either way, we'd be ok to carry part of it into the current chunk.
  • do not split a sentence between chunks unless absolutely neccessary
  • keep entire bullet point / numbered / alphabetised lists in one chunk where possible
  • keep sub lists in one chunk if the above isn't possible
  • keep entire tables in one chunk where possible
  • keep entire code snippets where possible
  • keep full quotes where possible (i.e. everything between two quotation marks, or everything between two sets of three quotation marks to cover longer strings)
  • keep proper nouns etc... where possible
  • include context where possible (i.e. the last sentence before a structure such as a quote, list, table, etc... will be included in the chunk with the structure)

the tool will need to be designed to the following spec:

  • scale to add new opinionated rules easily, and rearrange them etc... without issue
  • allow for some rules to dynamically edit the underlying text, without loosing the correct start index of the chunk from the original text (for instance, if we physically cant keep a whole table together in one chunk, we may get around this by refusing to split rows of the table between chunks, and duplicating the tables column headers into the second chunk that contains it. this should not mean the index becomes inaccurate.)
  • lowest possible memory cost
  • have some means of identifying each type of 'structure' in a string accurately. (we may want to allow users to access this anyways so it becomes like a context-ful string that can also perform chunking like context_string.paragraphs(), context_string.tables(), context_string.chunk(), etc...)

other ideas i have that might be good to explore (i.e. the design ideally wouldn't lock us out of any of these without warning)

  • the rules might be able to be turned on or off, or rearranged in terms of importance in init?
  • there might be categories for strict vs flexible rules, where a strict rule is willing to overshoot the chunksize in order to be obeyed whereas a flexible rule is a preference but it will be broken to maintain chunk size. in either case, the violation should be minimised. behaviour may differ based on these rules (for instance as mentioned above, if tables are set as flexible, the column headers may exist in multiple chunks). users may be able to set the rule category themselves if they want.
  • a definition of the size of a violation might be allowed per rule - for instance a sentence may aim to have as little as possible be cut off between chunks, whilst in the case of a bullet pointed list you may aim to have as even a split as possible?

how do we ensure later rules dont end up accidentally violating old ones?

i guess each rule will need to yield one of two lists:

  • acceptable chunk indicies
  • unacceptable chunk indicies these indicies may need to be spans i.e. 'you cannot chunk within this span' vs 'you can chunk at this specific index'. we'd then have something come and pick where to put the chunk start / end points based on these values, along with the chunk size?

steps to build:

  1. create AST of input markdown string (this is valuable anyways, i haven't seen anyone do it exhaustively. theres got to be a reason for that mind you... -> assume non trivial)
  2. create chunk generator that yields chunks based on a list of start / end indexes its provided
  3. create rule system that scales to 'N' rules, allows users to set new rule priority, flexibility etc..., which uses the AST as its framework for applying rules.
  4. create boundry resolver that uses the rules suggested start / end indicies and decides where to actually perform the splitting

AST for markdown is well defined in the 'mdast' specification: https://github.com/syntax-tree/mdast which luckily provides us with all the unit tests etc... we'll need.

to complete step one ill need to learn alot more about AST's - but i think thatll be interesting tbh. https://github.com/wooorm/markdown-rs/blob/main/src/to_mdast.rs ^^ this crate has a markdown AST already included so on paper dont need to build my own. id still rather hand spin it so that i can learn more about the process though. I can use the above as a reference throughout, but the final solution should be handmade i.e. no swiping prebuilt solutions and no 'vibe coding' some crap tier slop.

to start with then, we could probably actully get away with starting with the chunk generator - and immediately get something pip installable. the markdown AST is the real value add here, but we can have a default chunk set up and running very quickly i think.

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-0.2.1.tar.gz (16.4 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-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (752.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (772.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (803.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (727.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (521.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (703.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (560.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

darn_it-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (750.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (768.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

darn_it-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (798.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (724.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (547.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp314-cp314-win_amd64.whl (329.2 kB view details)

Uploaded CPython 3.14Windows x86-64

darn_it-0.2.1-cp314-cp314-win32.whl (309.6 kB view details)

Uploaded CPython 3.14Windows x86

darn_it-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (768.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

darn_it-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (799.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (725.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

darn_it-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (698.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (558.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

darn_it-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (462.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

darn_it-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (750.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (769.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

darn_it-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (798.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (725.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (698.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp313-cp313-win_amd64.whl (329.3 kB view details)

Uploaded CPython 3.13Windows x86-64

darn_it-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (769.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

darn_it-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (799.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (725.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

darn_it-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (558.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

darn_it-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (462.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

darn_it-0.2.1-cp312-cp312-win_amd64.whl (329.4 kB view details)

Uploaded CPython 3.12Windows x86-64

darn_it-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (750.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (769.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

darn_it-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (800.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (725.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

darn_it-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (698.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (558.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

darn_it-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (462.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

darn_it-0.2.1-cp311-cp311-win_amd64.whl (330.3 kB view details)

Uploaded CPython 3.11Windows x86-64

darn_it-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (752.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (771.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

darn_it-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (802.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (726.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (521.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

darn_it-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (560.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

darn_it-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (463.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

darn_it-0.2.1-cp310-cp310-win_amd64.whl (330.3 kB view details)

Uploaded CPython 3.10Windows x86-64

darn_it-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (752.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (772.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

darn_it-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (802.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (727.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (521.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

darn_it-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (560.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

darn_it-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (752.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

darn_it-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (772.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

darn_it-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (802.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

darn_it-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (727.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

darn_it-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (521.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

darn_it-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

darn_it-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (703.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

darn_it-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

darn_it-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (561.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for darn_it-0.2.1.tar.gz
Algorithm Hash digest
SHA256 2743a1f1df27cbc490b43ab08a41a80173ecfc0881c4dc2106dcf7ab86b8c847
MD5 e4f005ec77d30946ff74e279a34a082d
BLAKE2b-256 53e42718b9b6ac452313d570eb06160fe9fc42b2d60cb7f8852f6cf6b3703bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4dc5edff426d605e59358bf91f47b5698b608c38d6cdbb5f89debacaaf68b131
MD5 71f57bb60cbd5698891327284145d501
BLAKE2b-256 45b119420218a4c0a8ebc9d8de0a4fa0bd82f0f5f7cd45348905d1493ec0835b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f423c27b759a47235c98ed236a93f40dfa6762c715ababbc24838f5af349b21
MD5 36a688ff225804de8f1794853bec0632
BLAKE2b-256 f91a97876bb4ec0e233e120dae29079b4e11afce5f7b703d97a15f1989a219dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d3c098797ee8bc1783a4de9138549804ab1e7f92b9bca7b3748f305b5dc0c6d
MD5 1b571307bc580bc65dab34f3c29ccf3d
BLAKE2b-256 b116110aec16fd75ed273d9b8f5663094b17a31da569e3b70a3412ae6fea3c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5753fc4b53d3204e7f07aaaa46f5a9b54bcfadb3e124d4006f683fa18b6d4efd
MD5 1703baa9b470085ada296ac6b65e4dfb
BLAKE2b-256 a70f4c6f9677d9826c14cba520b0864b0232c0cf87fcadf74b9e7ac486897609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33d6581733036b18d331bce616aa3b5815804f54ad76a13229f8bdc6b2035ff3
MD5 3bc76386a8592d44b1d5c6022159f3fa
BLAKE2b-256 7fa636a984e5f09b78c87464d1fab50307812dd17e5d6c4e4ec106831b510763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e9e3c2d468681a43a1d2c232009b2fbf27a4e5ab87b04fd5d42272947583b8d
MD5 5d0faf2a4d5e9c7a72c9167d8f8af7ad
BLAKE2b-256 78e6763ee8b0d53f3969909239ddede22e956f3d872fd217a8c91d9e4ed918b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0dbfdebdc32718a32733eaad4233380e2f9798d18691b3baa7a20037179bf2af
MD5 5bb1fff2019556cd00a694a9262c4ede
BLAKE2b-256 2b9aad382fb6513eb2752501ec4d0ae37fe43305272c0bf5883266958b89dea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cd21bedf04cc77c8f8fc91dbfd9168d3e1fabb3050dbe9554fc74edf8d6a1ba
MD5 9ebfa9c1e9ef8681191fa5691364aa7c
BLAKE2b-256 f334b941c8e7983c9fed00479dfe6af492621910233b4f239d005106820cc46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5738f44e4f0c69d378c8f4fec88ab732bd9e5d463911264489303c836de13bba
MD5 c7ef1f91116d4e5ed6c15d307fdd1fc2
BLAKE2b-256 6ad799bbeda3c2f1db52f97d608e2ea9731528c58801e65779ff1d1347cd7c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 880646178482d373fedd76f2341126d60136be91040a4027e5d15640e411642d
MD5 407f259cfb86796d061fe9c65acc96d7
BLAKE2b-256 ee30ec5701ed06e02916015253057821659a3ae87298fba895293d494077624e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a30ab3790ef621ca22e9ffa6e8befa961afa487ed8f5d5aa9f59badceb9a3a8
MD5 86a99b919aabc1ace3f634bef50b2205
BLAKE2b-256 284b6c9a9bd12f2e39a03397a1060433d6d382c1724847e45b5e29dca57c7a78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 485b3084684d02ef7ab9315183cb5209d601401b308bcfb4ad7345d498371ce5
MD5 97296423e327c80caa6ac372d5c2ecba
BLAKE2b-256 fdcaced6f37f4fe4fb50fb35ec170cd0901a7871b68986d6b06584e71d6aa6b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f512e10739dad1a7e9ca11882d6783136b859703fed5a6064ab81674d1a65742
MD5 a88132f7187b7dd055a829a7448237b7
BLAKE2b-256 a5e14f82ce6fb36647da6a6e0e2ea586423a06b650333958e3e0fd51e2bb575e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e540b5e1f8f397e427dc40aaf745ba46d1cded6a8f65d3506d291f76c98a81f6
MD5 1297c6ff7a6c3d6a439fb596c5207486
BLAKE2b-256 388ce1fe08e00a7864c8bc2b3ee21d58d318aa4c670c3b3e47d91dcf76552f36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27b7c3d5a2eed0a78f03d75a1baa2bf0e5f8135f8d8e1cc5a92b777c6354b741
MD5 67813710bb1364991c6dd98d48803c62
BLAKE2b-256 e921d9766f9b8487186905da6ff25cd0bf6abd639458c243c978144234c80be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bfa7dcafe589fcb7529b8745d55218ca9ee225f70806d1ae47bbaf0035e504e
MD5 0900e24814a18c2833feab230d7ee660
BLAKE2b-256 b17d7df38615ebe490f50e8905ac651c65a01ba0bcd721a2ebfa845730b5bede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3799ba94fcf2ef5fb3bae204c810c7be1263f8d3fee1bd0b4ae8aa0357ad7f58
MD5 57a7f94c943b2be26976c5a9d66279f7
BLAKE2b-256 33a905d2f474535534426d4a2c46ca031e01595284aa1a9bc8baa11fe85ab435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2298ba42e42eccf630039d22749764eb811cebfd0cba985be98cca9dd6d68c48
MD5 2cb86744517ec9b339e53f13b3b41f39
BLAKE2b-256 a2071ad23c58377e77533e7e0c9f796cb3cb1feb11ac65ad4ae1a90160caccd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 329.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a2ba0711e7e3f16e1f78963973b42c6f65a9be9a9cf81ebd0614a3dd51d37dc
MD5 01ffee63471d6a6df9192e9b5ec79240
BLAKE2b-256 cf4fb26ac62e429b50a116e6d59c5a38747418509a353a7d8c67524d914f739c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 309.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8d2213862ebdb4103219dc061b709cdb863d82c9238974b84293f5e674945f53
MD5 81f9cdecd5364bceb894dd36c5ec4002
BLAKE2b-256 794ca5384ba2dd6a66e5090f4d051fc26521ba2e8a44950f49188aa246c18225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f1672f7848ce35a8881994892c99f62d7974f8da04dc6b5659e2a29da286799
MD5 cf5aaa65c631fc67a3d9fb7bdc5e89b2
BLAKE2b-256 f278be6e780aa8ab5d7cb5599e0dc2fffa81bd1e496c25eb1c59ed3d20eb64cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c84a8bde7e5fd50de4a9cf30d1570c8fdee6987e741e1b0a58896cf1c7b89ddd
MD5 20e63074ef32ccc194c99d7a1e4b1cfb
BLAKE2b-256 5c574719a9890e4fe422331dc245f790373ac6f82bd95c5ad2beaac66ed9fe05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 930bc1cf1c426f0b8142f57c6fa74f371baf3e4b8f8a06fe585a6f642f5cdb8e
MD5 200a0c88da361ad42cba7bd9f70c32ca
BLAKE2b-256 585c8b4c06af18793301939584ccdeeedd5c48987800aca8be1ced842733ef6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e33dfaf4512580cc915563eb3fda6ffddb804f23c8962064b6f35d89ab487fc0
MD5 3c6d0dd082a0661b8a9578b543c10613
BLAKE2b-256 819838c27cb8614545431ed0ca0358d6980e3e266d0809959d57a6ac3f7b40d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e0b0ebb434baba305ae472aeba19fcdbb17075e466d6ce5d3661b3056b2afbd
MD5 f1a69998ba21de16e4341378def1a112
BLAKE2b-256 8dc4152688cc3c746e8e237755220328789d806bbb95dfe64d90c80ed23f1446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 642ef54314d283c9f7231c8c6696e3668653a763ac7104dd2058f1b17f51cce2
MD5 137510819813716995ff1e816b5b7ec1
BLAKE2b-256 6a56ce09a347669448c8f5a6e2b42a3e66b21930436089d170b5cff96b704062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2105f066561f27994fb3a6df3a29eafae8c8c45283c66c49c79a182309199cb3
MD5 d83264a4682a55f370d6b6e4879b8f0e
BLAKE2b-256 59692e1237217dad1fdeafa2f9b80dd688d1ee5329d8369bbace6945eff8756c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb6c038e658f49ae2546b734e4ba0b227fab5c9a4a3b961d6a3bf24dc4eeac2a
MD5 81faba5e9a4594b8a85eb9dc984c0156
BLAKE2b-256 e118f236d23c6c5999a198e16a1efe7779e8a0dc7474ec8f9afc44b428123115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b03f23f94d1c4b2dc3f9c632e7cce4d4fde234e30ab52c9dede8ffb75b4bbea
MD5 97b6d728af68097af4e0f9e348269de2
BLAKE2b-256 9b1a0a561ebfcfefcb1d8b6552cb25b707724f2c50dd61a6fab9f522bcea4e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 889aa2bc0c611ca9aff5f0b0cdfb8c4021fef3156981459c1e4b190fee00b27d
MD5 6c940e3935cc47b2103cfec92c2fc8f8
BLAKE2b-256 2ea625c19d08f18d60f7e786d0366e81dd908ae48eb3e71fd1be491aa87d3371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beeae4d9c7defc775c6a91a8ffb041ccee03800a425a465ef1eb511b6053eb23
MD5 5769e7aa746ad8289f209ef97869933f
BLAKE2b-256 dee3ad91e9b93f17c29eaa0c5551135df6c6fe5f0efeaf6cc40e8754ab4139d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88dbe84833f77395a42d7e3b2493654a8e7e643d3f960191682c155e8dc7ffa5
MD5 65f5eae929cc70c93bf8ac973b373ad0
BLAKE2b-256 9ee63d7165059a62f46843a2ba437dcb0f87dc17cec7a4bb496f6109735dd4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0aeeea8e2e5df9de6b3f47e3e3340baee965eba566d693712641a61fb27a93fd
MD5 46f9ef306b9bf0bdef20a78e9f104ba6
BLAKE2b-256 3da5de4a9fc8187507e0db3298203d592a50a025116a360b1f04fa1230334fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f280a987a4c2ecd01268a7e53967a668465f7e9f77c930d4b541ffdc6d28a6d0
MD5 8324d809e4cf86371e96139edd165830
BLAKE2b-256 cd7a859423195d7d345c9c6aa0a0fe47035f37cec0ff29db3589c0dc81e2ba67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1be5daa22c6931f79f3888b429545b4bae67f29f9e212827131831c37525f66
MD5 c0e696c0be0e1c4b8fb873aafb20f08b
BLAKE2b-256 d2bfab77a95e5f696c6a574c8947f4ceb2dc87182ee2de4d8eff15d53ff8982c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 420f2728b89261ccf157356a6500a6cd6d7add1d5d5b6b7fcf0deaf3e6e1a763
MD5 df154913edffc5888d07f4e7fa87a9d7
BLAKE2b-256 250f805ac66c8fb11b85a35edce6994644c45725bb0aff1dee2d92f802a47903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcd745a910acafde4c87546b921b5c3d576ab772e08fb9da638032f73f70bb8d
MD5 28e2be5d72d8ff717d661e1f90b36697
BLAKE2b-256 bcea9b82a6fc621f8448c1f95c0f675873eb1cdbcc9c7d632da076bd29f5bdb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2afcfb8f71042ef81031a5d2afc8316eb1c427e8d6a90de22549a9db33e1a1ff
MD5 744206b50f3721f9449237e261279c24
BLAKE2b-256 db9d35a9d64433b5b61fcdc0a3ae62c7d57fa99e5574dd8d1c3cd3c384b2098e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a505ad44af77cc0c7b089b2706a7f8176348f282e99d533f401daa99f8af14c
MD5 7fd8363f0a393882a9657aa93654dd63
BLAKE2b-256 5026000708c35775717073d6a94db3ee4c05f5ec73671cc5be361e8a52ee1b68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 329.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d82307fccc51167d99cbb4f78a3eff42e6c95a44ed0d73898d1db2101ee942f5
MD5 73dbc8b8b4373df56005a195996f5b25
BLAKE2b-256 2199e4fb5de11715738422518c2b845eaa7c26d44046cd7d4f28f3f3b43a7b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a23c6116af18c97fd349a66f492783512bb6c81a5629db97ec92804d10b0866c
MD5 d7801a7e3d64058781e4fb0627204648
BLAKE2b-256 5b3be6caddb56b3519214715ca164c92d2a06786bb3ff91d5735aa2ed8e11125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d628e9412efa9863b1c0bae5394f022a3882a48b660f221f6233d7ccdfe4fce
MD5 aad32cd97e740757ba938c04b0a74702
BLAKE2b-256 769a960601d2ff4e8a78b27faf9c8c62548d0891eafb15a12f17eaf37185223a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b2b632ec09de9c1bf1095c28fae38b0e3c354d8c92fe6e81c0e6b8617d2aa79
MD5 b8fe1dd3dbf850de3a5daf2fe4c94f31
BLAKE2b-256 2d0480f33a1631e512018e2393eda60153b59f273fb33e1021e262c85a3d1c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 270894c288e9f09e8fa42184a324f0c1fd4ae0618d938f62d89ac0fc2260e5b7
MD5 019ffbae508ebe9519f5a62ac664ddfa
BLAKE2b-256 fa6e145e3d9e3b7027b9851ac910653593c24d15b706ec8ccafe72a561e1167e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40f8fd7e7f89cf4478a4f22ef5d777dbbc4cf5e4d20ef0bc95dae2a6b99c0ed8
MD5 bf3dafdb8a434d3ecb3b6c7689a9550a
BLAKE2b-256 06716a0cdfb3280ab274ec14704b186a924ba857082f4ab0f583be5f33532c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5798fa6847677aa81a35683abc3ac6e8fc05962dc728ffea247991f1e6774922
MD5 c31b1b965a5abdbefe5ded6f430a0154
BLAKE2b-256 0fd4c42a1dffab7b34e40b6c6aef179a7a77661ae71567e6d9b11b656545895d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78236d380925dbe1e5e9b4a13830876999ed9066fe00ac43a2f48ce291d2e653
MD5 cab3aea88ebbbd5a4cdc2781a697263b
BLAKE2b-256 b5135cac672b6dbafe75b78af0a0e4b412bb11fe80247f67b103914ce5573e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc65bc03f77ce0b6a40e685eba59797377b2dc053af62f33a9c50d9c7b74fbe4
MD5 dcd413f16d84d985b54edf711d78a7c4
BLAKE2b-256 a0dca9b6a711f5ae266956723a37d9865d13f50bfe814407d66361b68006d117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9506dd29c55e27ac2b61a14fab549365965e65c6b695e396aa749cae050224a3
MD5 f4cf2401953d8768354ca5804d06bfa9
BLAKE2b-256 9062084f90607657ddc36d7b82e5dc37811a4a4aaaad8482a72d4c4204878837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 222f0b1bef98df2619007212d711f8f9d269c992f8ef1c86075da2caa65ec8dc
MD5 9397c2821eac4d9e0a7d8c2013c8a600
BLAKE2b-256 d3457a099827a8ddb0197aaa54f12958dac46cdd72d4f2ec7574105234fb91e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b190675e9cc93e2d775661afe3f42cc59b1c5d528b90db3812408cf7214fa26c
MD5 6d111e3c7369b2440a5e171d784d3f2e
BLAKE2b-256 98cd3c98dde72dc18ac19aeaea97318f0d4ff88e66b43b48d8f5b50d31970499

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 329.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19d77f71696c132912297af05b4ad995c7dd22c6c8d58b16fccc1452e3ac51d3
MD5 1030a0627c6cd43a3c76d83029638cc3
BLAKE2b-256 1e7b1a308f6c4f311b022c4929d419b80ec30238bb41db4cd93cdb852d64ac14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1592d40c8b5c4aac5636e9919a08bc7e1c87001a6924ab8e7d1146ac0cfa644c
MD5 3c291566e90c5b47d2b43c0eaf574b0b
BLAKE2b-256 3773bcf0bb469575116fa9afdc85c3e5e5983930d5e2a179705d597a0a47b928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f965455e766164cdc11842099473b3fe15222eef09001368fba3fff0c03dd54d
MD5 dd0d9121a91c001c4711a17de78a8a28
BLAKE2b-256 949786dcacf601e4f3ac5002110362cc267c30efeb0c9546e07892613463f843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1065e1f703f359983b1143b12ef574f7cfec17eda60e10e86880d00dd3d2f36
MD5 79580a87b20d3a5fe613833bf72db700
BLAKE2b-256 58c1b08319671736a7abad35146f9711b93e833314a5a8e6a34c1e0850e75963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66ba84c258c7875a1206d4584f1bf939f0dda04a21b68eac141eeda10ef66fa8
MD5 c3d65b98efb80ab3041f4f23d21fb49a
BLAKE2b-256 aed039709ee46597263a5029ba8008d6fb03e9d2b299e88cf91ae37259cb13f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c63ace6e337b80e9f82a5421fafec3ac1446ac547fcdb9996b35750501f93b7
MD5 6e8541d54fe09847b990419ef485204f
BLAKE2b-256 a155bc3402fed2094bb4ff54a557a70070158a0de23359eeaa1f2d591390e89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbf375c1063abde1164acacfd4cc021f0c691a705f6e8017b027a629328e1582
MD5 4842d264cfb71d2eed5a7ff8ea52307e
BLAKE2b-256 809b762310f97b82c929dc17115fab1aef3352852c302c1874a56d3644d7f578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03f3884a3f49d6146b4ea92d509a5611fdb456fb0ddee29cf6304ee9fa8e6cf8
MD5 a2580e09990fdf502e65f3405f064bce
BLAKE2b-256 a29bf7724badbd33819da10b90f43bad20892421b304b640cddc3428a844544c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70f85b377840e4ac4a1c40f03b8b8e73c74d26740b7e275625343fdf9b178a43
MD5 7ec8195d163849a3700aaa1d57cc66ca
BLAKE2b-256 ce12a525daba332e3ea03e4ff3edf673031f8990460460d84b7f583845bea333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1015bd804c16c85ba4b344e13f183df8fecd4765337b94f041522141d769f51
MD5 ef5ee96473f3f9bbf679f0c6f16ec52d
BLAKE2b-256 eaf6655e48661fdf729801be3e2b3edf1eb5ef4ab72aa06fcee990ff557bc8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af9232affe288b349d148d7974ff8559f18534c6e19eb6883166b84a49d21fb9
MD5 a71d0993c421f6603ae03842d4f06590
BLAKE2b-256 8270bedbcbadc5476e2601eba313af26d0567f86d4baf496248c4b734e561e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 229d935a0ab4a6ae433bea4c3e555d5205af44794c4ed863fc659d2350de22e9
MD5 e31b9c6bff9cb9bee417cd5578e838cb
BLAKE2b-256 6064cc2dd7d456a1505301bd04da7c4fe75329f741c0e4d7ae2740772bc85a1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 330.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a0d2ee49509d3b633431778a06f29d1075406d961945011373646cd9ab12e89
MD5 2eb91232eda107cd2df3b957b9742716
BLAKE2b-256 706b42cdc50dd7b1922b94bfabb57e7bedb70a5c22faab247d57fe862abe080a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 680b0949c1d8b1a1eaa33c6721c4220c23d125c004b212ba09b1186dc10e0608
MD5 081bfc049a7f2d9bc1fa42439b7c2214
BLAKE2b-256 f6bdc2eccd0c4c64f63e575bd7c06a8d872baff46629c6b80196baf49419c17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54c933655eabeca75131b61d5aebf422266b7fcea47562907b372b3d0a1363dd
MD5 eda7a1eb5fe5af986a9caa78a9966c2b
BLAKE2b-256 8b357c73cfafb39412346cffab7d3405575d9561d6531257362b2426df3d6b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2054997a8f49a7aa9325384a7eb58d53b5b280bb459c955ea8deaeb873bf49f6
MD5 995b8efd3a954c63c7cd74ca0f16611e
BLAKE2b-256 6dc2944c524fe73e48a500943d4f0bdba180b4c0eac0c36e42fb13de64a34a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0b80f798e8b727949aca6230fa893d690f5e2340f95c452a98a7f7629c79044
MD5 e11ebb538feb20baf9822437307ce116
BLAKE2b-256 0250039c40a1046d485f846d0e230a146231ffd0ad5570fa9f6dd6e14744d541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd99df1a23fa005579d7ba000ee8712908c7577886d8fb54c05af7e7f1de8da3
MD5 5de6ae03a5c00df746b7f5b221e23be4
BLAKE2b-256 02058c0ff583f3f56f2b44da1b57bd563c60688f4d180f51a1a0b82a167d2c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3228b357b5f484e61576bddaf8069a2cedc151c7db53ae4b6c61f76fabb91e81
MD5 9f92c972874ebb9ce284e70f27c452b2
BLAKE2b-256 364bb7da96c8a3c5edd6d06b809534c8d7351bad75521e1a50a02f8d1ae612e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b05fd0e0143491b0add5cf9a2a3b1f4df0aa9564f212303da679c0a817f7b3c0
MD5 dd502a4748742eac0b9dac215610c10d
BLAKE2b-256 ab374cdb9882099a7f491617778ba90d664115dca110834fc380f3e806693902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d2efa06eae968955aebff563c87bc3b2d331d39453115ee788bc87d15be2816
MD5 37781578c67419a45a7031e1fdc732b1
BLAKE2b-256 958161d7bd551216ed13062196fce0aa155106438ccd88fbbc7f93ba66f63de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8b09c906dfe990ddff00401cf13c8ac0ea5e7280bd97e1e281d65e9dc9a41cc
MD5 6f280175177f16a022281f2e405109d2
BLAKE2b-256 726f5040b433212d368628d8aaa9934008a6f49b04c99fa78c5ef76a555078ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 52836e8c2ec32bca9a59c4281a1c08b2fbdddc26d30a461fc27b0e19c06340a6
MD5 3de96ff026567130f5c1f5856f3e0990
BLAKE2b-256 ec39d2c00fea1cd98576bef6744a77c337d486037276306c98f291f54f87fb38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ec176894a54cb940a1c1471a67d7e6ecf5b90554e22186ed10bdc90c69b816e
MD5 e1435b70ab9564d6c9b95ba7aab77515
BLAKE2b-256 ca4e7fe2c0bc553833f8080dca57ca53f6687a2d1a3f72007943685d34a51c51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 330.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 175647abfa9bcea26a462816c4ef96eb0384e17bc1d220b32c2b7aae28f06df5
MD5 bc425137782c862dce8e2cf98ba8522b
BLAKE2b-256 e69f120f356ee98a84c3f4457512bd08a1fbfeac249203837d5859ad242b266f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4351a7717b2ee2dfee534212425e0c6dc8554fedcc7f53c3f92ef89a988c601
MD5 9c76091c32cbfef94c795420f412424e
BLAKE2b-256 c0c2a876d939cfd9ea5349a06575c16df44035dc6274df6ea18370c9d7e80e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e06e8f2c3c0523a72dbb333bedbc35e9931c48b06f65471cec625b3159563e5c
MD5 a3f01059598557182587bc94b0d9e116
BLAKE2b-256 024ea95b78869bba08d26805d5dc4561fb953283d844fdd6d7442f201dfafc70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4897e3b09c6adf09e2a5f7612b6777d12be0dcbceb1d2d101a1146a1c116bcc3
MD5 b525b5efa87cec5f32108ca8b34c8de0
BLAKE2b-256 0a5572579d9f069dd0dbb5e47e89dfbe0f74edccd7f3089e20cca51d53f559e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e1f36a3dd8e05e6dd05e81a2d014c8c8110c505216b7afcd54f39f6f3144288
MD5 691a7401cf2a4d8c7d89960f343d6a93
BLAKE2b-256 a9d3a3a74ea52124f9e471aa2b0d55b1920e58c2ad377e3e6aea32859144cb3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3a7be895cf73463346bdec4baa0725fe6a3e60d7032dad9b1e59cd8ccc9344d
MD5 39ec02d228e60a4a26168dfcbdc5ff16
BLAKE2b-256 c2c8700efd47c967ae37a9f45912d1bd658dccf56cb84129de6677c28d2264ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d3c6f54eb29b3703a11a52c40ee9216dea1481b6863cd70016b774212ff161a
MD5 96461d81078b1b2ef42743501a69cb31
BLAKE2b-256 74589fa268c2c2fd8dc9210b154b751d99cb571078d29b92f8757ecef228b074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ee1cf16e1e9142f94a55cb07e46552ade5162c5524a3e8f9356e1cdc9a2639
MD5 dd4e25d01aa418e097326b15feb413cb
BLAKE2b-256 805d2d9a060087997f37093cd98398642dc51fbe378cf793dae49f5ea16f9150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d456f0652f5c63e45a7686e84b0bc95b6e59c8c77fcaac27e0a8ad5dd127e32b
MD5 0123ae91e86b0ca71fc6cdc72c477196
BLAKE2b-256 2d681789fb046d978014325fce570965c025b760891bf6dff0779a4eebb53acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35af8373fa52d5365cc8de790afdbd73c78fd7c70ab58c8b56dcb8529674fef3
MD5 22b7a9dd3ecf6fa0f195899211286cf7
BLAKE2b-256 57a61a3c2c0b2b878156a69ab0b58b46dc8e6b9b81efbca3467ec6c5259ccc87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 560a53ec52ed10ca5470686fbfe269e0c34e29f2a41307443afc1b271554884c
MD5 a6d31a4fb9f880797869645a425ee20c
BLAKE2b-256 1bd9629e0b007198a13a4d7e800f330adc417b2e478f38297cb32f89e4404b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3b72c27690095d2f699f32fb12cfbae62aef0818d9fcd1ca2685423f8c194cc
MD5 9b2bf76c6da78f4a4e4c51d9ca2fbb16
BLAKE2b-256 90addadea5bab482ff65b8d3a8fa47a3c43570eedae15cdfc56bf7ce6326be56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6df87c8fb6dd7f15c5e515e89602dcc8a775a054ad41de7b69c957471f8d5679
MD5 eb90b5074784793b1442e9be2123c5ba
BLAKE2b-256 c6d2ee1e94c3644d1297c777964abb20386e7ea99d1ceeb6d2fde588c96dc89b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6d0967dac6b7fa05d93bd0bb94b74467b14d79bcdddae10894d672738ba5ba2
MD5 8f73d5bc6b169a007d9cd815ce7b381c
BLAKE2b-256 64042ece54d0235bfd9b4c1325b67290cf790827d9d4c5f2d6554257c48dc8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9de42850fe05befda5c1ce9bc3da83f602230737df8dc5ec57e26e15bb257678
MD5 d26c7579ea834bf0c57570f36bad89f1
BLAKE2b-256 1fd5c85975bb867ab2e92e2ec5d8909f3ef112d16c36adcd07bf108fd009f970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2da0a3625c456c091b622885554f6c58e066aef0e11abd876561653beaf8203
MD5 2c2087774213a8fdd8768c31156218d3
BLAKE2b-256 422324c430cea0b0e85c1f7ab39f7b0e4ea2c3fdccd5482f97371e357bbec406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 936f1067cce0bb5ec561264256ffbfb42c5f6a446265afaaddd3bd9ebc54d501
MD5 4f7016eac13170693fd867a8d166bdf9
BLAKE2b-256 d9b66cbbfdacc17355ab4c7f34c3930b1cd7ee382cfe49db11eeee80de6986bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c045b6aa827e7fe8ec1b2f05e93bc8ce94add841e1dc32de9a93ba1b90ae3685
MD5 5324e3120c17e42a8abf265b763c676d
BLAKE2b-256 9b9f9b3b91b673d1e085cb758c3c2315ad54e1a46c0ff4d7a65db7ca18570800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45047de38ffc6d96e192d3fe0fd550837b3cdcabb60c8169d24a7fc36bbfec01
MD5 dd028e955f496bb46b3a4105524e97b8
BLAKE2b-256 dcf5b4a01cb6fea2b473807a24055a901e61e17f951f3f69a8e5847edcddfdbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8b529b233fb71c6a61b72366bcf9bda9b4ac2ebcd23d903be4115bd6db4ebe6
MD5 a4ff4be3959bb27a609a0f68a9f33c7e
BLAKE2b-256 80fd5212117306553781c8dcbe440cae1dd7df8300531a7676a65b4d7fed2186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a35f127e851d1a16dadb08c9a0b7ab495895bc2c89df6caa9a58b392d350e845
MD5 9027f8656089b5ec6995088a4e9b0830
BLAKE2b-256 a49e140314c05edd4f458931c6b1e4507662e419dadf74b34029642b4db95299

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