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
)

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.0.2.tar.gz (69.4 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.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (836.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (857.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (889.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (805.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (672.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (764.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

adran-1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (648.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

adran-1.0.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (598.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

adran-1.0.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (641.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

adran-1.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (598.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

adran-1.0.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (642.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

adran-1.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (832.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

adran-1.0.2-cp314-cp314t-musllinux_1_2_i686.whl (851.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

adran-1.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl (885.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

adran-1.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (801.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

adran-1.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

adran-1.0.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (666.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

adran-1.0.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

adran-1.0.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

adran-1.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

adran-1.0.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (641.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

adran-1.0.2-cp314-cp314-win_amd64.whl (395.3 kB view details)

Uploaded CPython 3.14Windows x86-64

adran-1.0.2-cp314-cp314-win32.whl (369.6 kB view details)

Uploaded CPython 3.14Windows x86

adran-1.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (832.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

adran-1.0.2-cp314-cp314-musllinux_1_2_i686.whl (852.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

adran-1.0.2-cp314-cp314-musllinux_1_2_armv7l.whl (886.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

adran-1.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (801.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

adran-1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

adran-1.0.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (666.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

adran-1.0.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (609.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

adran-1.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (624.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

adran-1.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (642.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

adran-1.0.2-cp314-cp314-macosx_11_0_arm64.whl (537.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

adran-1.0.2-cp313-cp313-win_amd64.whl (394.6 kB view details)

Uploaded CPython 3.13Windows x86-64

adran-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (831.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

adran-1.0.2-cp313-cp313-musllinux_1_2_i686.whl (852.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

adran-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (885.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

adran-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (800.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

adran-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (596.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

adran-1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (665.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

adran-1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

adran-1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (608.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

adran-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

adran-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (641.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

adran-1.0.2-cp313-cp313-macosx_11_0_arm64.whl (536.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

adran-1.0.2-cp312-cp312-win_amd64.whl (395.0 kB view details)

Uploaded CPython 3.12Windows x86-64

adran-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (831.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

adran-1.0.2-cp312-cp312-musllinux_1_2_i686.whl (852.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

adran-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (885.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

adran-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (800.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

adran-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (597.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

adran-1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (666.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

adran-1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (608.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

adran-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (623.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

adran-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (642.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

adran-1.0.2-cp312-cp312-macosx_11_0_arm64.whl (537.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

adran-1.0.2-cp311-cp311-win_amd64.whl (400.1 kB view details)

Uploaded CPython 3.11Windows x86-64

adran-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (834.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

adran-1.0.2-cp311-cp311-musllinux_1_2_i686.whl (856.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

adran-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (889.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

adran-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (803.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

adran-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

adran-1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (668.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

adran-1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (762.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

adran-1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

adran-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (625.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

adran-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (647.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

adran-1.0.2-cp311-cp311-macosx_11_0_arm64.whl (542.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

adran-1.0.2-cp310-cp310-win_amd64.whl (400.1 kB view details)

Uploaded CPython 3.10Windows x86-64

adran-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (834.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

adran-1.0.2-cp310-cp310-musllinux_1_2_i686.whl (856.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

adran-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl (888.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

adran-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (803.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

adran-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

adran-1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

adran-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (625.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

adran-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (647.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for adran-1.0.2.tar.gz
Algorithm Hash digest
SHA256 15360f65a6337046ed02695576e9c02136f39f379d1a95e5a3199f3a03a8dcb5
MD5 4a988df4b2e148a2146d2f6e35856d8a
BLAKE2b-256 4e30c76a9d5a6c77b56d06a7a365d6341d2f07e1a58b3b41c7f5e032ab6d9073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9bcde7ff012462c35f8f19fc4f49c6ab9d0ee1c65cbb7d89550e8bcb7007bfd
MD5 31fa7c71f172b66788f7dba737efd8d2
BLAKE2b-256 64dc42c9cc8ced15f037ed55d09f0b1e9bad4d5d5ade9f574da71b70d3a2567b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8ebf0d00c13eeaa628007eb34e9c8263b5ae251e71360eab2fedcd276085be2
MD5 fc31aa44c8837b5d2ccb9e4cf868b448
BLAKE2b-256 2332e5fc65fe0820c6c64fcca086c7faf6f12efde0fa07b4885bf1e9392b444e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a888f7308e0849b539b66661615fd26675717498ac8c9e44b3b4150546e0ab30
MD5 ad95c5e72d9f1e72c9a05faa575fdcf3
BLAKE2b-256 216325e03497188c0c09d50b0ad870f961bb103aa08cb4dc4f6c746d53ccf5dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ab236df80eb2edbdf9594955170e99fd1b0dbdfa860eabbaee86addf0239b6f
MD5 316a9e58f15c42f2a035385ffae0195e
BLAKE2b-256 6df8a3841e4398c90e38882607a16d690cb4c8100f02c4d55914af5aa4b241d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45443356e80a622de489735f3efe9afec0cd60a065ca0794b4f9277332c8c054
MD5 0eebda3fec504bc2c445d86db99d6aeb
BLAKE2b-256 7c1020672f3e0fdfeeab01a3d4d6dc9e4eee5d4a9a206b7b43ee957c0b6c6355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcaa54b98449f5fbf9510546f4c8ef1f48f26d1c1c47323759593cf635f689bd
MD5 37e095a082e92217029642a94fc326fe
BLAKE2b-256 9326758180c9b398610c124799b5fe870dd0a873fe10c103e968e8dfc2760d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f00f230860ea2744400b4c311e0dba38b5f055e884f44a0007741fcbaf0b6f8
MD5 84a936236f1af2ade7716fc8fb607004
BLAKE2b-256 f2825b6d4dc19cc4bfff104ea4181c0dace932ac2074b5da07aa9ed384077eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c835263ac6a82b32828df2463660ac8ab57de96a53ec5b48e84c94730ed103b5
MD5 db5dcfdf6abb3935e3121d239a11a8b1
BLAKE2b-256 6903024698e413d145845df5df9700cb2d4309cd6ed3cebe09700c9c16a1e6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c2443863af913d4ab436213b5f6f7ecf0e2750c833faf11e2fd8f81fa849964
MD5 4c3611c4673d9a8dd21d4e15841b36f3
BLAKE2b-256 4ae4717d0ce1fa8855273ea50452e2b91a7ee0507cabea68eeefeece0eccffac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da396ae46f5ef3d963ee582d79877615ae92a954c31f1757d5cf6832aae1a86a
MD5 15bc3d83d10f0e1796235e00a76f2f12
BLAKE2b-256 76282dfe4f23b5e55d3341288ace16db6270b09b51daa7449790cdfa0426c0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4b9222e599e2a4bb2f2e297f9811188cfc0cd827dbfc544e505c0047e7c48ec
MD5 678ace37b581169f6543f5e10fd930f9
BLAKE2b-256 928306fc98e065d3da5a10a16316a5a9593994a5043b96f94cdf5dccc05ed1c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca7e7ff5091f9404aaf40c712081e9963b75e1772e63f6c5e3a3b6cc09c9e2e9
MD5 7249a5f43eaee4b418e332998dd1ba4b
BLAKE2b-256 c9228236c8fa4868293ee3d127347b1917c1d7806fc0ae175f7aac2869282a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bc786075f4b3499d9303209846854bb688bb42d9bf69e1c64a844f7b05ec29c
MD5 ea62fc336c09c276d296177113286733
BLAKE2b-256 909fda88b1df18869f5227552342a61c9f4fdabd21720b445f64232bc4fa2d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b8dd99f71a1ceaaf0234bf89dfe066430570b2ee223b69f0fa7aa9448658ffc
MD5 d4b4b3ad090662fbe0614967e03c96d6
BLAKE2b-256 0a1365f9c66572a6eb0729bfc642a13e08c226b2abe3b9f0f9fc41638a519280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd10e59f8f430cea1ba612391cd8d079c801072c558d011118c2df4fb8509858
MD5 6370e921ed02e65af56a3ea3c4058dba
BLAKE2b-256 851c9e12cd51522e9cfca7ec146f50097c0edf6c546bc3593f5405867f0cf484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10814c0e1ad426ac2c32452d5a368a76f5549b5db4059eba093aacce0194b8ba
MD5 66e2bbda292b74a81ad3f4b7d265aa88
BLAKE2b-256 ab81504d0e753254a1c98ec296d40f316497fd0e9dbdcbf1ad11f3f8433d43b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65c3063176e5f3f60ae537a4bf2be131afd0bff5e29e076f31e5cb6c45e84c42
MD5 c299e5605eb2041fe6a5ea9b8ee6043a
BLAKE2b-256 43d9e9102656a087f8a3390749661c8410bea4db4c776588b86c19c70ac3ff62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 632c000dab329984c031bc811d695a92551f52d112fcb341a7d367b5ad2570e9
MD5 26b30eedf8c6359a6fbd0329d0349f7e
BLAKE2b-256 07f03b10eaafe8781c25631d4d579e400e1d4aa604bb8f46aff3cb4c513d41e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d964aa62039b348d98f5e8d7f0ea31a758fcc120426530f357eb946de7bf3cc9
MD5 f259f219fb89cca917824be6d1cd845e
BLAKE2b-256 22676021d4ece198cc2278b06177dd83db95a0f6ea5ee95050bde44908bcd9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4fd18a4e039d53aa3d9f39ba525541262575ecb851a2cac4ee8303823efb54a
MD5 263642b80b184a861c106c0bc71fac13
BLAKE2b-256 ef7e9a6056dc0c760a8518a906e6a638a587ae9dc2bb0387f1ae89cc876a5c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fe174e7f32dc99afe04c7161874f87b8fff4721c580ebfb4f4455bae041696b
MD5 d88e0bd4df3f879e03f259321445cc73
BLAKE2b-256 9c2006494bff2bd80ddfcf868e453b0a825518c3f73d0b64d8f58813d7745474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 236b478b06d0a0c7334e4387aa28d2f7b551a5501a42838d8889c8d7d531e398
MD5 01a34e6f58c455e398e50824646cc3f7
BLAKE2b-256 394065c922e18d6b9ccb28332bc43692e9109b72370b954b88707ef91f8d1070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6be9a91c995359a4903efb25888164ff0902994f2c3d1281825f4e17e610a5a
MD5 bebd5a2050438ddb8f00745c25fea732
BLAKE2b-256 f2eba8b99770a3c925a015dc97939f4c9c50907e223c5a762dad294b514e629a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a203f8b4bd22c2b9026addb6800c9ae2b88eb5b07431dd551fa42faa3776d83d
MD5 9b4a84424e6e4cdaeb552b6651037451
BLAKE2b-256 94b97287c7151fb02e06fa820043c3de4a283aa8d4843c476d30099cfa509522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 395.3 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.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 85227c67cd7ce476d48175d31cb8d40682630b9564e50bf66874674396bffebb
MD5 d2bc45b99859197bdeb5fde82de83563
BLAKE2b-256 27852f5ba049406b615454335a0940ddb9de2370a041d4a56e8670018108c360

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for adran-1.0.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 40b90b118cfe4ece65f26f456d5a9fdec5b2124072b2cc66c198b859fd462852
MD5 ce7dd69966587bf154a9fd1a82096b17
BLAKE2b-256 de92374bd863fa6d97e5070deebb368f218df3a84650da9dc6df9e95b5a2fe27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd472a3bbf1983c32fd76f049b3adb3cac6117e742d8d8351b13dd4c48a8c34d
MD5 70f385241ca54bceeda7eb1d9d4c847e
BLAKE2b-256 bd1feee17a7369be62d611025bec9e75d1b2159d9b0da110c2294dbd60ac3988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10b4a8886f2953580fa0758dd59f1734f9b360d81f2af49e7a95f8b0d88c4e45
MD5 c07d54099f337fa9fb8dfcd7a05dd44b
BLAKE2b-256 b36f9b340ee8790d3b6f423a24d414d4e03c927f61190ad821f44400453e462c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f9e7623102b3524bf8d8a8d731ecb4912122417296d4b73644a31f23a927d22
MD5 5d8c981c88853c1617e61e8f5c628957
BLAKE2b-256 deedaca2bb9213cddf6cf3736960917433f44846e4d78476745264f6bbe9cd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e31a7eec1bca8b743139c27e4b339551a9c7dd8149a7a502edc5847ce231fecc
MD5 516b1a3144db3805c60088f61510b4ab
BLAKE2b-256 017ae4500a6daf5a9761b9acc45e10643115a82b15754d3e897e6ae25c00e225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48391e821ea9e22462f004bd79de782999cb5957494c27d49e2fa4fcf14e1944
MD5 26610ce76943cfeb6ab64ef753507932
BLAKE2b-256 b49d9bbabb23b71fb6f03efc9d988f318e96562ab0ccdd2b6715aede8d6169f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f46ee4aa666e71f1654e515cdd2c64acd1995407d4f1d6a00b262ce816260805
MD5 2214d192f7874280bbd2f64d910ce3f6
BLAKE2b-256 2c76c6c0bb4d8c4f831080ae28776dc45154dad5af9b8d8b694d6d43ce3168fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7186d9d6805e9df7090cacaa568318490df03b9501e782d080138a03c611e5a
MD5 5d4f88f2f32e9488b98c9f1e7f8a71a4
BLAKE2b-256 a6336161f11b136d3e60139ad273aca27d73277bfd658e37baec23157e59eaf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffd35d2cc74f0e4b0059bac3f6f31471755069d5878f1e55dd8a39981dc5374b
MD5 4e7bcdba07c7973dc7194d919f835237
BLAKE2b-256 0e590b92ce81f96871a1cb16dc24b5fc838e824b875a539db8b6d7f53ccf46e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3abbf283324f01fc6f0b3226ea0bb8ed27d0ffebe7e1e1686d993ddc08fb97b
MD5 845c4a73efb3d4568b01e40297d3b745
BLAKE2b-256 48c6df95221304994425e895ee4e067c1eebb9c2b15d8e755f14f2003209cf83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bafecb7102ad9729f479c46dd2f0682a8557dd9775e80da35e18da565349bf5d
MD5 089ff2d0821bc38b2f15f7a60de465f1
BLAKE2b-256 88b7b4423836be3ef6313dc375692725fa2c72d9927b3c9021d9db4296e9e260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 537cd32df6a4df25cc3a330ef817c8ea1d28e2df99b78b5484d8057311b47e52
MD5 0041f6a39408a0f0ca98991ad705a174
BLAKE2b-256 0070001650c2f64769673222b251de6bef39c9426599b68e4c54ddc7f1a73335

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 394.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.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e06b4d193aabb389e97519530fa5437227520f2fa72e6835c70e2cc61459513
MD5 1d53a044c9b4538a9219307dac2bc167
BLAKE2b-256 7005b02ad9b1b9eb4d4824d9063ba423fda995b6c455523f5fce3580a0904e71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3547200fe0b496f20bbdb14af7879c9e2185ecf1739e13c3a892d3b51e3b52d
MD5 817e10a699c5379f10d045bf29daae54
BLAKE2b-256 a564f10559c9262050d801af4e415b6fa02105ef7e427a4e9bc12dbfb583c6c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0dd73b35041817b7e8792c2aba46de5d099d57778ad289c4c21361ff5c4e674d
MD5 32b4793356032729f8d950795ef19cf8
BLAKE2b-256 c403732d9281ee6ed3cc30a8175bc5f0144e834faddf035700a3eb72a617e2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 573183d5ca74380a883d56c03662d4856039d6802f38dc29cf06fc9ced7dce09
MD5 2de2fc7ed243693d9aedb2ba81152631
BLAKE2b-256 c4bda269cb0ea0995e2757bdaf64d7e302d6a3fc5d1bcc1d4c7db543b56a71cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32415467f5d06c964aa9b5ad9c76b5f02c5ca9d2cb21e1936f291725e0728bd0
MD5 5979bd4d055382ce219fb311423a01d0
BLAKE2b-256 e231d2e9fc140f0a07deef0aba3c322d5b6154c58b32db32d7b54052c550e5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b63cc944f13ed632b03167e0028f734832bcd7305384f03756b5c986dd98807
MD5 0f10cb91733dca95e244a593ad0071fc
BLAKE2b-256 efc6340a294bafb1dd53dc88d0c2789728584c93431de67a5c72ff7402727d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 091edf5af3138f6dda395b8b8c082150379bad9ec2fd2913771caf9913bbabac
MD5 e3428511c4abd5f3e47cb86ab6e1ef53
BLAKE2b-256 3f2bf102ebf48389e0d76827c53ffb0f5669778ea1b011a3de960dc3482043e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7e108ae45063fa15749d43658f1fe511da142c03f291144128272a523454fa7
MD5 f16b36fdef2ceb7b02b318e45423c96e
BLAKE2b-256 74d6e8183720297b17ddde27a1bb1d1c375e0eb04c4dab93953dacc0c07448e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8aee2a9d63497713cf10cbc88e3eae46de591e1b48af61805a59bb9bc95498e0
MD5 f5239e1bce6e85fd7f0d587165e88048
BLAKE2b-256 a698063904b3adbadc47ac9a7cc9dfa3fac35b522eae16730826bbdc1bb0492f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1910e6dfb0717a0eb81d7fc7fec4b61bfb32faf5ccc32d6c0cfb52a576526158
MD5 26bb32310806013bd4cf402b042a7f2d
BLAKE2b-256 d928fa5ad130897ea28e6ab96131c8e6ee2e8e03b8e4df9f21101d7a61ab8379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de2ec257d195f84ae021cf0c5e9cd17e139d22a07afc60a8a8a68efe10d00f07
MD5 adb88733ac7f897e7c7bb8890454d2e4
BLAKE2b-256 f2fc5432fd2f7a0044bf54808e9819b15eeff1a497bed9c5a82474f97d68f8bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf30b3d3c0c3abab4a6d5ff1bb7eae2246741e05dc7c5982a26a6c4dd52baf6
MD5 1c4f00d90be4149d2a9ee3c0e8dc0f38
BLAKE2b-256 64bf57ea9d869dbddbe865b287dba2f67dcb674cbbebdac963303eadc24ebe10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 395.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.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 732f9104f0af313f55d1769907a53fa955f0a9947b3af63847a0d2ab25f9fc9c
MD5 2069bcbb063e4ec6533d7064433d3ee5
BLAKE2b-256 34e56aeb0a8e1d24e79358fa6e79f512d7b936ff37d0c4992ad8ba0c464a5c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a042c14ba88159d80ca33f9019b351bf43b4ddb74792f45287c8fb4ec6da5e6
MD5 ba3a59375597a7e7834a048c44f6a18e
BLAKE2b-256 108874c97763a92ee551632ee2c78b036c6481b5ebcaa2778567cd596bb380b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b26d701dc73d1c1e81ea96755db912d10e79650102e0614747feab13f196b29
MD5 b63d17977659584773dcc8919dbbeea9
BLAKE2b-256 fe415299eff21bb729c6e27f39a9abe256ba789336d4bf44ea17a9e9b58d59e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0610214ed9f5c194f84c322f7e3c89966bb08b844aa447c0752febea72238ddb
MD5 629821ed77e4876fc4f5e870007c913e
BLAKE2b-256 6242f6520e092b3c06161ca1570068b46268e4ff62f392ffc389b253d04c92cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e97cbec623f39713a53421443510b77d9e14d18c97e55d4283cba790333c7829
MD5 1bc94ddba5dd4b3af1c247f767d6e0e7
BLAKE2b-256 efabd5e72d350ffe762a0aafb9a867042fdd18c6807562c74dd2dcd5cf940fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeff16bf9321ed246969ef14728f09838b5be900c522e9e903133aa4d7af7b31
MD5 ce61d50253fbd6c4e81e4982226d77b4
BLAKE2b-256 fb3876f601c71087bf6ba415072e6db786c2b7e2019dd26dd3dc489c20f65e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b289709a6013a7ba6f81b364f5937503ea87738dfa470753e40bf841c40263c
MD5 d4b60fd3e335eb786bc1176b8d9cf1e6
BLAKE2b-256 e34ab3078062a60033022ac9f7a3875452ab8467971a2cb39be44cca37e77358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15450461310864392ccbadb7902d94533bb5e696aca6015ad8dc41597f4db0fb
MD5 ee35905f9935f92deb96f3998ac01d18
BLAKE2b-256 daf9e50a41e4eaee944ba6b00432759b434d27effabc9b80fc8b3ef6ed8a711e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4581870b33b0c79f1f822cf496157dd992fe0983d6a6268954875ce3b7085fc1
MD5 39b6c6d8d46fbdcd2b83102054d91ee8
BLAKE2b-256 b4f5d84f665f012d18e92ba034d0188607aecb854e9347b3ce2280da2b6df0f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8886ea66860f0f0e8e685232d57fa4ab3f610828690a33ae7270342e25df89af
MD5 78b6a7df8a0ed34d02c69459dc0f5110
BLAKE2b-256 502130d7cca1115714ca5c127bfe014783f2002d95e5a11c1674633d416eb9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d6976f0613ce61b969f3840659d88cd2111d855cfb41fb9204f0b5247d25253
MD5 95935ef8758dee8ee305c14edba26e4f
BLAKE2b-256 acb796554c9f0aee0e5d670250bef5f8e10e001283fd48b085ea97f1a766d7f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 190d118267d9f8979bb8aaffaa22df4f136348a421f9d94ecf4794e40c1ace95
MD5 419e2987056002040768bb0b224ed5c4
BLAKE2b-256 c084d5dfd5f60d15c0a599058b234d3fa5ff9f57ae18c88ffc8b347389f70694

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 400.1 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.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b77ded0a209ba0ad3c1a2c870d7ef9c1f174e1dea4356da08f6d2a313947c981
MD5 27d079eb1382b5475d210295e50773ce
BLAKE2b-256 007776595df76ecdbef7005b7f6326020cc78bc9f862238705eaaa2e1fa5b176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5492dca9d632deba2f4d4b3c1f54da40f67b0f63f8985e4aa0670fa4a8e4a19
MD5 f3b8c6b8266e764b0b188a884426333d
BLAKE2b-256 d06a975440b0acb04fa5cfd7fe90f0dd348b819ae401bb338fd134d466db0e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfa396043ccc4f52cc8fa0eab5410cde3f9a71bebe2a3c9a07c857ed935b91d7
MD5 7410d9cdacceebd505f02170d5c3125d
BLAKE2b-256 45c2d996d8494c9cafc164495f9b37cb03b1145d1c6b685c50145e09d547397b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b2046cf157c7cdd20780dc21ac9ab4d59c2d1ec3fcda1325df59037cc8a3bc3
MD5 0e9cd68c1cce6db87361cafebc639013
BLAKE2b-256 e3584e3712eae38f8b7ffef7459873c5f7700997fd5bc44852ce78facce97aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3a253325adf6fb21b098f930d0e72f93a440ea292e8da1d971d18aea7accdf4
MD5 987f5cb4196b8e77f338bb7627ca6034
BLAKE2b-256 ebb699c7177ce5fb34502a41a634337931447575e59da475db4c43e3635ac67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bbe2cf18b578abab28e9896c2e4af3d4c68f21c347fe3e25c4ae41e94122aa6
MD5 5ccf0782392b24c0e020adf07d27a08f
BLAKE2b-256 09e4cc80e7da3c0b2b8edbb7eb751d4e12761d74eac33895e2958237695b80a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 204a0b4aba67f49737cedf28b96210112d89394caeff81f09a464537eaf61e14
MD5 dd0d93626292edb2535267c9204e0081
BLAKE2b-256 bed4ccde22e1cced357cb692966c8c62c8c34519b31e1e05b116515a0eb93540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c032ae49c48d5d142872af0a5cec9a54fdd82b52c5203bb18fe60d9c093c1f4
MD5 010856ee6098b11cb43075bfc9041ca4
BLAKE2b-256 88cee703644bb604207b22856a8c8ba7daa2aa7fd6e2fd2d82abc2c01161b674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 329901722854871192aaac8eddfaa9a9cca56eb5c2503737bfe179b764e7b852
MD5 42e5be52c97b1db76dc461487d3652bf
BLAKE2b-256 3e6e0d142667af4075b9ee381f87bf9fe25134b4e00e5e2eda70320674772831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dac48062d0d65bc1344325dcf6273167dc887256437e5f82f96916278bd30615
MD5 9537d0652603bb53462baadf54d83866
BLAKE2b-256 b74613e431302671c12a1af6bcd295b06329eeff3e9061d09bd7197aef405bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a3ce26f1ce889d31dabd727b39674ed76ac97dedef1f57a00092fae23631514
MD5 3c787aae0fedb4cdf55ae1f3595c7824
BLAKE2b-256 ec651b49cfd3fbf2eb0cd6da5ddf71b092db1a400712b6b6ccbd4a63146b2303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d07b938ba425a8795d27a3fba3acdacc22380ef4251ad51b5535dccdd73ecc1
MD5 38cd8942ecece5fac82ea71e5091457f
BLAKE2b-256 05502f011d4663808189ffda1c2d4f2471463a652511396ef25fcfef00df8fea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 400.1 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.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a64ab19dab8f1ec964f5e8a59254f9ca49ac44e9ea3bcb481c760538df6621a
MD5 b777c6093629d06524836526ed048e75
BLAKE2b-256 82d8ef4fb106b2abcf095f27e0b750705b5aa5005931f10b2784ae28ba016a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc0778f0dbb440c6c813ca57a53afce7940cc270bb57addaf8609620604e8d7a
MD5 9663d4522119392b35f86a8e144c43e8
BLAKE2b-256 80c31e9efe919a0430a586928894b88857ffdebd12db0940befc932e7289e0e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a7a9c8820ca87f57013c6599d1d2162e679eec247712af6ce817a3c667b2428
MD5 0b22b33d096ec86eb72cb0881082f772
BLAKE2b-256 8959ed9667559c2b37f3aa3ee006343be661f20de8f47124bbcad6a050d4e6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c2c4ac64dcca7053e182b45ed6dcf79643d07fd0a749b2503989008288fb429
MD5 384798848cf5f0d0e5661f44e39a8ed5
BLAKE2b-256 42728baa9d4804e6959040868a7335a2e31d85af43dc2470b35bb5fcdcc83afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d48fd1158fe536ca49c01895a6a4fd4e1db740919df6ff4b22e80b0a5bc83c8
MD5 685a423435c9aa79157972d40ed6fb2b
BLAKE2b-256 68752c35011a463d06ea061155687a8c47904134b343afd9961566472813aa50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 602be837ad372d8eb8d62fce5684c61db9214141511ba649304182f8ee42fac7
MD5 3070d41c5cb7c7173089f20c6d5c1be0
BLAKE2b-256 0b2775c99df3ea8eaf1d5640fd86979ab7111e38c3ff0694f3de62911880566e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53acf050b87e2433e46d5025cf4faee01bc21de7b99618518b1ff89ed2cddd24
MD5 25ebd858dbe344babc086efce4657bf3
BLAKE2b-256 c595f111bf61f1fdcb00695bbc9c015a48dffe89c3606f7bcef496800144a50e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4b4825b2d98fff77ef4baf132e1932eb2e1b58acbbfdd0044bfd4dcd4047c5d
MD5 64912cb1c01be0f6124641175d695823
BLAKE2b-256 3cbaf08f9d35f62a5ed3c033ee43f5d5261ec2edc99522c35d17fafa7d5e06ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1f86a9ea751a5ff283bfc8479284ccb233a44489e813b5b9d3906a8fe1f7124
MD5 b8f465877a62e154f7dab108f0abe0bc
BLAKE2b-256 a440503b9ac6b5ea9dea6a222d972510933ae1a156b789e59352922c46364ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfbe05ed99cdd4e71f24990f764cba77d2458d6d52be7296401d8848034847e6
MD5 4fc43a38182cd1c68b78a4e368436266
BLAKE2b-256 42999590a5db0a879a84050ec8664ad099f3e1d5864aedc0325d8d78020c52cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 280d4bf5d4c923103081db577c219147ac042c41b074b67c0c0faa5cc173aa32
MD5 1097a01d4b01b679cc5322fb3ace2809
BLAKE2b-256 0ea22b6e85ac200ab9ada77d222a9da42f91f223135ef49ed98f36b42bdbc3f4

See more details on using hashes here.

Release history Release notifications | RSS feed

1.1.0

85 files

This release

1.0.2 This release

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