Skip to main content

adran

piccy

(welsh, 'ah-dran' - meaning 'section')

Adran is a small package which enables heirarchical expansion of markdown formatted text based on index ranges - especially useful for expanding chunks in RAG pipelines. adran builds its heirarchies based on markdown heading nests, and can be used to identify the sections, parent sections and sibling sections of a range of text from the source file.

Setup

To use adran, you must first install it, ideally into a python virtual environment:

pip install uv

uv venv --python 3.13
source .venv/bin/activate # or .venv\Scripts\activate on windows

uv pip install darn_it

Usage

You can import it into your python session to use:

from adran import Parser

parser = Parser(
  markdown_path="README.md"
)
nodes = parser.parse()

this will create a json formatted output explaining the section structure of your markdown text input, for instance the output for this README can be found in tests/README_parse_output.json

you can then choose to consume this data at a later point, by providing the index range in your markdown file that you wish to expand from:

outcome = parser.recall_text_indices(
    start=2_800,
    end=2_900,
    text_depth=1,
    heading_depth=None,
    text_siblings=False,
    heading_siblings=True,
)

yielding the following outcome:

[
    RecallEntry(heading='adran', body_range=None, depth=1),
    RecallEntry(heading='Setup', body_range=None, depth=2),
    RecallEntry(heading='Usage', body_range=None, depth=2),
    RecallEntry(heading='Recall Text Indices Variables', body_range=None, depth=3),
    RecallEntry(heading='Start / End', body_range=None, depth=4),
    RecallEntry(heading='Text / Heading Depth', body_range=(1582, 2194), depth=4),
    RecallEntry(heading='Text / Heading Siblings', body_range=None, depth=4)
]

users may then wish to use the built in .rehydrate_range() method to then access the text:

outcome.rehydrate_range(
    # the markdown path must be provided either here or in the Parser
    show_filtered_ranges=True,
)

set show_filtered_ranges to true to show the idx range of sections whose headings exist but bodies have been filtered - this is (potentially) useful for agentic RAG (idk ive not tested it truth be told).

Recall Text Indices Variables

Start / End

These variables define the index range in the markdown file you want to expand from.

Text / Heading Depth

These variables define how far up the section tree you wish to climb. see the following table for details:

value meaning
0 do not even include the section your range is included within
1 include the sections your range is explicitly covering, but nothing more
2 include the parent section of your current subsection, (along with any siblings, if siblings are turned on)
N incude the 'N - 1' parent sections of your current subsection, (along with any siblings, if siblings are turned on)
None Terminal value, selects all so you dont need to know depth ahead of time

Text / Heading Siblings

These variables decide whether adran will expand strictly linearly or include sibling sections during its expansion (i.e. other nodes not in the range that are of the same level of depth). the siblings will be bound by your rules on depth - but bare in mind children of siblings will therefore always be included since these will always be at the right depth if the parent is.

But... Why?

Though small chunks are often useful for vector search, the limited context can cause RAG systems to give incorrect or partial answers. by allowing a posthoc reexpansion step, your pipeline is able to find the best of both worlds.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adran-1.1.0.tar.gz (69.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (837.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (858.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (889.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (805.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (671.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (765.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

adran-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (648.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

adran-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (598.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

adran-1.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (642.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

adran-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

adran-1.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (643.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

adran-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (833.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

adran-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl (851.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

adran-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (886.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

adran-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (801.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

adran-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

adran-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (666.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

adran-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (759.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

adran-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

adran-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

adran-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (641.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

adran-1.1.0-cp314-cp314-win_amd64.whl (399.2 kB view details)

Uploaded CPython 3.14Windows x86-64

adran-1.1.0-cp314-cp314-win32.whl (370.0 kB view details)

Uploaded CPython 3.14Windows x86

adran-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (833.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

adran-1.1.0-cp314-cp314-musllinux_1_2_i686.whl (853.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

adran-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (887.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

adran-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (802.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

adran-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

adran-1.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (667.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

adran-1.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

adran-1.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (610.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

adran-1.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

adran-1.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (643.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

adran-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (538.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

adran-1.1.0-cp313-cp313-win_amd64.whl (398.6 kB view details)

Uploaded CPython 3.13Windows x86-64

adran-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (832.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

adran-1.1.0-cp313-cp313-musllinux_1_2_i686.whl (852.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

adran-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (886.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

adran-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (800.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

adran-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (598.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

adran-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (666.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

adran-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

adran-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

adran-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

adran-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (642.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

adran-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (537.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

adran-1.1.0-cp312-cp312-win_amd64.whl (399.0 kB view details)

Uploaded CPython 3.12Windows x86-64

adran-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (833.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

adran-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (852.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

adran-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (886.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

adran-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (800.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

adran-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (599.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

adran-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (666.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

adran-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

adran-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

adran-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

adran-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (643.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

adran-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (538.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

adran-1.1.0-cp311-cp311-win_amd64.whl (400.6 kB view details)

Uploaded CPython 3.11Windows x86-64

adran-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (835.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

adran-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (857.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

adran-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (889.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

adran-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (805.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

adran-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

adran-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

adran-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (762.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

adran-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

adran-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (626.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

adran-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (648.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

adran-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (542.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

adran-1.1.0-cp310-cp310-win_amd64.whl (400.6 kB view details)

Uploaded CPython 3.10Windows x86-64

adran-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (835.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

adran-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (857.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

adran-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (889.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

adran-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (805.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

adran-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

adran-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (669.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

adran-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (763.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

adran-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

adran-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (626.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

adran-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (648.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file adran-1.1.0.tar.gz.

File metadata

  • Download URL: adran-1.1.0.tar.gz
  • Upload date:
  • Size: 69.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0.tar.gz
Algorithm Hash digest
SHA256 bccb9f39085d133853a37825e901728b69f68803c83825b1fb7ce4c0c98d1862
MD5 8768b669c998b9e26c7d6c1c134a6c9b
BLAKE2b-256 11bf24debdbe42e708563bb5c3f652c333cfe47d8b394344e7f52602d28e8d51

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73d2306170d52e12f7673e844da4b75d6b0103353da8dba47b29c99b864499c8
MD5 f26b4892464d5a7bb3c2ccf705a3185b
BLAKE2b-256 985ae1b815a68791faa16ad1cbe3c3e270061ded20e57456a498f1601e0ad0fe

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f13b1e1034645d96675e5d8b9e303c19bb204d7b9cb07737ab6facb095790b91
MD5 b049174565568a9009b9c202638d952a
BLAKE2b-256 7d68351e9e3a64ac8cf1f75e7c58248805adfef50e5a38d494c800e2f4143a3b

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6275a951d042707f15ec1f7d6ba48295f82c11a7508ac2cfe194d8e1dbf62ad
MD5 fa3d3982a949d62fe8abee133bfd8fbd
BLAKE2b-256 8f0d440d767124fd9ed64abb1400aa3814b114574a7c842978b728380d20c719

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68c2e4c2f3f27cfe1b108674e224db43757d1cef1e69c19aabf11a7a4caa6da6
MD5 1e3e872c56c41b1810cc285f018495c3
BLAKE2b-256 d75bc696d82b398f62301323953cd91895620f21e8aea61e3e39465299233685

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf92e36757164b540850228afccbbfcf19033a76c4f9794b2b7ee812a4491382
MD5 1b854d3d00c613d7146d1e690fd4165f
BLAKE2b-256 d27ef8c6597f1264c20ed80b397f31d472a9c20594ef0cd8c7165891d98547a7

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b2a4148bc34a3019912a2f4cd9b5e810ccb1aeb5d7b5b6877dc84eac0db3a41
MD5 4c7e400c2d316c155bdcab427fd53b96
BLAKE2b-256 92eb2f29f722c60a06e201dbc3ca28f6848dd579aa994b3bb5dd7541fbee7ab5

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e30e663e990e42a6045c55a4857ac23151755ad981a28613904b3f29dfbaa97
MD5 6d4eb31b21505da7571cd783cf0fbc52
BLAKE2b-256 9fe4119942d095c0f05ec9e00c0b1e8ef14a458ae70f58facc9b96659150efd9

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c52fb7433ca6fee2eb9cc7060fee64ccd74e6e5c50190f35c3e0aa7c5546f863
MD5 14b0164dd5900d4e206a3519624f4357
BLAKE2b-256 7ceecf0a92d5320dbd3ac76ae9e982ba2d8ef3078b8fde4cfcc5e887c0c36bb2

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d272b3f689ca535ab8b84ac23b404a7090408dabbb52090ee6008e0ceabf4586
MD5 50126139153c599fe1691c80ce28ebb4
BLAKE2b-256 12eba96d1883d38e155ff8dda23b42e8ea9200b86884c7fda9966dfca98b0a90

See more details on using hashes here.

File details

Details for the file adran-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3df09d1230d15befbea0ca680c3a22917066129ff54c1c144c247712969d1ff
MD5 56a6256b41dd17bb20f5f5c08125357a
BLAKE2b-256 e8e29c620d19bbbf2fabe7e16f7b34492cdbc671b49a913043639ecc010fa8ff

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 838254eb27b92ef3a4b692f32faf68955305e10061602bfbe27804ea8b0ae651
MD5 b63a57b2276c4b6cbb41dd7efa7ac2b2
BLAKE2b-256 632d6197ed81f889b710141152258f8d91723b150f4938e0fb6b00c1f46b2bc5

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f8b4718e342d6200b086a1cf13e4b1bb10b20039593a9077d984bc0828339a5
MD5 26b339810ed85fa011d3c9fb19644d8a
BLAKE2b-256 95b1776da6d693cc094be9e53871a9a086aaa227925ef01496df09bcf3d54023

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41824141f8915297b936f01780a315b46484a2d8f8943d169775e7ec9114965e
MD5 13f2ec1895f9cca90566554bf4a6fc19
BLAKE2b-256 b839ca530de178993ab8be222d8deade216be2c9919bdabfe470d2838953267c

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48caccc753144b913a1834232a36c3e2da233584f232ec7289f7d9a0454c3232
MD5 028107a61d3af4f37a770748728aab12
BLAKE2b-256 0274187d873e7b7fc62d0df451c4b71ecaa4bf25edf3924b06fefccd46a71c73

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a29acee9ab90a008a7d8e091a205da4fcbeff667265c1d2e8538acb1d0f5f82e
MD5 4860b4405289bd44937c062d9e3bdea4
BLAKE2b-256 9944a1216a7b3016de3b1b084b41c04c2a940d21bd62aa403a19441b28c079eb

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e48733df49a3083a8a8583c36979b2a4748b282b74d7c1cdfb3216a0c033527
MD5 d80e8e75b5e3055aa4efad412d720384
BLAKE2b-256 91ae3e333316da6530a699e058a0d78d80c5f156f54cd5dbc79ebf9f79f1b173

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15b9b6fc41734f53b6db0c8ca2eaf7c3787d4cc0b1e78eca9d90bd11cfa22dfa
MD5 3b0d811c1e4ac8914338ffef41199552
BLAKE2b-256 7d760c7fbade895287c4a77e5138c8a1187a2b355230fbc2b0964f01fb08918d

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ebf4a2a605eb55a1c3f1cbf4a43c7b7b7e22c138766d61a8dd9ca8d2445330a
MD5 02e7c6441b42154c6e2950aa8e09373a
BLAKE2b-256 a622bfba18d4de35f980fe672f95d5802c9a711ab65fe71f6ad755d1ca0f904e

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cd6b431598c92eb14ca5ffbc46a2043a21109a1ca22ee6b9198bd19519eae47
MD5 1a56f9cafcd391b13bb0b73f189f4983
BLAKE2b-256 ce7fe73b734ff14b82d4b012bf997a0ce1a69b434998ce04f4ddbad9f7fe5f75

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32bc3738c899cec20da71ecf5e2c79a5c225fa6328474d51d80e6a27a2e4a007
MD5 ee6f96bf1e27bcd8a847918323c619ed
BLAKE2b-256 3bf5d8b9a2c7132e16fdaea4fdb1ba226fa07e7912d1a6b54e833288e13e8efd

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 feceae69a5268738e18f7e5500eba80976e6a4fe868edf4408fa55c89ba6c824
MD5 da2bd1b541b0f771a92bcea711e3d28a
BLAKE2b-256 2924656caaf130126e8d0762b4914e8d7ae5a8e8398630aa11422a128de04219

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06abe9a8a6853c93916f2b7a5d9e006a151ce396b5723d269b49f64301ec61da
MD5 3c6d1c2b2c3ae859c84c163163388b31
BLAKE2b-256 2e1ba6d4ac74f1696c3c7237bd167254fef828aea816f549ac226d4a47a2a394

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb66e3ec4e75e4a137612c6fc5f88a9c0d29adafd951a04b9a2a5f3992a384e9
MD5 d2a598739c537927010e1ac3fd10e3b7
BLAKE2b-256 7e13d04e96014c537023f07e8819627b821b437715918b035e5ffc932ef9f926

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92153db40f3278f9dded90f9180df782d665277716c7a5f4c2db6e396f764e04
MD5 72012ba7a44b9d1d4cb08e801eca93b6
BLAKE2b-256 420a5ca05ae2b6defe634c43c6d9d5ccd971bc66cfe89a079ef78f994bd9a47f

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: adran-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 399.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 49900987f51badbeb43d64328b59411ba1179a902bf95b3dc824c7ca996029ab
MD5 6fedd3fcad072010f91c770d9e74bacd
BLAKE2b-256 cabb619e6a652c880b99bc9fa56d7bb069d6e06e9bd2a6536b48dc5ecd7564d7

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: adran-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 370.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 945898acfc2410496281175b75513ad2773fcebe4856d0b1f88735691981ef42
MD5 d916d9181ce519593c034c36d2158418
BLAKE2b-256 6e8c31039281ad4512c8e1c4bd888550ad17ce62e8963d0eb9603c5af2e8a921

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8155c0a4f40bf286902c9665dcda1191e19c3d6e84be38a12b12fbffb64b290
MD5 a64e5dbcfd6c9af32905398c07344ee2
BLAKE2b-256 8ec55ee7c8d745b65f2867210c5e53e58aae6a20b51649db956bd969d4f866ab

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf8d15aea0b1ad8c6308a1865558d19df83c411efd08cd0e17efeb788a0b0ccb
MD5 1913b96acfe79005c8994445df1ac7ea
BLAKE2b-256 69526fc8d7299cb1b0856ad3be8480251fa24fdaa87bff9d8d9a343ccfd6abd7

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4e57be02c481097fff27cbab7999b5f9d06cf808470538dd78eb6ff2c279ffb
MD5 7f9b85a1067aa7388e96733fdb885fa0
BLAKE2b-256 08d5e62cd4a9013ea249303d2f0fedcdfe24f8a9292772de75003aef02a3c89b

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea9abd9c3352580b220ad0082966e706d4acf5feac3647b8012725c41dfc95d6
MD5 6719375dbf7a5585bf68740d9377e475
BLAKE2b-256 761b79ac4d0b09c41d070f9c8a715558e971f702656f049eedd01d7cb9527293

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a899f976796999ebc5824aafef6b61289b589ad86e376fc0d1d287c80ed96492
MD5 8bc0cd029764a3c92f18321f98e0a077
BLAKE2b-256 036a5cccdfcf70378868cd0554a2b60585afa4d5d966336d7a6cbe7e7dab5f2d

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ea53ae6e094fa89dfa796af7dc971e3e97ad46c848bc1197864c1ec9a0f4d10
MD5 2ea367a0c916d2f8a3151d5649155ee8
BLAKE2b-256 d1bcc83f213f91541b9f4bf2f58a5fd647672cb502165d3550c7f823716ef106

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4812d99a5ff64c4f8a50872545619c350b8f603b8f8aca934775fbac912f6726
MD5 b966917b27a78089e5e9a111247cb094
BLAKE2b-256 a6de94bf081a6f4b21ae052e9b00b76e9a03ad1612d23c132ff7b9b3ca9cf605

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0f69f57c313db0af3cc430776bfcb1e55e2d18498a910bb59690897325aa1cd
MD5 9f013bed184b0ea2d67cd78925345565
BLAKE2b-256 8711737a107cdf4a3a8604ca95fbbe8e9908c201bb4646ef24e525ee79ee0a57

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b20e7e7345046d6d7a6dda6fd3aaf4990a00a119a747a55598f38a4044d1cd30
MD5 c19dbac2b3000d7ac456a52ca4963a2c
BLAKE2b-256 1b10bc1bc988eebbd9a8ee22fa9dfd5a8fba4df73387a55afaaed74bb3e6510f

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e323505c288acbc0b024ad7d82d66b5cbbd84eaa359d0d59b06894a4ff904a4
MD5 68c45a52315e14e7fd77eddff77eaabd
BLAKE2b-256 1f74e9f84e7b99c574e2373cadc3dbc63d6007af5a079371ae412db5f2b3b6d7

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28cf27a5f601601b0951cfad022298f38a95762929464cffc5e1574908152bf3
MD5 8fb8a78b25b89e342c4f1529bafb6db1
BLAKE2b-256 fbe279680878388d204edd8b3b7ce5a62a64ddb4e0b617d6ac943c0353b108c9

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: adran-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 398.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 31c28b347d43a67585f0853370b7ca7de844712ca6aa0213e78505e2ec70a9d3
MD5 1278506996a5ce4f3f24d052ff221ca9
BLAKE2b-256 cc87f77204d00a0b0837243e0abab8c5f986ec08a123a56d8eb2ed9f155df2bf

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8acd9881eebde3c7a46e3f805e81332ac93ddacdc3143af7d666fa8fdd33d17
MD5 12c9a41894c637093eb3f951fd9d1e3c
BLAKE2b-256 7f55b785e91156f98bfbf5e00d69a965ace2cd730e01d2177b2ed819d014b659

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 512feb24da422be8b9bad16b64a35b7d073e90de999180e5f4976bd4ee3c7e13
MD5 7d71c4ef2476e7252f3e90f9d68d72eb
BLAKE2b-256 3805e0ab96b49c093f36dec384ff8b0937d19efe8b4fb8a4875f94aec4d99898

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32035bc124b2071788913e4fcedd40563c2545fcd71fb082668b6926b510740a
MD5 59bfd81487607a5bae2dfb9b86829971
BLAKE2b-256 5d58eddb0847ebb7689270017142343f6ef96aefa04dbd2983be5fdaaee76060

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 874638ca06f5f3e955333467ee7ec70c79cc0e65ed0d1fbcc510b0739b442103
MD5 2f21b93d35166b48f450a87972f122ae
BLAKE2b-256 6a3e1b1bc379d2ef8b61b8923b7281af2bc3c6338692c31ae889d5d42f4862a1

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fd74ae16f364476ee3b869280eabac322bf4c54df363df891d1e5531b9c6eec
MD5 9460f20d7c0430e5e254fe02287f86fd
BLAKE2b-256 50cd73e8bcb2a6130788ea9d1a2f7a9ea8bcc1b1d89e9ba24396fb091faa261d

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7049446fcc6f686e1674cd9489ecccd9ef31859219462794f082a9d842e409aa
MD5 83ac78ffb92e2224557edb547a888f96
BLAKE2b-256 bb6b6a9279a6c7054712cf48dca46a63282e242cbc8fb17bf99fba00616389c9

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70928b9683155ebfc954cdcc22505c984543f98f355913a62372c3c9d3f4f443
MD5 006b32e48c53de1bf086950ed5a6773c
BLAKE2b-256 4a998a38add1a8b22e63e1ad89110804beb3e0a455962ae73a5be96bfcd61a7d

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4734148aa4c561d34c1c72bb0102cda23ebbce7393a73e9bf1136fdd9dc681c
MD5 cf449793407144ef9bcd0b7ea8f883a0
BLAKE2b-256 0aa4c6fa8618bdbc61a55f50d05a355486cc209f4561248f6278e59937f7f9d6

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7975ac0785fdbc9e6c8759a4bfae054a80d315b302a0cf27bd110ed3d949517c
MD5 fe3676802e4c970beb864ff878c9aa1b
BLAKE2b-256 7256842a296041feda7ba355d97d7ae0e2e628b3daa06c897a39577b659aeed9

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 787ad1f22ac2f0cc2b42895e453cd12713cbe3524b92916621d659fbd30194a3
MD5 9fead2aea2166de4e973527737d266dc
BLAKE2b-256 5459045956ec9d550054811e22a25a9b15754021cedbc08afcfd9f86917c8d69

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70bf67ebf1006c5cf2f47d7e3a97c5ce552928f071be43c105766d2c0a03f387
MD5 4a7ba7c2140c5fd6d5373ed3c4c0160b
BLAKE2b-256 dab0fd81d35c92027498663d45e1bfb7ea8536701dcd5b9237e403fe3916258b

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: adran-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 399.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15dac5d4ac10f8685ebd48ed759700ad40af26b00f4fca728febb9ee98ec6b1f
MD5 baa63d445243783be80a8c2a1e499008
BLAKE2b-256 96f06585b2ea381b6e338ec42fea4dfdc8c1835983c74e2b9847995d5ef8611c

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 762e4a2d9787cfd9e4653c737a0275b75553fe10741835832ff7720e6672e3df
MD5 a9716083fdef167d0e3c85edf815eb81
BLAKE2b-256 6202a8bb6003592be0d3da97f6ce489c2a688a77f39f36f4841e4da23a569081

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acf705e787af74b25f81a7659603e6a52f0562a2d48a73c9fecc11135073b460
MD5 9ec3374137070c6d53a79a7753bc1f93
BLAKE2b-256 74095197f3fa2f50e68899f07412668a67834083756dcc401f34e6cb31e94f0e

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d1ba556d6ba4c0127cfb77c63058fba70c54cf6d0d0ecbd458a82719513b747
MD5 2d54425edefaf0e2fe6d5d3197cd185e
BLAKE2b-256 b9166e3172f8a728fd9a5558cfc282eaa2c69595126e1f442a2e5ba0e0a8d19b

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f73ded5b4bac766415223c0940eb6a483a20871ce1a108b320350bf3faaccb7
MD5 a5ca753800d822da499e37816f7cc1eb
BLAKE2b-256 21bad995f1354dbfbde6f9ce112995e51ba74a8897c85162a1be7ea6fd43197e

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cffcfc55af1384526c9dfc909b623f3f9610c4fe27a5d32091f281d50b1c598c
MD5 9c7694871d8aaa67a09df747d1fed6d3
BLAKE2b-256 bbc5e281f357831aa52958e74d1dec5754a648968296cbe816079553a3fc9cd4

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1bf6ab08281d7395e027a0763e8f6a5ff45a77063ebf5fc9f0863005338f2dd
MD5 7ccabda50c3c0fab51209ec4bdb206e6
BLAKE2b-256 9604f2e550513cbbe5ac62261bac307ba708703ec76e92cfba51b2775930b5cb

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52c60d2867cf08baf7434c9500acba993758f4dc471af64127a9e619abe4a188
MD5 4af32469e72904fdcca795de154fb060
BLAKE2b-256 4975b340b49161500116d2faed3b9ca839625348e4eaca3cfc1bfb763c26076f

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b0942ea851e61c336e0fdd16ea3d9da942558ad765813ee7b6f0c5ae6a4af88
MD5 1eb5c6ccd71c732e49a94d36d223f5f3
BLAKE2b-256 1535cacee99dd88aeae3d0fe45b258e707cf474875c6bf6e97310d3c37b98d23

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 746c3a661071b66378b9f3d961c6423d01098265969609bd2ae685650ca62518
MD5 9a2a7a1f729a494288e9eb47b3b6e4dd
BLAKE2b-256 72581209295048790066317cb12cae50010397f638f048aec34de029a75fea69

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df806913142d9e2b9e2143cf85131fce3c7b4af168e80b3a389fdef4af9b5e9c
MD5 f4b43332a86a5a8c167e584734c755ed
BLAKE2b-256 7d5c78593fd9169370d13c3b6d971167f74d18d4f777f0369679d8c56534a95d

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60d03d7f29901149899d90430b62431cbf9f768b58cb194203cce4d77c4cf09c
MD5 d095b285efd65ac86b9ed0244b925f0c
BLAKE2b-256 6f6ef3a947f6530d6678b17c790f8ecdef10314475aaf407ab5041e9dae2a9cb

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: adran-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 400.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0369f825faeb6044a78152dca3adb2df26c7b08a6c1c34aaa59e7db65d009f87
MD5 5a34e385e89cb856a2a9055fddf90fe7
BLAKE2b-256 0859c0478e9402318ae70aae439a21e732cf16c15cc0fa0f4cacf2bf3a7ca020

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3674b153f827a64e8f39d86733846bc191e18079f50da9ad6e67ca5d266d3aa2
MD5 54b38f57e09303e041b05add2113523f
BLAKE2b-256 cc449120719f31c34dd6f33167cf50f167319793c786cbeb48ca68853e578d81

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31ae91f553141306b02e871a8471a3dc2c6fdb2f59ad49bf8d98820aa0ec7194
MD5 1cdb9827352a3f03fb532622bde6efbd
BLAKE2b-256 0dfb39e38075aea1a85ea34ab8553a55394ce4813246ad1106f8ce6611e1ff77

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d8eee1598c6dfc62835d543361925770c1bb8ea127c438bd5037be82a2cb547
MD5 5d46ee165dc94c413654e4dfc89c726f
BLAKE2b-256 4e56cdb4b6c392562200398971cc3360a460cfc47f8407cbbb642aeff2288180

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52e6f319336afaa28118903c7996b20a1c9350520eb68171beafe274e2e19f6a
MD5 31835d0dd0b59730ca26f1f3c2acbd58
BLAKE2b-256 85ae9338458ba3e770b1126d1983977c76617bd74f8e083463b2267b73dbb769

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8576f34153441adb16eadc1ed2c605f100d60e0661e63e25853307222a33f7e8
MD5 12d8f3fd8271461870a2d398deb10982
BLAKE2b-256 565d10bfaf67ae4b88b636d1dc4268e8a99ccb9da18013273e4e7ecef6800e6c

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0b47d4b9776114336b20c406886ea90d05a2d32b644859989f5e0aaf8cf2a71
MD5 408a4eb8bfbb413c909b491121003526
BLAKE2b-256 c18c0b93fc36b69c4ba2f9578d466516adc00c171a4c69d3eab498a5bb6d4e75

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9ad411e987236d2e5d9c7613fc59911a3059731e945c9dd853aa0fc1ff076f4
MD5 23c84a267e3f0b62a7de88f9f16423c9
BLAKE2b-256 09550523d3d34e3c5f0f8c68f005e7634c4e6f122329b43d6a2ae9fb86a40247

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6da051893d7ec57ca48963736372d74dae9f90f566f1bf965ad1477c62bfd296
MD5 dfe1f4766c8f82f94a53664a3b98b1e5
BLAKE2b-256 c26792133ea46113ad0f12799f40cccb9c861d92a562a69bdbfe2a122ed5067f

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74ec4192fe4cfbaef10c2241715e30a2f53159f71ce126487a024ef827002308
MD5 cbef369b4ce3266a0694b97fde54d488
BLAKE2b-256 2f6d38d28714e08af93bcb42d420962cabfe94ebd2bb29206aa39cf804d6d083

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2537773fdcd6c07ce6e8f50572d4857019430a5f22a97366c83e497f4d161f74
MD5 1c10292d7528ccf9bead2b9f210e33ad
BLAKE2b-256 4856f19a216993e9eea9d542e4e018c10f8d8ca017981fc955999bde05dbc82f

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b07c9b0d9818999981e37791bed96e4b8eed51aeef19b96532626337d889f386
MD5 0d6cfd9d4e48841a64f9bc8c5015ae19
BLAKE2b-256 54e1d0f60acd99d4c9c871497830e7bdfeac0b2739e80255ed45174acdc7be30

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: adran-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 400.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for adran-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e4914c556b0dd3468ea6b38ec456d0cf45cf9acf152d9272fec49cfabb2a382d
MD5 96c983126c6aacc84d28c5a9c48b8140
BLAKE2b-256 fb323452cf24bd014b396703d6227c04b6f73c158d882647700ad41c7ed9b11b

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05902b70b6985c3aed354c6a3d34b103f5cada491fcc72d6c613910acf183ada
MD5 047f8309d64a50417c9830a4f23cb210
BLAKE2b-256 0801d58b4ee92a529beaa07dfb9eac94bb5042ff8e49a4efb3fb6e1a103b00c9

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b51ef30a8f693b7fe8643a7fd1cdde7e91870641dd27ad16f6df6bde80f666f2
MD5 fe3598e20f772a133cfb545a41bb345b
BLAKE2b-256 91b6c6c548a164c8ef434557ed77be1aa60f8f266f48300373e301130e94dcc2

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db1d285c7809d0e730a5fbace99a6c9935940295e1f670ab67c0bf0d02cc4499
MD5 e551c7ce24483fc7ee902ded9af4b249
BLAKE2b-256 f50b79349ca39461a3bdfde15c018bc8bf8d0f1819d5a77a4e6efde42ae85fc7

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1482db73d613e9a6c65504b668577c941cc8e6de0eb0cf2c07a6d304478f3143
MD5 ec877f6bbc33bd573f46734acb0ea26f
BLAKE2b-256 ef99de418b653634d696d8b792712f041bc8e2f1c4787a79d3d4294fc0829743

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c36ea81f5c77a0759f12b8125e82e460e74223d9a99d8e659cc72c0481cf5e6
MD5 aaee2d97cc99d75ef57143a6c46255d7
BLAKE2b-256 85c398cd55e2aac156a91349559ae3fdd2617ca27049fcc3ebecc82134edb4df

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a81bdcaddcd60944994668bbe1775da89e4111f302790ae283faa0d80e9835a7
MD5 3019790d58c463a97736ba0cd8ce8b66
BLAKE2b-256 3855e3d04d2519b493e133bb093b9239832a0071efe523a2048c73e848a1a783

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9840e518c2ae655211af0a8b653c309107bffddfbbefe24a8205ba5b8f5dfba6
MD5 7022e77b10ddb6efd9bb4bdb02264831
BLAKE2b-256 de661039be259858b40fbb7d3187394bd609520cc9f010dc26510ef92cdeaccf

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36c579266d116e2f5e62a16f8c616a3c5ddf5141778e551299a68b313e111fe5
MD5 6a897b6ba054920fc9281d08d33066d8
BLAKE2b-256 6db67dbe9d98edad641cc22785d5a4d57ddb5cd7970c3fc27320a35830a85e60

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 037b5c24916c758728b0ffd290ae771964051dc0d41248f5c64fc249672c3711
MD5 727f2f2b5cd27d968fb8d662bf0a45ac
BLAKE2b-256 08171354acf9422109884933cf1838ea4268e90f1483d4cf537969395b607e5a

See more details on using hashes here.

File details

Details for the file adran-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for adran-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 affb257674a7bc73ca4da2f2cf9d6fa0cd379110fe431f302f4144894e3b7fa5
MD5 69cc468a14956be44e078751229135e0
BLAKE2b-256 4cd592dd9a9cc3b904d08cff0a2c9dec29fe4152efa50655cc284bea52f2afa1

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.1.0 This release

85 files

1.0.2

85 files

1.0.0

79 files

0.1.0

79 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page