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.1.2.tar.gz (13.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.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (749.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (764.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (513.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (419.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (261.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (246.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (256.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

darn_it-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (746.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl (760.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

darn_it-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (510.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (415.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (258.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (233.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp314-cp314-win_amd64.whl (328.4 kB view details)

Uploaded CPython 3.14Windows x86-64

darn_it-0.1.2-cp314-cp314-win32.whl (309.0 kB view details)

Uploaded CPython 3.14Windows x86

darn_it-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (747.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp314-cp314-musllinux_1_2_i686.whl (760.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

darn_it-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl (511.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (415.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

darn_it-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (259.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (253.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

darn_it-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (206.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

darn_it-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (746.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (760.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

darn_it-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (510.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (415.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (259.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp313-cp313-win_amd64.whl (328.5 kB view details)

Uploaded CPython 3.13Windows x86-64

darn_it-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (746.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (760.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

darn_it-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (511.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (416.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

darn_it-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (260.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (244.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (253.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

darn_it-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (206.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

darn_it-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (211.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

darn_it-0.1.2-cp312-cp312-win_amd64.whl (328.4 kB view details)

Uploaded CPython 3.12Windows x86-64

darn_it-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (746.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (436.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

darn_it-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (511.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (416.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

darn_it-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (259.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (243.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (235.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (253.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

darn_it-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (206.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

darn_it-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (211.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

darn_it-0.1.2-cp311-cp311-win_amd64.whl (329.7 kB view details)

Uploaded CPython 3.11Windows x86-64

darn_it-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (748.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (438.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

darn_it-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (512.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (417.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

darn_it-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (260.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (255.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

darn_it-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (208.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

darn_it-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (213.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

darn_it-0.1.2-cp310-cp310-win_amd64.whl (329.7 kB view details)

Uploaded CPython 3.10Windows x86-64

darn_it-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (749.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (438.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

darn_it-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (512.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (417.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

darn_it-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (260.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (255.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

darn_it-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (749.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

darn_it-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (763.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

darn_it-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (513.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

darn_it-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (417.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

darn_it-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (242.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

darn_it-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (260.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

darn_it-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

darn_it-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (245.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

darn_it-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

darn_it-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (256.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for darn_it-0.1.2.tar.gz
Algorithm Hash digest
SHA256 dcb7f3db5e970809f80179ce70aec8684f3062ada4d6bdb57c8159e927e10e02
MD5 9607631deef84324ef1a425326460a46
BLAKE2b-256 f581820ce919ccaf0c34fd28f25eb82c957dd48586395f6e26a2ab16473f822b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c2ddedc0f08fbaca3c80f90bc551bb5e1dac3b2e8cd54295ffe6c217b9f64a9
MD5 5f2100e83e3be4a36c80d2faeeb45eac
BLAKE2b-256 607373fffa4c3683f90236fe1f1e9e9fdfb0d81329069016efc4b356d53e45d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10260d8cc4517c63ee927fda309cf4b35948dd63fbf3c4de3a96f465afdee261
MD5 0d5295050b2554e93c9fa37de200356c
BLAKE2b-256 15d0967e884a0a82230288ff49793b5f55dbed167ef8c4e4f7ab6ed94cedda13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a55ca267d0e8ac99c8283294ccca7cc194f882bcc529f1db8e496ccdb5a05718
MD5 53b360d9b6ff64fcedf6e03265fa47d4
BLAKE2b-256 ab53722115374028d4ee8febc1459c6879504177d842453f89902b3b69ad1de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7077b470bfa8840e3e586d9c81dff45e437e440a49ad962270fd2e134ddd8546
MD5 12b995058f0d5f0985a520ed56e4b502
BLAKE2b-256 91b2dd58a1a81d96212848ce5a1958847367e2be3befa697051a1378d8229a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 141bbfa8227b5a57908f6d45a1baa783f83c468ddb3f23a6ae423c5dbec817b1
MD5 1cbb36d496eb0b5ae7511b30bc3131cd
BLAKE2b-256 74b9c218a380b5a959d79b4cfc54a08f57b5dc7237fc256740349dff6e8c9193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9a17fcbbefb4cf92a782ea979721ec52409ba4ec332461bda3b13b7f9c5db5e
MD5 f93d60ff43e2bbf25f4645dbe2036e87
BLAKE2b-256 5180f35e77ad07c557ce426a963273459ad6d4a778c5a2fcfe6d1966e76f92d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa3ca1c4e3f6e1ce263188fa1d7fd3c94f5214f1366d0b93c5519e3373b30aa5
MD5 a5bcb05cf05b81a16bbbc24b4e68d5bc
BLAKE2b-256 ae733249d82c8497308a247e214187d666c48169eec252ca048889e5f79fd158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5d91054dcd03fda9a832b2619f47bd87da8f04dc5e1e329a350507ea76ae1e3
MD5 bf1b12842149f096e780d1482f9467bf
BLAKE2b-256 70894ab724ba666194f346bbe1e3098ab8ac8043cf64dc5a62feedde0ea0b125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47b282f81f30aacb688ee7bdff5aa7089434d17e2049dc57d275b87f59aa9491
MD5 fb0e20ae4dc116562256f42aab2b2afd
BLAKE2b-256 b8b2a9d4e5e5f0ab374a9269a437cc0fbc5ad43f50f156c530775b12da65748e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e450a2adb0a53033fe5f47991e18c2ec79e7f20a018d3ed8b219ab1799c4e2b
MD5 691aa7d37715436b41a2357be80e9826
BLAKE2b-256 33c389db8a792a93593d6188fb57cbc812d84d37bdd6635a1dc7183b1cfae6fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 822ea8bdc16972de1a496342000331b870fcc568506a869356aa48c07aa44664
MD5 fef72f2a028bbbbd7e31d58bc0573e3f
BLAKE2b-256 59198e5003a44d03f6e010296b5c296cd435d2e2fd221c7937d3d0aef7125ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2411c5c7f4238d8b93659c277966fb833fd41d592a005fae9c345070aa87805
MD5 28fccb0a382fde178fb0bc08845deb0c
BLAKE2b-256 50650261e9a398431935b6588c44d39d9e4cee09effb42f735eef30e3e1e8e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5602677995e0eb7d3eed2bf47897a4b3121f8c8a93d91f9bd2337dc14628f1c4
MD5 812b0438a3459c6800a503b4fa7a5e95
BLAKE2b-256 1b5e6c85a3cbcee6fc1ccee9de6046ddfba370b9fdce4d2649c41166bdb70f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 890451c53c5c3a0e35387bdc33f5d7be7512c23f1ad92fe561f4444746b9f329
MD5 da4b8cf9d9973777f484e1191ecc1ab7
BLAKE2b-256 871021efccb414a1d967b6800f30af1252f6b460953413f76de70403bef8bee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ffd257d5178003a60f6311d8d62b2ce0685a9d850cb8fd90e8761e4fd412095
MD5 de6ad40a2fd8967920ff6d2b9fbb463d
BLAKE2b-256 277c91fb99cc5c7180f2663de4d7ef70bef2c81effd540df10e71fbe5700d53c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 095810a3b0930752688ebf874a8d38d115854c9f75937130df6d64b4aec87453
MD5 8e0053f9f2c0ec8d0777b225b81959bb
BLAKE2b-256 052b0a715fb4867b25787e9e250084dbe1cce414b639adf9260bb4a37ea3c455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd4a96a41ba225b846b7ce0cc10ad88c6a826127e8ab3c7b2668e10b0abe76d3
MD5 bf6e93cdf5cf48f9874b127fd8cd2d23
BLAKE2b-256 d7bdaa62b290c9eeb9c6ef0e3f959696e6f382fa8db3f4c1b1e8edc9021dc59a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 701cb8fbe0b414916946a2ef97c863d86b2271818ee9e5b0cd3ad43e20321bea
MD5 62546af5535e95e31581e056ce809a0c
BLAKE2b-256 5710aec22583d52874c87cb192cda311f61ddc0123a5437664109e261d8cfcbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 328.4 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.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8feeb1e0de5f025a91782d35d23a168d11f4b513d430c84cad2bfabff637cdd0
MD5 fa82c150d31c2f644407b709cf552f06
BLAKE2b-256 953fb08af93ef75caca61dad3f96580d10d16c3e83eddfe58e5d6609a26902f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.1.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 309.0 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.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b3f89ac4e4ca512cfa375917c5511236cde59be7c1a2be7de7201b7f17f34be8
MD5 996d94d351d5efc97ae6005adf0090c4
BLAKE2b-256 bf8e6f9d1fed59c30a889f885db8c5544d3fa07ad4df481af5d39f0f882d9da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5772d399158c7850dc7950affbf75e295836f674a97e2b8d7099918ee7a4b93
MD5 f9d62b977853ee2cf842b232d84e584e
BLAKE2b-256 98170ec4cd06c4ec74cbe4697eb4f691a9796013f373e4a5b1621cba0d4b0139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 995e59d60aaedc33cdff7b6cb32c95deb8e0d2b75eb1f6ed7c265d6dad9f42c5
MD5 2e61f5b6dc25784f5896fc91aad5d1b4
BLAKE2b-256 5f969601b884f28cb17e4cbf27856461326311450b7a8311fc43be516db22d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d418e8790dbc3a224f1bab1402b5350b2bad2a58b3eb5364932110bdecc26a2
MD5 a2a59d8ea820aa6daafba2986582d430
BLAKE2b-256 acb7e174853d6339c22abf07579b33d8a33bc8e2e4d010dc35dc038c42511214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf795698e42b6a1f2a5b7f05f63f33defaf83c101b72d7df7e53fe312b7cb4bc
MD5 a711fc16476ed561158b75a8cdbece65
BLAKE2b-256 0270e0e8ec4f4d43b74c13ee50bf0c7b84b33e79e9a5ef4d2f69d55cf0653717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 508179f44d24395f56f02d5b8bfdcb47deca196f0f3cfc357ca6409b4c7d7640
MD5 ae4e7feec0388e86ed5aa33099bc6009
BLAKE2b-256 a9fd0aaaa0af80fd05e2c6688647746db78acab2196f1507b507b7c99a093d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ae157da12dedafdb52dda15cc6ea70b3558a5363169ae5f137a90f24d4480c7
MD5 e2adcf0bfdb20e401899c15396ba2586
BLAKE2b-256 479d6d782b19e2f5d077e1073675c800b1f0cb9fdad377a7537c1a8c0deb3fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96c20fec7fcf1b4029bc9755e2468450610cf6af3b7d0f2346f3ff6e8b3ecb47
MD5 d47c513b05ab6246eb1014d36566a240
BLAKE2b-256 bd8a81ca548a765c819b35c75bda1d0b75872d1acdd5816e888ea59eff786446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04f42202d3869b0d5210a10ff346cc7bdac66d0b465008faf7480f4053720442
MD5 270afaefbfdca1d585dd86e478f59bc0
BLAKE2b-256 52af8812d1c6be9c08d7114a974b8d17d53b3321931382250065ab1c67a657ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7aa4e02072c6fe583ea0dc55dd06c70df954541e03a3e95e6800ecee859c3d12
MD5 7b6241bdd00e6fb8eff4fff04a946c2e
BLAKE2b-256 fb8a0381580631bc9671fdfe048b2aeacf0c952af3b254a9a1e9af1be64ba06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89283d5e244ee4e65d40ab40382fac5c89b2bfd7bbfa307022596c92b354ead8
MD5 52458b125939cdfef9e4ab4791362058
BLAKE2b-256 0cff7d7cb443a042718d3ac95d5081075e50cd67f28c6378a63ab74e090a2c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1048c3b879e84eecddb8039c081733ab39d99c9707e6947c0a30f12a5147465
MD5 fd59b544a8627b73d48c94be8a695612
BLAKE2b-256 3625d858e4fc279424fef3557bd21b8288bf4fe6b476f583d12de0a3a203c372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3cd07953482205a715764f6ec0c8574dff0a36470d23e329e9e9d0ede8cb9a4a
MD5 f67edeaecd4eec91502643b42070ec93
BLAKE2b-256 33d583fc2a32a6d7a2f6ded8db6c7d053a1356794fbb096b16d5a58d36ac5165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 898d353d9a180c64c314a948a8cd4a69abcfed01207e30f8451ed52571318979
MD5 ce039eb35dc534e75c94ee1521a0b91f
BLAKE2b-256 8046f757b7750050876f71b88485bbbf076ac7e80ab5dd89b6e75dcac6a637f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c64b8778e4cf06f1b6f9372a7c6370f2b1972961143c1ce5d7fac41fc2707db0
MD5 637855596d04568282c475df281f4710
BLAKE2b-256 25abf9a4a2ca440e4fa8261c035bb6541b5eba32c8d806b2eb0a41e6f3dbf649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f93658437535252a2573680fd16fa97089db0b1d5ccf9309f148cfa9d7645e37
MD5 ed247ffde7bdc280c2e9be91454d0c80
BLAKE2b-256 9d731be3450e51b4a8bea6fea0557f296c277a83b04ec97089ddcc770b123646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7c22c1ee0dbdfecc6a022ffb3e6c27b1835af1a02614c70e06bb2453e470389
MD5 dd0df98ea6c8eb7ab4bda0ad79d6a4c1
BLAKE2b-256 0180a3baf9411a9ff51bc8ff5a216d109c052a44ef65c98b223f939c37e511b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5083dd202c6f920107fdb57dade7c5b53d8b33753f88b733bdb77da599e7f4e7
MD5 f4cacb8c5dc68eda2e50cb236991313e
BLAKE2b-256 71bb6f023763c225e06881c8a6e10b4bb4ff7b9e55ff71e231692104c67fec77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d50dbbb419ad2ba169a019e1d5b537c93994843a6c9d34a964a6859682f7bf5
MD5 71850597d0d1a3f2a7c6aa1a438df59f
BLAKE2b-256 7d8a374d5e0069bf9864c3a768b2029b861023ac9900ab9518760bcbed488ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9712001be328674ddd53efa343465a8e6903425c69bc319a56e54ccb4c36288b
MD5 02d0014e877cf9d685bd735559d65057
BLAKE2b-256 2186319ebd16925568363e9f0d442f76c3977b11d31a86f0b3550e2a01d07324

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 328.5 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.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5e5ff4b927bf99c57fcb3fc510c830a553900cbaaffe1ea0900ba36dac206ff4
MD5 5b68a307b762aebd1d55c330c0ee22a7
BLAKE2b-256 802cec54ca0d2e5f97e07735b061d417aa0999c4380f29497b7e65b36d249c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c94b41016f403fc526bb793666cae64aa86e87377d6f5e1b723a2523076fd9b
MD5 fe5950d56665452a1724d595a3e92733
BLAKE2b-256 9e5fca86702617619457b3c0c0ff17e1c2c28cba82c7a89a6f06d3453dd19544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65f680c7d5479b8a48a40e10910b8bdb345e9a62458fb349c2470d939311e7b1
MD5 c943e465bc9af8ca51d7ed05a4ea5ee7
BLAKE2b-256 91a465ab2dfd23568aab8e9f6663a1bf72c16c1e381b83898be8a0e47a229d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36aef235fcfbe400361f89c8e2ec4b973306812b35873b8ac5b4d7f5c02e4982
MD5 5216f3670d53044f882fdcb518e94fb9
BLAKE2b-256 9d2aae52ce941f41d569c2bf05fa13b266dc6c539f8cdc606af4912f8a433455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54a1c1feda1a07b31eab212f4ce989c0f42a0bc1789ec629028d476d46222eb0
MD5 3019b22f9e647bcd60b499f42b17f2df
BLAKE2b-256 a39fb79ac0c17686523e947ed911dbeea8c593b1706115e71b1ce554c0ebb211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 318c0aa8599e990cc92b7b1162ee5a041e3f105d5d150e04e887c0660505a78b
MD5 a6db5683ccbaa70b97a535b6a9d60118
BLAKE2b-256 32ed5b322634df7944ceeb83bc12a180c1d92b2565999942ee1432dbe783dc16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1aee106b9eaa4aaac2148ef163db27416c203ecf1141a0ef00e79157f6b16239
MD5 96ef78942831f2d77e053da5d2d8fe7a
BLAKE2b-256 bf0a4660860c1fd8c6734662865bf07b116aa6a4fe225099d38d1d0ef3209107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e7cb1684ddd183fbfeb3d02c225e8903d568905c44da38c219a101425bddce7
MD5 05d6af767091b4230bc61cf870a6d9a1
BLAKE2b-256 5544b6353fc9bd064dadcdb2a88b89f66b5b33a9ed7dd342234ef7d3bda4fc16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1ebdd96fa95443449ee65cab4e7c21624c56524a43b9385c29f34a330ab147b
MD5 be12b7a4340dde060f1ed14ec65e08c5
BLAKE2b-256 4436925f244068b94f3f20e5842a0dffe6ceb9c9a60b0fe60a7f64609c3b576e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7fb4ec86eeaa0346389268491d1836f6cad81a909946fe987f3b8228ab063bb
MD5 ebd97481f98026e45dbe145ba5453af3
BLAKE2b-256 abc26d4443df298b88c2ebaf2c570a62b6b628f99d34845c6b6ff4790ff26712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af6d4015ab076065dede33623a9e0eeea3ea6f3e650a155b0b5f8d27fdd0a4f2
MD5 87ef45305b9cd61aa58455b9dc506907
BLAKE2b-256 f637652485e69e907e0d3996686fff0be82109136ffc48623c49d816e0a02ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35a7e32b05423365b38e5a8ff82ff4da8f93129aabbc6c62600a5a90c1e82ddc
MD5 de41c5d1a03d0333e16993bdd978b55d
BLAKE2b-256 781250d973923db148592359537791d80dd44d2fb189d4d04ddbddf02127ea23

See more details on using hashes here.

File details

Details for the file darn_it-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5e3f151c68b4b42ff738e2a13ca4725d695fd571c1041e89de8956646959ef4
MD5 11b5fe4f66b0f2825c96b1f4d7068c9b
BLAKE2b-256 15c8a0ebd288c5e39ef9ff636b44c5e26afc9fc54cb383dca442b2302b7bf4c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 328.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.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9737efdd0c1f3ed91dcd8d69c8f17e9464508aea2da6c32979c46b87d071278
MD5 705b584f5e9d784308733b55cf9d22aa
BLAKE2b-256 76b958e9bb08ad4a479c6c82a500a440fa4709abdf805fd6a9880f6314a6e0c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30ab071a0e3713696b9a6bad5a2c4bebbde0a11776dc38ad6d75a24e6eb4b39d
MD5 d1dd8f8e5ffc0a6f05ff749d9275b352
BLAKE2b-256 423cce044fdd5cb838ed8aceb0fdca16cd6773d62e8bf0fa041f46c2cf2b4036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1626c94be481b9470db848331938212edc8a6f4d5e3d9d1440a6a970685384a6
MD5 56f211a4318e6d40fc5b4a8955a57d5d
BLAKE2b-256 01d538c8ce41d440097a23de79ba085ac41c98b254a1a6423601f24daa47a2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98ecc56d792f876c5155749e6404584cbc4548fc2c66879e5568969c0381d6d0
MD5 4fdf1b6ec441a47cf1c13ac8d39f79b0
BLAKE2b-256 59124087e71b940f3fe69c3b471eba2b28ee5287e963de2d434db549679823d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da5000e76fb2f7d7ad1cc0e35b974c3c377bcfd0994915a8840c7367d7c163f3
MD5 8bfc67ec4162b577c0c54334196efe3d
BLAKE2b-256 3489ede48a85593c9ac4f4f0560aed05c3a7198a520690453c5e42ddaa91db86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f92e40667281ffc1d4014b58669363a79575a1bceb96ef9a75da3bac33b0afb
MD5 a3849c7366d676c6c3bb62cd449056b2
BLAKE2b-256 cc6a766a66bef76d9dd13eae11fb357d44427d3a396563c21437e42a05cd19b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c200828e544ab624889d1e11cf62b38848ce327d1fd95babac32a8bd051cbbd2
MD5 affb004e76907413248e9536732380fe
BLAKE2b-256 476e3f66b7c028166c8bca2b443240f2d751c246a22f8922a6c9b3dd2d96854f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c389211239a4374374791bf283ab95fd656d4aad2e56af57bfdfa585b5ceae6
MD5 07c3771f3e4c8b7c1fa973f227f4965a
BLAKE2b-256 d1a1d0c37ff26c657b4c445b822815ce009af4b1a08cb79e017a76e5eea377e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f632458f118a91697d17a1e450d1341974c8efba86f9c477bdbdb0b0dca0a5f
MD5 5d2ccb92611916e3547b22bb37f09da2
BLAKE2b-256 777ffab236c9ea7433ee57a13195fd0a929d174fa81cf909a9716cf30d24bb80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf121fd957d0fe46f25d95b356a087d77e98cde4c30582d16238c18fab43f84d
MD5 493b9823b0f9af75a991ea4888820f3a
BLAKE2b-256 5778190b10fd1f204be843dc7c8190b6b1f74c14b76cd326b42034c9663e51d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47b13230f2c55f64c1743dc03302cefc09f9e008d3b299e5c2119c83bceb36fc
MD5 94a7211a5ec235171331574048b20338
BLAKE2b-256 fa6b2d929689486b30812e12a18a4840ac169b631f9e453abe06ea30a64006cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2ef6fb3624ae4f27b02d825ea2edb0af66665ec0f2889e12333cab2191ed816
MD5 1b8a6ccecd237da055d1e799b0c6035a
BLAKE2b-256 98fa0286727f87b2bb60a570b89eecb8a657ec94ecaa523fecfe630e4edd566a

See more details on using hashes here.

File details

Details for the file darn_it-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb5bfa5fa5bb0440f52e244c275833582f6e9d1ce79b3979e2fc2accee363a6c
MD5 408f60243ca332ce7ca9b47e7888fce4
BLAKE2b-256 e7aba0a1084d7a1a8d650e934b640792c0c1c6395a5c0fa3e47cc6da47b2fbb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 329.7 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.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 692c13834f1c79f4708bb7b98691766c7a2711a2a3e016587c6fcfcd11f98822
MD5 d91139b901ebcdd4b04a9bf0e02908d6
BLAKE2b-256 cd61edc39c7f6201dfa1ac73b469edf49a8cb1a8d4a9b7f3f3ee1148785c61e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e1c4f34b52b906033c37853ddffd28724c7ebe8f47186750bcf4e81bcbfc8b1
MD5 9201a9bdef7973105e63a15774f1de80
BLAKE2b-256 3f847b1ac6e067fd23ff4855dfc80523ed3c1e6caa6964cc579f31138af9af71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c88e3e9556c1430146c5ffcd11914d4602af889a7428e4962ba24dc3d45d5e5b
MD5 5337b869b7392bdc766a875946569720
BLAKE2b-256 fc81fb9260895e6d67f10343ef11daee9c161a439c89b9ca0cdf196abf103f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 adcf1e21871e45e1dfcf3bd64c4e4751ac4dc842481cbbee7a9d4188b64131d7
MD5 ba6db04909f90e9abca06a2a27270dfc
BLAKE2b-256 a0e4d7052615df112d155a7af529219dae26794f771a4b9add804193932b28e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d85855cfb506ee13ec3c85aa3368a172ddcc6f2331be4d16626c7112dd5dccae
MD5 eb4500c70169cdd953fcc9904efc6918
BLAKE2b-256 81fd058a012142a22ce899c5a3cbcdd60c62acbbbb3a1dd833c2aebd4bcb0ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2342896bc62ff3142f06c19ca4654970a19f6da8d5c7e8349e52f6fa15a98771
MD5 e78bde5b946904992c7907a322ac9289
BLAKE2b-256 02bd2af62b0a62f96439c499e19834217ebe214d482bc82303c9954a2b2ab3cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5aacd978456ccb9bccac3b9a9f0f7ff308628cae3ac3991f88e267823c320f9f
MD5 1a3bbf1823414c31ff3468a062d689d4
BLAKE2b-256 355cd3f18d2347907c2d5ef54b22bd620cdf8c93e1e4fefa30cf03057c1975c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48df69edb5e4c32779700009f0a8b0531b18f7705828a6c91177938d1aa89cc1
MD5 04f14d3b2a531a8f6dfe6a61e0b4d112
BLAKE2b-256 09cd0423d7171ae921ad363c94cd13863f09a82faefa75d7e99dc05a9b3667a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cfc60bcdb8caa7dc6dbf772b16eb24c67f090cac1b8024af34dc5e37da8d671
MD5 5013711d979b9e08ed16c24bc1d0313e
BLAKE2b-256 4c841d08df121ab3731062648ccfca260ca21509082b7027655de0e0456fd835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e54485deb1d3f399bf998c9fda1378f10d0814912671479169605d615537261
MD5 3d049158b807985641fa53ab8e219233
BLAKE2b-256 c12f61073d5f03dea884925af0952f68d87e5f11cda62e22573189c63c2321b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e271e284d284a9c71fb33c2fb10540f98d6eb28b80333fd4b63e0b07ffbc756
MD5 7099daf5bd38086db283646d4e1f873d
BLAKE2b-256 40696de4a5c64e4d60b86b21655d301886eb7af5ac01c871393aac6843ec00d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c3e75e33714f9aee6d9fbb03e4c0589a5ca07a652598c0921a3fada4e207e2c
MD5 0e53c096f316da9e50ce4d987f7f80ca
BLAKE2b-256 09d706548e13a3e77c646157c17ac89decf0de6aa49f8f3e028aa018f89c02cf

See more details on using hashes here.

File details

Details for the file darn_it-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for darn_it-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 756b0f7d73f51dcc761f7b9e0d631cbe65d545e74f3bb2f9014d372fd884c53c
MD5 4f25a393dbaa38288ebcdaef95c2365a
BLAKE2b-256 096f61203dec557478a8921b6250105aa7e4b1c745f7566dddd6527e0168d54b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: darn_it-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 329.7 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.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e307399638ab52bedf132e6a35386350bd7958f57ae745bc81a507356153977c
MD5 fed93d4a34a7e119394a0d4443a46661
BLAKE2b-256 40eae5820cfc422c91493af81e39e6337598a1ae4e70210485bb9840725130d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec89b1d88da2e389ab1dd8ff354d9ee4475240808ab86a99755462291aebb628
MD5 d07da9333b981ee033a142ee9f6721d4
BLAKE2b-256 a40a8dd959184de288ae086aed67d506e28be1c680cabef3b6a0c2972c021bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9165246fe5286122632dcf11c779ea4477b3ca84ae9013050a513f655deace55
MD5 bc3f032c4f602a4b97c4ebd13f7c7962
BLAKE2b-256 c4ee775630e18f213e46547ffe9f6db63dcbf96f01c48310e87bc8d285eb5510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c0c2a761a7d5e7b264fda224c9dbab1400552cf34d23117453de3d938896128
MD5 c0f33e0c2a111b5e6db3670304891ecc
BLAKE2b-256 4f1e2d52d77cd4443b9197797c91c6de67d6724919f5f258fc64852d2c5b851b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50dd385dce10e9063c2c08ff0081cab99099ad8bb0f3a4d201277ac67ac66f81
MD5 7a237c8f048776858a846f352157f55d
BLAKE2b-256 e0bf677087f4f518be3d9612f90c1b83fb6fe25e1ceadf86256df53c5922f9f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 242eae52c193e7d2bf9f40a40587a4065bc5b9039b95c528c71dfbd5fb9823a3
MD5 f1548e24cd621dca97369890723b0ef8
BLAKE2b-256 5f077c3c7c52a3b64756281c04501c636869834579ffe64fbff4d7ad15ea12e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca10d64760eb8cba18c4fc62b02261449dbca18b4e75534a5310c07e287e8128
MD5 5df69d92034cc0c831e8feaed905243d
BLAKE2b-256 a93fd32f405e6309f5121f45b512ad24d651c4637fbc8556eed4f3b134fbc299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 602ac8eb480a9a00beb2f3f609c9cc2470cee4e9494aa8162721d32ed6bb2de1
MD5 b08a0d7572785ded2280a5f8baf198e8
BLAKE2b-256 71b50fdb18b71b6e8f3cc3e4e2e592116daae1f89ea53414a7a90501db28b006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 756375138465e817ae62724214bdb22b491bc07b5f233d3fb1a45aade14f685b
MD5 f748fccbdce19e5126ac1d9457b93d8f
BLAKE2b-256 f8f48092c26ae79c8c0f66c7346437dd5be0d8a1aed80f3ea76f98819b2b5484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0c84ff3354f9a667b0e087436dc08fc8a10f2e035e5cf359ebcfce7bb306843
MD5 8e3583c313765e7d477f730e53da7e8d
BLAKE2b-256 9b1e86bb6ca9b81b5ba442bded791cb1f3ffbd9424eb59ba4792437f23ac9865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9484c6ae5c9e3dc857cbc60d30e676ef2f1bba9215c0e613dd33ae50e273fc90
MD5 af4357071be061e8d4b95e3637020a55
BLAKE2b-256 15bd4b2ddf4af78b27e18c5a57a4a7049eead8872f430f716f3c2efd71766663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95c9077869fa3d367fbcb39f0f36b6caa18ca16dd649a9a35dc2f34d86a1b794
MD5 632ff5ff746a3d3110ccbe99cd85b61c
BLAKE2b-256 885696761f45cd3d736aa96963938ed35f2ddb54882d7deaebbdf4bf9c5df655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 148c5f9dd28c7358ed5769314acd32fe512b600aa1e6636dd89dcc33fcd2dd93
MD5 9e170065d2fbeb43d9a1ffb64524a5cc
BLAKE2b-256 3afa61f257788621629cf489a94b5a5199ad091ff387efe29eb92a136e279d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b483aa220535289a8286ea3b94a7dc0fa5efd1c81e51a3b3510c819a1fe26d33
MD5 bbae3df6806711f9113c59c61910c54a
BLAKE2b-256 f70ae9681380c74d9eee7c41ba832ab9951fa2a44de598bf138cbb7ce64302fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ea5f3c747059c87d56087d5f2c7cef89d002b366a0bf1afbbf02ddaa4fcd7ce
MD5 0191d2a7371cff3ad704f90a17b09559
BLAKE2b-256 ba26fb184b2fdeda88c57285973babf0bd26d9f68852c631c936a9824e36411c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cdd1f592a9ad06290be4657e2501ba217da933f0b161f72d8228002f83e0823
MD5 68f665c7edfdf9b3692e85c16be67ab9
BLAKE2b-256 0274d59e397441c24271e8592b473b450b16d1a4f013295dd23991c88540e415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86b0bbcca4454ea54193df76d094ae7bbcc2c673c8e7909390d56efa73ada208
MD5 033693dec33fac42f9e71e6fec4e6623
BLAKE2b-256 fb09a4266b731d7bfc1bdd72e18c436a1a81941c2ecb7928a7ba2cb868f894d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e9117c26e5f94b8ddeb3a1232a6b14f199f9226a4e7ddd8af71423dee06f468
MD5 e1f0649e3719169017cef665084fab44
BLAKE2b-256 0a8a253a44ad92f93c9acfe04a1e55d6e87572d62dabb9b0fb24fb14b6f3dfd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 841448e285b86a6007e480b6be9dcee0bb57f91d16c5c6f12d7f98b22b6091f4
MD5 a292886f62e3f00ecf5af52544bf5fec
BLAKE2b-256 0bfc9d4946e9a2984089644f490698772cf4839a9676372b584f6ba02c81c113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 781f714c7f561e179a71a40efba6d524bdd774a95e041665db70cd332d7eb9fa
MD5 e024628211b9572f6eda130bac9fb8d4
BLAKE2b-256 da455cc00d3c065999e606e92b3ba8babfa1d2a0cfcc82269878d41190cd9dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for darn_it-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fcaf36a490867708f8b672fcc1b7d68915d3ec699340dd756288834eb4492066
MD5 c4390db0268c4ab109ba7fe105edf8c6
BLAKE2b-256 023a02dcf963822a777a4c444255e6e30072b9a721912e6cb6ebee780a2cd30f

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