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.2.tar.gz (17.3 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (776.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (797.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (826.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (751.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (726.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (556.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (575.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (587.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

darn_it-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (774.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl (794.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

darn_it-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (822.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (749.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (622.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (720.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp314-cp314-win_amd64.whl (342.5 kB view details)

Uploaded CPython 3.14Windows x86-64

darn_it-0.2.2-cp314-cp314-win32.whl (321.7 kB view details)

Uploaded CPython 3.14Windows x86

darn_it-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (775.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp314-cp314-musllinux_1_2_i686.whl (794.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

darn_it-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (823.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (749.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (543.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

darn_it-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (622.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (723.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (585.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

darn_it-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (480.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

darn_it-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (775.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (794.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

darn_it-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (821.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (749.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (723.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp313-cp313-win_amd64.whl (342.7 kB view details)

Uploaded CPython 3.13Windows x86-64

darn_it-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (775.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (794.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

darn_it-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (823.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (749.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (543.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

darn_it-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (573.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (584.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

darn_it-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (480.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

darn_it-0.2.2-cp312-cp312-win_amd64.whl (342.7 kB view details)

Uploaded CPython 3.12Windows x86-64

darn_it-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (775.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (795.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

darn_it-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (824.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (749.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (543.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

darn_it-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (622.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (725.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (555.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (585.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

darn_it-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (480.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

darn_it-0.2.2-cp311-cp311-win_amd64.whl (344.3 kB view details)

Uploaded CPython 3.11Windows x86-64

darn_it-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (776.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (797.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

darn_it-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (827.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (751.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

darn_it-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (727.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (557.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (575.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (587.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

darn_it-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (481.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

darn_it-0.2.2-cp310-cp310-win_amd64.whl (344.8 kB view details)

Uploaded CPython 3.10Windows x86-64

darn_it-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (776.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (798.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

darn_it-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (827.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (751.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (545.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

darn_it-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (726.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (557.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (575.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (588.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

darn_it-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (778.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

darn_it-0.2.2-cp39-cp39-musllinux_1_2_i686.whl (799.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

darn_it-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (829.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

darn_it-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (754.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

darn_it-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

darn_it-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (626.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

darn_it-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (728.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

darn_it-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (559.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

darn_it-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

darn_it-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (591.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for darn_it-0.2.2.tar.gz
Algorithm Hash digest
SHA256 d2800a41e5840d0ae5bc6bcc65531a836bffb6eaff2d0fecf478ea146e459137
MD5 4ac723e087b0918bb672e1b4c333f870
BLAKE2b-256 48347047b0227853731303ff117b622987db90e00eef733cba42407785954383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9492baf87174a1a33ec0e9dbf56706938d7a13013d8d0f05cda84ca210cfd75b
MD5 ca9ca8bd12fd67ec9ad2c0d75dd47398
BLAKE2b-256 6332dbb698d9ecfeb1207c39e05df52704ca7f98163fb7de5275ac51612d9637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f47db90cc714f71354c1866015a9736ec9fcc41af9f01b468b18702828cc1e3f
MD5 9e94fef9f48b9de8467cba25b96dc1f7
BLAKE2b-256 fe39ceabc3c0d2aa43d96a3ba7998099b420f9401487580a95f9ee7523b8031c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 789f3a50c9707d8d3dc7758cd836ce475cb5bc9c95b3f21d93ffd5e9bba52c65
MD5 c0c94043d609bf9eec718c0e9604088d
BLAKE2b-256 af5a5ded3f9c5da698cc323bc8fbf1c2553c69ebd5352591b8ccacb29022e39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc75c400ab1fc0a24488a775c37d35c7c896b5999a42d252cbe7339fcbca7cb9
MD5 e175646260c713fde1e565184cae46b6
BLAKE2b-256 d30f334a6cfa17b310efefcfc70918c79a7f8e0aaa25733b696025426ea5d316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db63fff169abb1f2f4140a64dcd8438ca230d85e435d9ab70884e4762b56fca4
MD5 ee26745ce08caf95e888bfc2777ee29f
BLAKE2b-256 98733f99593b411b2659ebdb994b1e5d90b63717ad954835e1a1b28c66e64cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30aa1c3c2119f5241cccd1e8b2051de8db5a5c79bcff4c98f4038060c4e0f39c
MD5 825f7cd135c1f01cd0b4744c5e21461c
BLAKE2b-256 dd510bdf6f82ff1f684bde0c707cb41b9f37891560fda62db195003740bbd096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad90a1153ece1201bd8a57bd6ec7890e59eac046b891779dc6869313399b23f7
MD5 795fe05c1c182ca52edc1b9f150b479f
BLAKE2b-256 807f865834a8691235fc1ba40e435b28b747dffb5dc1a244c767b6d5cec6c8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0012679d3eb985916ce5481af35a0e2a636648e9bfb4653eb6bd7b611c5a6e11
MD5 87df7f280bf26e5f815d77ae2abb383f
BLAKE2b-256 3f19c7469b57bf3b287575710af8c35984d188c83533b61466558a638dc13732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 116493f82fa12b1006e253392b11fdd109ee2fb16514e2f92b1d5607e2c6abc0
MD5 08c7943c71a78fca407afe18e74252b7
BLAKE2b-256 daea79f81baec83741fdc064105dd0b3a631800ccc12c7097792745304e70eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fdc648c43dcd51cf0ffff9ca50302fef7efab95827aa99f520c8d2e112270259
MD5 6ae5505e38608e21492082cb1fd8e8da
BLAKE2b-256 a2bb60c325ceb9114a6895dd65240ece619e3b5d1ce3a940a4a83d631a024ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4368b31e8a879ea0ac6d93a9fc72e25414630c4a24e4bc4ad9cce2de6c51abc
MD5 55280aac0739e4e36b1d6e9479135777
BLAKE2b-256 c9b9cf81308c28219b6cba5c24e1774513ef3b8557d16a3d3efd1469fbe14384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b037b69efc9c0c766ffdd7d38672d8878debc21a89922480633d8d1b021027ca
MD5 076f69efbd1519223066f82a86b1f534
BLAKE2b-256 fbcd848f11785279cecb6919c7f7b00bfba78462143a751a0fc045041fdceddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8dcd95fdd09b6b7154256ac00b9f78162af36ad1cae2b8d35a621e22c086da21
MD5 a6f4f1cdf122df196ca8d595d0f987b6
BLAKE2b-256 ff1d15f23e2344197749c9753e0dd99a8acd4208f6e1c447ea094718498f105a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7324b84300a4027bef9e4cb5fbaa9255f3cfe44705b15cd106aa26eb4479b40d
MD5 21ab2ddf0efb8e9a7c01863408f175b2
BLAKE2b-256 860f5573d317da0bd9cbfaff75616f21c3e2f8ae4d7cddd28f47530e3dd4323f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 824698c075b351b7c82630b11a90837b104980ea3ca3fb2416e08baf694de7ce
MD5 dc273a0fa563189451ecb8d55e41e6a6
BLAKE2b-256 1a722b14c2e26dd00547dd5f37e9ba1c19d14eb45c2a718f02bf3598fab3b982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29a19c312b83f1ef18b29a034e0768b911e3759a8759c242eed3bd05df6322b8
MD5 aa2e85d32c86953cb8dd9ba6cf9aab42
BLAKE2b-256 2d1588b43ebe77f8face61f8ae8de05bb44aed90eab8799875c00a7cd008dd7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc94f811968a3a75271b745f31d49d5015e4ac76cad9a04892acd64d440b673d
MD5 40bed9bee8757a885d8017b1b425d49b
BLAKE2b-256 43662c8849ccb7de7ac2d253e6490264a79c7f7eb0ed3412981c32d75e9469b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be31969f68b11d5ae574bba24dc7d4884b6b66621b34c4c96087ed505fed4cde
MD5 8eea968eb2ad9d69f4406a38895eb708
BLAKE2b-256 74995ffc89ad904b30e22de1de1d219872646dca841afde07122a9cc1f984ad2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 342.5 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 73b764b486a9f458c71d6dd4dd2e23f8093a43950ebe3167579af15a7a7f88ab
MD5 a4ee080062645c3417e7f97ac871a7ec
BLAKE2b-256 1f88c98715ea65ed31a9be46d9eaf9140c27f3d9e6d6551b804e840e3ac5fa02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 321.7 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 62e8131f14a1c74e50a5e24163c7e85331ef844e4a492af89df19333c4ae416c
MD5 d9b3b97462f4f24f8e88160ea57dfbc4
BLAKE2b-256 f391bc0b3b9d5917686cd6bd5b0fef6b77542d47662d67e1574f221b34698150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0294a445097743ab6a84c3b2e1cd7a5fe98304ba3b5c5e32a1df6c84b08fa5d4
MD5 45ea21a4ed5ae936bcbd500b29e2d8da
BLAKE2b-256 d711f43b4df24b68f6131f77bd636cb09b3a9dab1a77b01584dec421aa463b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea7299864d496361d2400267f97db6dba8b4c3c14be90aa6759a85956037db23
MD5 49d213725ef828406fb53f8fe9405961
BLAKE2b-256 855417402917f0ebdbf422695df3b969b475ada3a297f9b3b74ca86265a2a2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35f1aeb5f2d46baccfb53f259c0ced8daca764f91102d9956137274ae4385b2f
MD5 791ef5db52e25af6d927deb297ab6a27
BLAKE2b-256 d17f829c1b3c52c081ade114f6ab7f21113b763a877812960d24d1df915dcbb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d96742cfef4416d217ea2d8e6f15755f8c7c80ce59918db3c70089c2cb12fad
MD5 01b9e35488b13c84ffd584fa40d99803
BLAKE2b-256 70c8ae96be4fd2b1b62f05f8700204adabce3002ef304046b5e709cafba4b134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a95ed06f5a47a5b04121319703df3a9c5acb6e2456af2433e576f723aceb2570
MD5 9a2bd3c0e589ddb810c9163a4bbcc408
BLAKE2b-256 76e064439b6bbfaf9c92e79e2f6dc3c5a623475eea5eda5f8f339a6c8f7c25d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 112041591712ebcdd0205f8c7a114d6ea24934ecb6e9e4a0a89f3a9dc2560519
MD5 f7a63e153c9216b37e4bd9ab7d767b53
BLAKE2b-256 46bf6d5cfa7c1c216f17e41a93e1bbfdad53a2c62f3ed8d41de5cd21d0f66899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b9d80afdc13e69003b23ecf66f9361d92750a0beb3b4c0fbac5c0f67f04caf6
MD5 b156a17f8130f96e9dad929717dd690d
BLAKE2b-256 84851e7f5990884d8f37187f6626edef023632bf856d17cc567e0a62633aaf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 142a84b14ed581333c629df7eaba6d4373e5bf03ccad9e9040cdd87f4b05d4e2
MD5 6b9b06fc4af440e5265767bfcb8b158a
BLAKE2b-256 15db6cd09ef97654974d20f3c987f3df74fcca4c1f0262042486493dbcf53339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a95f0e4bdca4fd5eae2139ffec72a795a237b74f495c4eba22f11ac193683a7
MD5 9d9affef40196d617b69d1fb5e6e6397
BLAKE2b-256 4cb70d2afa4d76ccf57445d8460686d0c582c81c4b3642c49c3d9fb305ccac63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 30ec49661c353ac34752d2b9b7e93fe1e23e2ca37c32796b8b15f5b8d84f8880
MD5 a34424ac444a3845bed428a8c74bf7e9
BLAKE2b-256 efb69ce14f9ae10b1b5497fe1206edff01f644709a99a4d5bf020b68a2ef02a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e9942045a4c283c78c343e84e60bf97c363451a3f6b5447b532bb89c64ad55f
MD5 38cb4d994a950f535d09333bb1ef1c4b
BLAKE2b-256 87eedd4116196e7a6cc200a8956331f8f530766994feff0d06caebc19b92f92a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35e0fc81af9518c6f1eb850f9eabe45a1e37861491e19401232335a1211753ec
MD5 c53facb862ff150fc2cf323a4687d155
BLAKE2b-256 ada8cf5c10ce81e4fab4ba779528814181d6fabc250c3029bd62988edf3b2122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 437d175dc7f940b8addfcefacab521006999bcaa3fc53480956b43b02119d54c
MD5 68eed38fc85b667052414e3fe5d19d61
BLAKE2b-256 44d421e4e9c77afdf9689aa52881c5934b4a7b405216794b1ecdfb1e7a417426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 319e70295dd0bfcd2a8f8da4e51a1ab36263cc4f1c72dc05254e303f7ca7988e
MD5 0883793c22c43edec580a4174776f3c9
BLAKE2b-256 0a82fe4cc4e0bc0f49ba480ea77bad4719be43df64b83393d2733b088fbff15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cc84b2884066c10955001a5ec2fee4eb71bf17f745a0ab7e7aef80cc812b0f6
MD5 1a617ab67013018aec73c34ee5243b4c
BLAKE2b-256 2f8360b3d66fd06322a754a37123409eb44741d354fd1a82121b33c99cc2c5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e9d3dc68fc35727396eb0e49e4b0e3ce9c76372d5a33ada790d22eb472de7ae
MD5 e3d723c442f7f3de36c899fd243b5ab2
BLAKE2b-256 60c205f956aab191de82c0b17c3aa74417ca57aee09f9036175822063536a961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d8429c9bdcfb339d09b925bf2ed35314e2103bcd79f5af8004999880479edf0
MD5 799774e1322cf2e3f6e7dce0c657bb4a
BLAKE2b-256 c10b44e856fab7038ca6a2bd8cd32e11bad9d273e042fea87d8448ce913663cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a79853d76e9035fd999fa32da7e623ea98f5ea8d3420e51752def499a7f61a30
MD5 f16e0b6953dfbe84db3c1bc174e289c6
BLAKE2b-256 b97ad2ccf8a3e09c93d4d118fe6a27716d18a38bb94346f497558b7c31b46e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43d4880414531834f6f6812b602ec8821c730c6494a917ea81c2689b1cca730e
MD5 7dbdd06051d32905bb251f413214325f
BLAKE2b-256 0e94aceb6cb0bda598af6e39794e9719c21020921faaa7c7a4fb21b009684571

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 342.7 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5557808632f605acc94df0f21f77669afd67daac91364e4733cc5e295c8a37bd
MD5 0380865affc3eb7ef839f68ec77777b6
BLAKE2b-256 9a5c6059f2e59ef7651ef8cf7ab53eb74be208f22def5cd2db1880e779d8c6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a1e1d659b9ffe7a4d375c4f69014d9177db314f0964b743260f3090ff1e5367
MD5 5547b169e24f613a82369d1605e12cdb
BLAKE2b-256 648b755e0affc88068d430d5b0957a6d8e9cf846ea1ee50cebbaebe7a94b630d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ef539819cead76865b157c3811dfaa7a734658b08740f7a9d2b90b526087d20
MD5 f0a09b5d36d890fc6ed8a1f9b636db7e
BLAKE2b-256 79164e3bd2d16854f36316c7fbdf9f713e411b91195f73d0c73ed945679caf1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73dd81c39fa131a0e2cf84e801bd5b85eda99a3c80b6511773d28bc2d0006ab3
MD5 613e223672f96f14b26fb49713d4800d
BLAKE2b-256 2c29e471c086113ae23d410f8194931afd937e5d8f495f80c1a7bde34e00752c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d615da04fa0cd4d90874214aa21d26bf033a6349626c6053f1764083d040a9e6
MD5 618d9931122c22e22d0bdfd2bf930895
BLAKE2b-256 7a72bae7cc4d7caf6556b0224042df496f0e414fe3240181cc934bc5e38a7403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bb518a667ad740cb8ddfd89b1bcb65e1c2694f4caac45cf9d2e7c291fcc153e
MD5 3a52c8557fc1b0a069dc657a0fe13fbd
BLAKE2b-256 cf5c3a7947d6c2b7cf8b48c9576be553001644377fc4dfa86dc619707fd5d1cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e09949a765f042ee334fe94d239d3b869e328930ab781a308c8e9ed46da26b5
MD5 ac86e821d5e8cc64a83c287e92c8b1eb
BLAKE2b-256 245a85b1b9ac3e21ed10d8d44ef451ac453d439606b793cfd36b5276dd04327d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c6db8b304225d0c956f56a4dd1b195715923d32ce8fdf7208e229799fa0e11b
MD5 b67fdeacade96cde558fe9b4f08201c1
BLAKE2b-256 6dcb31510252b6660f2202b5ce77a292a00906b07da66e5f8401477eba714b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8570ec5dba674f513f75e2bfee39ef454c523ce188381d089460cbbc305082ad
MD5 a53605274cb609114306971cfff08f6b
BLAKE2b-256 119fd596abc94b265b071ee263618094afc43cefc14919094133c381e469e5f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e9ca89a7ca85852b9caff30b920fe5be748342ee3d72707572c7606edaa9be8
MD5 a6fb496963006c623b7772390f3f4e20
BLAKE2b-256 0833eee8adf1a222d6678a4b0dcff5c17a1b3d0245a719d3ebfc09c32c6de8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bab5e2875133824828fb0315700f9f4775537a1092790c824e2f6ac4997ed442
MD5 e7f989e2e89214e3bff2180277fd9f66
BLAKE2b-256 11bce3df7a77370ee7078dde5ce7e472d660cf4861b274e38633e537ffbae42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6548a77a0406d934740022ccb31859d5a9fc815e2b5a58e812462805ec3fa7c1
MD5 e825c313691baae7d4b9e6de2f2e69b5
BLAKE2b-256 978c8e1d06dcda0138cf31126b3ad9062dba771e504d73e0f988ccbb3001b62b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 342.7 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 caf3e687a20e835f9e7932b134700b7e23baea7d2dfb3bbd8a069b4bff536dab
MD5 57e1acb7bbc05d7fc12520f32a718256
BLAKE2b-256 41123c26699caf68ef2a5734347d73cebbb47e348d4f641f33af61e08d302f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc836f93f0d65dc70a72cdcd63a817162e3a078080494d899a4f55646230908a
MD5 445c2e6a0ff2e307465db7a5c3a3af54
BLAKE2b-256 fd6748e6122ab515b09caa9d5171ab5980b63304fd7cf65fc338f883864ab19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d720ea0f45c043caf952727b9e4d47d0e3899e88c080a910a560b2ba847c1ebd
MD5 7d737f6093cd593764e9ba532a16a601
BLAKE2b-256 6eb83b4bc07730c363a851b38f7fbb2767991f3859c987b0604a23c7814d9fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 174f02698d71fbfd9aeae6ad53a7b99258898bae6779ce33ded12b6169443df0
MD5 838e9fa4524b4689ebaddfd932d55f4a
BLAKE2b-256 922cd0733fdb589de26f8208cd98dc384786d8d5c95265d9429d5aa872f30ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30b0926f6ed089109a008afb8e960850c3e8d4ceeac89482015b56789691a76b
MD5 808319b01d1322f20a2cb2107746982c
BLAKE2b-256 00581084f5c936036a41845044ef3f375ab8ecd60417cf9e4ba96e35fcd412a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2d7c054c0c9546ec24e8b3b3e26995d469de3d67de2ae81294212170dcf5062
MD5 5fcc7abd2caf0f88da82db729c523862
BLAKE2b-256 212e4ba9b0aa8664b1bd7d718431eda313064e82310d08df8385716e66cf6035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c61e5d3290988ec86c151aea87992759deb7c3218bbce2f54bb7bc7e2e43ce5
MD5 6f495a09670f3393b2ecb49e22a7ac86
BLAKE2b-256 a02509a37c7818696df083e87e3a2cc2bba92aff66764c0d256b578966b83476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d2af7a3a016b7efc5fddd03cc665305801699e2c71fad1f811b1cee66e2e6c4
MD5 c50b2b751c144f2d11f69f7b00f88476
BLAKE2b-256 528abfa4ef9eab083e0fae45fa59d3924a53bfca03ebc63e97f34faeb7f1f3fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06686bf59b54fbe5bf4066c2cfbc1becf40145af28d971900e7a83559bd87b19
MD5 af637f8f34c1e71c54c25d6e6eeaa9d4
BLAKE2b-256 fb4df05c75a6ca40e816d4036abad65400bfeab936cc111352d300027a45a727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13c84f9309417ef110be84639217e0714d2ce8226b3a4b82fc667ccb20ce79c3
MD5 020b94627a54e8e3a13c8f4faa9f47d8
BLAKE2b-256 e2a0bee7d8c4d6bc8ccb0744d023706c32a32c02dc8c65469157d018aa167f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 159119cb28ee965a13b3aafea122c84dc378b72b1fe4187f4365712615ac709e
MD5 d7efacadf2acffce106a81cb146c762a
BLAKE2b-256 19ee34c63087215927f78e1b11189da40f08aef32d551c0e4059abb8fbe39bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a70b80e02783506d3aa6a1c75b48922713c39ab1d205ec43854efa135e10989
MD5 6c4db8328c31115f573f04a44993c8b4
BLAKE2b-256 07e61efc891c53a277544b1575ddb8f7eb8fe965ba6b001bab348c4316ed2498

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 344.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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31ae5af0dc0221e16d53c064705da3339d3d46497f366b3a2784693032f7e1f2
MD5 ae232651f7c864fa6f1114147216ee2b
BLAKE2b-256 ec0574ba14a65374678fa7914cc6751d716332c05ca3486221d14c364e6e8f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36bf8d8ec214bb243dda2d2739962a88a072eea3f38da7f8928532ea727e076e
MD5 e781aa6b180315e51ebf83aa6d78bac0
BLAKE2b-256 4a09fc9efaf124a5551a37a92aaccfd6e06f71501420d444ff4e48b84c47c364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bab44a0a1d00efd4b8915eb3d83af7821fe1f2ebc66a76a4fb40dbf6bd071612
MD5 2826b9e3f0ce5baf34e957dae02ede9e
BLAKE2b-256 fa91784a147b14c132fb7bbf64cdc9367054e704210ae628f9a45169588631e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67581e76f3100910621b81e4ba261860f11167d22f1a2a24361b5f356c5d78ec
MD5 d1cf454b86e7f679e369decc1fa976eb
BLAKE2b-256 7f6b151545d6220217552753f4b7fcba7169b7ab8371e51057bae46a638f381a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 544c7c611d905fdcd0f8fba4e9b6c89ff73f270346ea2faeff668b55bdfe214b
MD5 157995f6599ec502408afae758b5248c
BLAKE2b-256 e536c7dbf3267f881f14c58c41a76dd576a7701bec2be9d9265d15708fe7282e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee5b475862d6fdd92556fd79fd21873c1da64138217e7f0e114b4ecea9fbb0a3
MD5 850d30d5ec899af252f721560c73ed9e
BLAKE2b-256 f2f17b806a6774f11c456d02d4c5db6de1cbece42df810b09d82694e555eb1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70494ccc160a373792f0317ead618888b571e259cfced5c99ed255dd6dbab9ef
MD5 72f72d44dd8d4f086892f24950f4b9cb
BLAKE2b-256 88ac81b683726998a344e74bdb9b0ce3bcbf75cefafb911d7477ded899278c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd3cc53d2afb4048283866f30cfdfde7fe364dd6f072e24a1de432274be80525
MD5 11d938e3ed74a8314db0b2fb1464f368
BLAKE2b-256 48dc6fb385130105c4e944bc055fe9ab4dcd7b14b1a538d27f8fe1bdeee27703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31ca14fcfd48476e389f5946ad22181989671da91e870dfe4e96fc82d1e94f22
MD5 b03f1d61414404f6cd34f9217bc5522f
BLAKE2b-256 6ea7c38540ce88c7a9034634653a4c298a67dcee930207fdefd60d0f0d961eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bad2032af9914d5fcf77dcf6af368966af67937fe79422b8d1d2230898767195
MD5 d77464fa66ff8eb0b4556c234d0ea212
BLAKE2b-256 6b249cbad55141025b9d98efe06d3a635df44a150e9e027425387436b5059f58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7663e32f7285a534d3eabcc602722d8ea8a4808eaaadc21e72206b84e5d8b34
MD5 65ab4b0259bc4cad00a92e68f00b6df4
BLAKE2b-256 f73db0d1addaf1d3faa35ac7f5ea17d7a74c707d2bc96659eaa953ca218ba157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e47dece8b78aa235f3ac12c60163109f6c17e100d24e95aaa76938b1c8ced012
MD5 1c26e24d6d20bff621af03de49aaa8b1
BLAKE2b-256 6e70263888a4edd24f73855028467de825bde2af7a49f28414cb922536b45c4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 344.8 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb542a608033b1c5f6244699380d0f7b79ee1c5d09a0cc69696e110e0020a26e
MD5 87506c7564a1a4d4f06c68558636f1b4
BLAKE2b-256 55379589f4f0394c9b56b815ca9f896fed22275ea4414f4cd7c7ba2cef08955b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 523241da3830796ca75fce25c18673c119cbfe3d097d32243be14e868ec06656
MD5 f26d167758e891918fda5db1a912a507
BLAKE2b-256 66226db420cf9f436910f80c47bc30997ac76b2c75bc4f3ce67edf1002f2b064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65048a86ae96fd12495c187137393efa16236bf5684e8f66da6e9cb0e01197d3
MD5 de8f79dadb873326d21eaab8f7ff53c6
BLAKE2b-256 a948269200e3e7e66d88dd34e45f152e98d575d1eed2970a09ffcec5ddc60689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5aedaa8e7b2c1cc3e879f8d7d6a594f93aed71ab4b11248396479aab4f7925fa
MD5 0187b3df130aae584ac2ff4fc631644c
BLAKE2b-256 13f0ab6be96b5bb97b465a4ff211c3a9d3a2a1fa7f33cc4f37d423175b025edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94df403730dac1c07ed8354b4b7a398cae0ea932ee44c0432fa4b5d768066773
MD5 7d56da88a6850a6e1c82a3cf100ca9fe
BLAKE2b-256 70211562e293519a24d2a4a6f25396ef220561318adf2f441f8ed1cf52cdcbea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce4f87ff1b912e5709deca606364ab169c523db31437068d0f25d328b044f79a
MD5 8edb4c27a5f93f6fda0144fac9a44172
BLAKE2b-256 ee071867e13de519e3bcff313550e2ed85a21f94e5f697a1f93b4bbb45331547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5049e920219545e1aed396bb92fba2509af73aa00cd7933c775e8a00e1822cb
MD5 d982a9b7b89272edea17316d4d9aa78f
BLAKE2b-256 a19f475275f99601d1dc4ad444247a6a7f484ca7d9b98c6b0c0bd3bd90167e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20dbb612dd2d6739480c283ef07e1cb4e6978cc40f1c112a2d3244953f08c1f6
MD5 492e0b5870fae9b36c42a6d091bc520d
BLAKE2b-256 d00380ecbb2a85ef7cb007d4bb61727b1f8624f4fc29b8e03949e2fbec059019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79d4747f6c11308284c57f8eb49c9cbc935629fafc7066cddbdd654da6086343
MD5 689b03aa5d7641bf1c213ab7edadd750
BLAKE2b-256 cb1a23caa83bf6bee2d520b376158558e1620b0835824a44c5f4f9bdb94d4808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f3986bed904868a34cc0039116df146da7388326c371886bf6165aa0af8ff6
MD5 58c1bc0f5201837c0864511142a6d236
BLAKE2b-256 58dfe1aa6e167ffc1a084a43a8bea07105f56287ffc83f1a7700a1cce0933a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23cc3152092c66c7bc985f3032b16530303ac5e9e6378c12b8dc9d87cfecb903
MD5 4071405f62ff7326dcd7082f696ed1b1
BLAKE2b-256 33ca44c8b825a10fe0ead3cc8d6e98b0b9bba67071e3ed2806695add2df0b6fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 698506952d6a0496a17586e04fc1fa697ef1c58abe92a69192a7b976c7907b5f
MD5 c8e481fc5a7b888ef0b9bd1be5d9cea4
BLAKE2b-256 4e5dac9762dbdf80ecbfd0e0cf4fc41040f309c835a3ce7c9771e01e4a346ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e030eed722ac0a2b52aeb48e0855c41709ba7940d3038a0dfb4d392291a0e020
MD5 5c259a8ee478f384472887a6c1465283
BLAKE2b-256 415151553c5a2a821b9664e0a2bfe25cb005d574c5a3c9050a8803866d9d2499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbfa00916c3504aba99cfcb806b1ac8231d7a594982a66f605b3be8b8725d721
MD5 312cb48787a5569f9d680dac2f9366bf
BLAKE2b-256 d3787f8aee30028132b8ca65173c3f612536197dae877de5e88d5d873fb0b430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ebebd522681fac3cc974f1158baed7347f4c5a18450fd40dd1f31497ae50cfb
MD5 ac3c3bd936a94865c56162d99f5f7b05
BLAKE2b-256 70eead8f1876f18c8747784c3d1c86e28b7301216955444106210758d4f7b5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b44319cb3331d1fa6c2983faf88965e7605bb78eeed926d20da8d1425e87289b
MD5 2f981486db99a1d21cf08dd16249e228
BLAKE2b-256 78a780f7feb7661847456ff61dbedd414708b42d4ed9e3ced40cf52c7a3c4469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b85d69c26783843dbb96cc95ad8e7efc31bd2b7a139deb2b875f08e024064537
MD5 f194d52ae6fbb44dc421faf18964c89e
BLAKE2b-256 dccafd449decd02611ca79350caeba85068d17f8313d154f4e805e640e395d1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ded391e4bd086823f1c657aa07e50a0b99b345f0df3252ad3f8a6db33719df24
MD5 185acdcb203e71ec2121c3d302fc564c
BLAKE2b-256 ab31ed90f9537102924d5b9e4d8a70abec3ae8b62001be147d7f91ae7a33673c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58b97c3b7f740f90ba5ccd10372fd358a3d3f992846f635876775ce5d2d9fcd5
MD5 46a40ba71466702cd096c813bdbf7552
BLAKE2b-256 39b13cc625f601050c6ce398d91d537a4fadd5cdc04cc862343d894247df0dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5785510ccf1ffd4f254e174a759b9e1c72af75d60ddf0a804bd15a96e1926dbf
MD5 26443b7f833f760970b3d54f648475e7
BLAKE2b-256 68276530134687f009e7f34305a918e16384655d930199af504a2df37e620246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f4abd5ca9800ef9e6d496069c91aacd8593782ed5cccbd470cc9a2431704ebf
MD5 c5382242af08852386c870202bc2815c
BLAKE2b-256 9144c91ac350ec8ba16240a457e8d888c4cfdb2befc99cd2aa60ec75957f8797

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