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 rehydrating text 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.

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.0.tar.gz (69.8 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (837.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (857.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (890.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (805.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (675.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

adran-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (649.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (837.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (857.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (890.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (805.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (675.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

adran-1.0.0-cp314-cp314-win_amd64.whl (400.1 kB view details)

Uploaded CPython 3.14Windows x86-64

adran-1.0.0-cp314-cp314-win32.whl (373.3 kB view details)

Uploaded CPython 3.14Windows x86

adran-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (836.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

adran-1.0.0-cp314-cp314-musllinux_1_2_i686.whl (856.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

adran-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (890.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

adran-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (805.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

adran-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

adran-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (674.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

adran-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (763.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

adran-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

adran-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

adran-1.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (647.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

adran-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (543.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

adran-1.0.0-cp313-cp313-win_amd64.whl (400.1 kB view details)

Uploaded CPython 3.13Windows x86-64

adran-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (836.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

adran-1.0.0-cp313-cp313-musllinux_1_2_i686.whl (856.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

adran-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (890.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

adran-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (805.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

adran-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

adran-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (674.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

adran-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (763.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

adran-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

adran-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

adran-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (647.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

adran-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (543.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

adran-1.0.0-cp312-cp312-win_amd64.whl (400.1 kB view details)

Uploaded CPython 3.12Windows x86-64

adran-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (836.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

adran-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (856.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

adran-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (890.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

adran-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (805.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

adran-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

adran-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (674.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

adran-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (763.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

adran-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (613.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

adran-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

adran-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (647.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

adran-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (543.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

adran-1.0.0-cp311-cp311-win_amd64.whl (400.3 kB view details)

Uploaded CPython 3.11Windows x86-64

adran-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (836.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

adran-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (857.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

adran-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (891.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

adran-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (804.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

adran-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

adran-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (674.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

adran-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (757.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

adran-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (615.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

adran-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (628.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

adran-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (649.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

adran-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (543.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

adran-1.0.0-cp310-cp310-win_amd64.whl (400.3 kB view details)

Uploaded CPython 3.10Windows x86-64

adran-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (836.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

adran-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (857.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

adran-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (891.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

adran-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (804.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

adran-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

adran-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (674.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

adran-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (757.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

adran-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (615.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

adran-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (627.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

adran-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (649.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for adran-1.0.0.tar.gz
Algorithm Hash digest
SHA256 dbc78e1470d56624d2b628ba0006e29ea0d2fb46f7536f7fcb16484cc0f6b81c
MD5 4ed3f443c8960bc3f64e00608b74825e
BLAKE2b-256 f76f525e02dec135093a451d58be8129d8b001adb8887957eda01f1a0a189d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e73e3c383d9623319cd5d70ea80cc7e44f0f863a84876e36e5a921d3642df6e
MD5 3b16063a47f90268b0f0c41096fc2df3
BLAKE2b-256 63a17ecad28a56b97d61a5903550cab26737769838b338e3abc92307a5fc503d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 222346b3e3c1bc763d87b2236dc5c55815b897b5dbbf59045d2125938da93ce0
MD5 bb9fac5f0b5a21cd0876ab8a01385af1
BLAKE2b-256 bddcdea2d770deb52aec0b76dd55e5532f1501235f778a1acae7a5eddb9ce28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3d6ad1ff8be25cc299bb3bb9b0cffb6544e51d78ec0244237fc7d5a7c1e2a3b
MD5 0f6550b8aa7507a910ad5e4de7fe99a3
BLAKE2b-256 c66d9060cb22e87b4844c7c7c01d05f8793ca517da3523cfd0c939bda2a2a627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 388c8906f2f54eec098acf6352411b4b10c8e9201adaa1f18fd7518c0da5a0f3
MD5 0c54b5ad0a6edb1535611e93bc871cc6
BLAKE2b-256 f7c9d0cc37ab3154e38745e898617580af70f6af5b5e467528a04b07c9d45ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9fcda15882239d71b1811434ff3d77cc111c34fd6d08c8136458dbbf5566f40
MD5 8d36c223f93ff842a2bc5f952ff38b75
BLAKE2b-256 1483834f79eaaf4a72a174f9c233b38f67d01346002c7d0d07700ca5f9b090d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 449de5619f2b05696919ddd0fa7bae284f73f317f2e933e2f5fcac8dabe253ad
MD5 642afa8de46f87df93aba7b5dbdbe73e
BLAKE2b-256 7b1ea45967681b1d536a73f0f2bad9f9647ee986941dfce6395bc3351cb482ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9d66706b7afe97c68c9a408798eab6fa7f08b9ec0fcf7c1f80ec7721ffe8cf2a
MD5 5e7a81be70075c8124fab339ef41d2f4
BLAKE2b-256 a0acdffcc40defda1dfec8113aa859744f24ab12157c78bd0d3b09b481f00bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44d594996fb79309afa21e987c5a6a08e0c5d2a23f80e5dcdc7f832cfc8e357d
MD5 b2328020ef41a750239da4e27039604d
BLAKE2b-256 5ada62bc1dd752992debc436f5362b976bd5ab6b2652dea6b6afaab05087d445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf980e1ebe30ea516968b7832094080c2904307972357b43cec1ab6a3322fd98
MD5 3e5392c33771e7c34775e7eade217b7a
BLAKE2b-256 eee5bbfa6a798b79626343a32c46638ee732e1544c87177054b9944b63ccab2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8493f47ea296f6fce27a12b2157a057758ac7badefe87815eb021506caba9a9c
MD5 a5a9569bd906a00f3ccd3332ac8f9448
BLAKE2b-256 8f7c69dad4aaeb6d4abb00a27545f7e38134c08a857a2f42567cd25211c06ca0

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 234c3009888ac1a475f803b81a3d66c9da4defd4eed3942068b0f11be114c3a7
MD5 5586ab1d9853f22e4d7935268d1625b1
BLAKE2b-256 ca24f704e2a3a1c0e7b4c8288a042c78d7d8597f237222450fbd23232d5f77a8

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d1976adbd63007ef85aa1d8beee5194f3244ab15340a00649e2020486253ff3
MD5 2558d893d1f1324bd50c9d4121fd813a
BLAKE2b-256 75575cbc58bee30e099ed8e9baad5a64e32b88f627035ac9edccb78cddd74a60

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2faa5c1ef8c52808c343ec206bbb2e864830706483cf5d5f6db76ac4c4a0a4e8
MD5 a9c7dea98abbc6bb747b81d1f920f886
BLAKE2b-256 3cf1f324ad5af86e62471d12f87e6c2be88577b264c82bf87912a6be4c75b007

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abf458f0466904bcd27f2cd8d805458aee06c8b8cc2ff3163435d06133796696
MD5 5d129af8a25970d4041670ccdd858e8a
BLAKE2b-256 0133c48dd4c0dce6a98ebe2af417910c9be53eced5a97802f9231ff21c48f9f7

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a1acb8e837d6a88ca3eb874f4f2db3c6c7b12b0bc7def570d48dced94c42246
MD5 2d426d9b378525e08cb6de887106bf3a
BLAKE2b-256 c3adc0064ecdce743180d6a63be098f9170efe45d97b540b2f308fe4c5f52289

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ef167c795307ddb60c3340b5677a4af878e846bec4fe205ad0308306a73e0bf
MD5 bb90e9c12e065b51e179f0cfc6e41a8d
BLAKE2b-256 736ae21e3e738b09e073ed2aa36356b8e11e588106706998a73013274bba97de

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a271d20d659c824346b7007c3e42ba3430c23fa6521a8a0aa9972e7677a15594
MD5 ff753c784b06369d96941e832a8f110b
BLAKE2b-256 6119740938bac2c9a937873e22d6c3d142b1769d96e05c2d62642012fb013d3d

See more details on using hashes here.

File details

Details for the file adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adran-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bc76a1735c91fe695b7ce2100e406216787aff09d573562894d467aa54d69b3
MD5 1847b6d3fa1aa65c55dcc46086727595
BLAKE2b-256 884920ca955d1fe5af0a3dd0b46137a8d050f1994bd8da47df6a1f9852dd431f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 400.1 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5c2ff565d50396c37821aee43889c108edf0ee18a534ad60c1a38f6b4d2c7119
MD5 e51f61eabbfbeaf84caaae644ebcf87a
BLAKE2b-256 51ad282006b0078ed42ae4b7c519ba58628643cfff675b5b1fa728e3e324abe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 373.3 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3b1b6b7a619195038dc744d09dab48b28addfc81d7bef134bb01847c9a0c04cc
MD5 c26ef1f29225f45e3a13e01b96c876d7
BLAKE2b-256 3cd3f4f1bfe720a469b1f6868c2e2cdc653d6f642007be1e2da93eba0b332c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0826b80afe072ff45703c8919a29c79a5fb8d6a8df57c640f7f6f2260da99a14
MD5 e4457a3d6f5f19e1fb6ab68a294ff7a3
BLAKE2b-256 6a9bf7d76a02be520ff60613f9d992cdaf988ff51ba68605cc3697c153b50c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e42674de4d15f85af8e1db8549677b7585a03a4297dee1b8f4a6eccc06968f60
MD5 2afd6bb40a00ab35ae9f98d4b4cfda48
BLAKE2b-256 0ecc029886b123c61e0e5f2e6e3b1687256b84538c02e0fabc4bbca4fe6616cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ee6e55927b6f93c1ba26d7590d3daa0d496d5e649c24895727ed7afc3d2f61d
MD5 0ba8779160941ce495f1c80dc000c993
BLAKE2b-256 e3d15432177c06743ee8a7efe3891bb1ddf415e47654bb2150059f2f884c3d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a07323b2be33c647c90675f89230314e6f5a93492c0f627d2815771524177751
MD5 28df979ccc8425c08d238d56ba65a2e7
BLAKE2b-256 cf5ea10619babce154767bf044a3ceb4806fe1b65316a0677da4f5b92e311895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa9cb29288fe768a6085164657d4b85b7cc7ac6a33a6b24c08a031e21bb1cad2
MD5 fc908192050f07a22e3c8ff82e32e106
BLAKE2b-256 3c02cc514710637f032c1d4aef1be2fa5fef280070abd618d7e4779f922e84c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf273561da75fcf25dd9da9da342a35bdc07788a7522bd413b9d63fd057601b7
MD5 f479370ab0a620f02a0cee3b8384bdec
BLAKE2b-256 4dbd12a89a67b96d88474ba269a22e9009dceb44a5491170c74fc7205542213c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49f9c9f92db51a120b8eadc2c5b2d4cae767ad73fb936d9eda857e107adfd2d1
MD5 12c46671d26ec30274380b831e72b35d
BLAKE2b-256 9a3576ddd0f3fe0cfbad7a36f465b72e821d48a9fb7cefc61ece9e9e2c88a134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c4335293f7cb1de837b13926235802e590ccd41b0c448419e3157ff96386438
MD5 d4be43d03e4ebcc4943d71f9029e5cfd
BLAKE2b-256 ce3f2c6af7d4858948b7dc7fc8a22bcfa4a53d5253a0e806753033a8e477f459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a11dceefce7acdd05c7b59e2e7403157ae43eb7d5cd1e573755491343d933f5
MD5 104b977af14a1c874b29c3871bebbd13
BLAKE2b-256 ab25817f6428d17117e6dd994d181fbf744ebc0cc88b42add483e79ace1b6a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48014b7a62e7ea9b255e5b7839b376ede588d0d4c6826eb0d750c4cb03e8dfff
MD5 998fe3ba80b3264e967f66972c8d1f14
BLAKE2b-256 f6bd33d7a322ff350ec00dfbbb7ebc81133b6a814e3aa9b523974bfd010bf0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ebabb82695ec3ee6cdc4418b4011ef1718c2cfef4b73b561871460bc16e1408
MD5 e3c32b81a7f6fb4844063000b28adc21
BLAKE2b-256 bddc6408de19eed2de3a081ecbaff2c30c84c851b45ad95633bca3b474016d9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 400.1 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be29cf2a23fcf184cde03bfc9cfa9e6502517e359803108cef21ce29b3a3d937
MD5 279b95d67e14b5938bdc0c5c4c75711c
BLAKE2b-256 0fe3048bc41dea8710b71b31d96657f0692f1f6a0cc025e53f530587407c4c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05d305f1a9b8303c7f7e988f493ed3e1837f701ccfb083ed95249e5f27705d9c
MD5 38fff8f0e5c9f8920bfd464cc7c312dc
BLAKE2b-256 a40f90636579d3fadd022c34b97d482c4c997f4f634fc7d185bc6e29ac42635b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4fb80b9d6f04cd14f837b6686ed6e50bbc76cea1db080cbc440da0c768f3ddf
MD5 ad4551e9a7894d7f43ccda4fa06d2631
BLAKE2b-256 4ee5309db25b9f45d71bd061c5fd3d4a4551bc76579ece186f80a031a4b1a202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 928da489a5d4622f8c32cce13ff0e898a59b899d4277e5bd3c1ae95a9b5bdf43
MD5 860d6c6c76be92f60b97a1fc39d1a712
BLAKE2b-256 b3620da31bb042ff05cbbed117c87b975e7209af2c73e971569ef7ba05b53c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21e231536cdf021f8b509e42833f33b319e6d46bce7bbcd026ce0bcc8b065a9e
MD5 616a0a173cb15bcf9c259912f01e1412
BLAKE2b-256 ff429b3f4223e55db3711f969c80f8ede8d23182d8b8a703861de9bfce802458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57931e1645e3b98213ba8985e89452cfaa1fd9414eb7ecd283a661341c3b3e9c
MD5 106c9f7d2fc42b02042ca40ea6535bb1
BLAKE2b-256 9c93e931fc98ab4ab0039e4596e0fefc1d7585a279b11280eb657c151315e535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5beac7b8f7e7480b0fc50bc435c2c441d21113343777d844c5b15a9e460ad44
MD5 fda0f4f53d14a10f22058f2f870f4985
BLAKE2b-256 1df940f702975620dcd9fdf467d02fc576a93f7cd06f02e33294309561e0cf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc3849dc94fef695be9bc82e8ad4e0f2be418cdc455bd653cc7570222b652bd5
MD5 a30f499bca4da5d1606291b52c0accf0
BLAKE2b-256 a51c2c2fba21bb5c436b3f362e1509fdabf0c90e45b785eb17a92238cd7df2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d0655b43590ada03e44c606439b45788ccf08e2a9890c1548a3a0671e6f4625
MD5 ab17627de3f22e89cbcea9db1287afa3
BLAKE2b-256 7fa173330da421ce90a2391df09c76b87359ebf9b179171fb48dbc9ec0715d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ec1b9a283e0698e2e0be5d64a4c33c03826daee03f5f6989f6890afac5ca3e0
MD5 4e8e429a3e147338ae0abf9e2d5e49a8
BLAKE2b-256 3177c29f67741e7d159b917df9eeffb912f35b3b470fd31b9a6488cdf9a2204f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 442918a47570223e583e182b951a4d132f18373adb1a95011c67f27b50dc07da
MD5 07d572aca8f89a22014153c743564609
BLAKE2b-256 983b88b519c3af4958a9dae04814147636e0abd226f7d38413b321c09a47cf7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beedd56a77d8644d5fca3b9387bcdb02de2ffbd4c0ed5042a9f0f852f190d096
MD5 5e2fec3cdd400ef1ec40071a2d8c293f
BLAKE2b-256 10edeb0a69091e38911ad670d2d3b077d7aef358787c5630e842278883025a10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 400.1 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f24d57d467bca13e498f64530b9d186b418c435b1d7c3afd8662687b7a4fd58
MD5 5c1226ed3ffcdfd024016d6344a816e2
BLAKE2b-256 7d50b20f3ef333948bed558c36297a5ed50ebe36dc560d07c37188aae65d760e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90bcd57d87c4cf3b6a9c779494f7c044f21638f7995df765e246a08fba5bda28
MD5 c8527f040e30b2ff3576a4c61902f904
BLAKE2b-256 02b7b78a820def441b14568d1af120a1ecfc6b56e01533e9660de8202217aa1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11ef488e08552a78ae6e1ac8732624f46806b028018db2e62c02fe43c6a7ad7a
MD5 a8a453b93859eb904d44f925d0312016
BLAKE2b-256 85eb04b9c53ab0018a98b001fa21bc585d430810b3efd17cd0f2aaca3d9bc023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1dbf99357bf2cec23f18e841787b315fb28189d50d0b2eca76870b1f302c8183
MD5 ed88213e2919d24303aecf555672febf
BLAKE2b-256 d28dabf42e6ceee8e3649c7484f36299f2d14dfb4eed5483b8a81a82887bf2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0dc8932d1d93eb50d20083d79ccd523696fd31203387fe199f46f1027b59f167
MD5 1da254a7d72d9512ed2e9a02f0028b23
BLAKE2b-256 affe21125fd11857b48c590df65d962e013f74b05fe3099f5eff9764e92fc61c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e22944c1081a10f00cce67030c94c1908c68f96141d7156e9abeb64c19d1dd3
MD5 99576ff5394afd151ab06f01a6afc7ff
BLAKE2b-256 a32c29f3332cb3e6d5f04a3a26903aa05179733a438feb70058738175853b77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89f64c878e373661c6c7019f1b0961763d1a58ae589553916f4f0fe3f9973f3c
MD5 1a329f042f30fba7b4929a0513ec4233
BLAKE2b-256 d59d1dd5b40c6a834ca7634dd6d0ed6ffed2ea473900c9ce0fbfebf422ea38c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a23252bd7bbb28e79389379c606e85f79e1459e69fff77b2b8fcc00e00c1710d
MD5 1cc2ca4aae438def6871d538ccaea061
BLAKE2b-256 425b36684c4eb35b2cc9f1a743bc56a2cd44c57c8779d4e4c914b17802032014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 243c676321be70837c554d784a920c78ca32cf3b175baa2907eea5194d302ce1
MD5 cc72330f20ca760b320832d12933b6ba
BLAKE2b-256 0cd8cb350647e2e4a50cb13360b3b129be08ce6dc0e4f2b045831b29b806bf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d28a72c1b6b908b75950faf877e219a79d95c98f580e95bb5ceb84fc0d255a2
MD5 0314f1e532bc975a94bd1625dc2f7e33
BLAKE2b-256 b669f3dc01c7897e3df10c5c034a95113fbac636632b77223c8fd386480fd702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e612ddfccbf99c52aafdf5307b3ce0bf631c08a369256bf88b595b2e3c75130
MD5 056c39f10cb1ca1f479da108615850c0
BLAKE2b-256 441f6c5297d5653d5fc955b36193c7d95092d233fb774276e57eeacb15ab8076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 580af2c7c17b93d8a3c273fcac59c87525a82b640c8ed893b4746af6c0c54d94
MD5 8ec57ff2fdd5e1bf75f94a83524f8fe9
BLAKE2b-256 1244d87b8a993ef7dd310741a230e6732a4dfb1c443c80e9e2c7a9fd4fb1d7e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 400.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 32717bbe8c395ba52c5cfed3f25b2b04f938a728c1c454b21adc5aa0cd609517
MD5 c7166e0264837111efc60fc96aebc1d8
BLAKE2b-256 7c63a37fbef2ffc3589e833010b00c7a7f965ba5cabace2e00c7cae8e04620f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d4fc41fb76af0a25597439316da08578bc408c5bc4686a3f7d7c73bfdf1d05c
MD5 61aeff262aae2b1e500bcb8c781b87a9
BLAKE2b-256 f80758d355b236936957cc778603fbaee60ead2b7bd990b3c37c0084759331df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff6fe4c8acded3ca05a2afc7fabda24433fa2707537c3944aa260b3c9ce5d53a
MD5 51099081a4ce23ecbf991ad7f2528712
BLAKE2b-256 6d2137ca6f8bef52ba14ae29e9a2daed151c563ad57861bf31a0244513d9f510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6f52988f26aceead0e511c1eee33f0495654fa7a7e63c59711bc46ca71bd7ae
MD5 0be5e9c6c909bd4fab9fa48aa039747e
BLAKE2b-256 0e56f04988ff461e9150299b53d0c3fb9b51965a72585fddae8681bca307b0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b41b42a6a2e89efdfb1849a2579257c51c7d593c0f5ebd78898064786fd03bb1
MD5 61a3b523cadba9e6d33595f3a0891e08
BLAKE2b-256 513f57dd0cef21fb993bebd2c97d89716689f22c2ceb31005fa653b2667593a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30879247f2e54b051def630dc705c04103c54a266bc287533a6bb61989e755d5
MD5 1550f493522e8b7f8fe6d2487b8fb1c3
BLAKE2b-256 0925d9fd70afcda5bc3ad649048ed9adf5fccf206ce6ddba39f2e9e0d375ea68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52fb5ac5fb64ee78894c98c37e70800cf5741ffdced6d59f9060c1c0a4415848
MD5 31bd705bd81b4715018ed47195698836
BLAKE2b-256 6cf102d4fedfba05b94edf98a29b0742590333dcead684aaba7d594d89d3fafa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21605bb94e8dface37b6a7d27532b1628c4e183da68cbbd809dfe8921cc094cb
MD5 756be6556d831412a38d64102d8d6c66
BLAKE2b-256 77d143450ed22e76a68f988537ff4014a06c02ed3aaa61e5db354dcd2988f358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ff212a90617edd52c5fe500a862f76589483826c22370f3b16c25df400da4de
MD5 32361647680f1160a6fb34d655b71a7a
BLAKE2b-256 2944508b8c0acc4bd39153979af7a8f8fd213e183b2c9de220be18cb68209d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b44bf8d83d700ecb862122d595708d48cc9f4a6118f2d50294412157147ce05
MD5 9d9b28093e9640647e1f37282b902510
BLAKE2b-256 12eb0c59935032c79d0d001741f912e0de14b94f5a4ec58d76da28ef728e1a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7f665e1350a11eada50768e522c20928a3960ce0a36c48c48baaf9da0dc947d
MD5 3a29184d5a2906a4ca25604ba68df928
BLAKE2b-256 c4ec934fa927367e1a1eadacb0ca74f31e07c1655d66e447aa298ab3ea470a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 167afe1f975abed61a2b885754f4376176fb6f65ca14ab4ea55ba1f1e48cf30c
MD5 1b000ce95a4c8ba79e56ce1bf7bfb213
BLAKE2b-256 546fe8f7a8a7674a31879cab9e9c2cd894f11bed963c382ca40727aadf59816e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: adran-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 400.3 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3dd6c4df4ca8cbac7c46eb08b0e2453d5580be98ae54b3595429643acff110dd
MD5 f1a3edd61903245af29277c039f405b0
BLAKE2b-256 267dada81da5cf1d08e66cafa36c86071edc67716c5b63ebf34cbea13f0a6713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c9c367523dd1030fae4e157efadc911bda02164b11ee774385aaf7ef6f2cc64
MD5 590ffab025d14cfff60068691b904c6c
BLAKE2b-256 a26ef21a85e4b62923ad601b9989b1a81d2df277cfa5a4a0c28578c5b4bf6bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db8922039ed79057fd2ab2c626cfc4fc709ccc0960b30d9ca86b0684db4a4410
MD5 90ec41177c106cb8f862e63e845a1a6f
BLAKE2b-256 99c1ccf03d004591e3268382fb1b3f487db5c1bc2564a78fb1ef66667141c81a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8249da73b4783dc91524a68de2c24fb72aae544716362d4bb51220ea5ff04f56
MD5 e380423d43cc7dc3ec25f62f38b6d4d5
BLAKE2b-256 99a6749a5cf90e13c3fb7315b77209b301600fe3013431c25e43e97ed2ba040c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38c1560cea0f38d98557f6b24e04ced10038bf3bee638b130a9105f14d82e673
MD5 4906e764280d861d877f68398698500b
BLAKE2b-256 ad678d757bec1f13a29847393f1de9d26b0b9e43df4361c0231745c064e9cb73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9750a8f43ccd00f391728368f578d7fa2a95afbc959a7730aed2f72adc78e22
MD5 586e27757b66309095633d7e9fd2ff9a
BLAKE2b-256 a7c33e9692826bce1723a07459ed807d07c0921e1090501594e9780751916502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3a79e3e437c27c81c223fe8f9c8683ca9bfddf43b10560619fe8663ccf6874a
MD5 76b59f76b7d076f95e49eb9ea6fa450c
BLAKE2b-256 7400f13da45e3c473964895de2d711001a6b052b3318944ce7b99929ad42c29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a6b1fef447bf872022eb2d2e8fa3bf91e7d69a422f76864a6d0c0bf2478870f
MD5 92fa39b690276a80995eea5d8c4bcdbd
BLAKE2b-256 7540cc81671b94f80e7d5da1ad0e010eaa6ceadf574b7954ecffab4422dd25f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d8201e9ea23823e697573774fde634332a5be8db5801c4ff090e84df5e1dd97
MD5 ce6ae4f0ddfedf5f4608800b5144789f
BLAKE2b-256 7fb7270f02405f2cbecc522a1b39b2d511d4e394e2851a5beb2a83307dd663b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23c14dc5a65a0de15d1b9c11052c41d4ef67307486e192be44505144b462ca42
MD5 6c4205e7959455e39089d293dd9c48b3
BLAKE2b-256 2cd9231e8438d2aa37606b6538c7c348686afbe531743d10fc80fd5634766448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for adran-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9407533f9114a056f5dc1680c786ad7e061e556f938ef93cd5d81604f01d593f
MD5 214c3ce5cfa60bd65a6dec0bb8024a4f
BLAKE2b-256 fc5960dfc63b882841d9371a6ba658b47a09a004f808ba5967851d21900ffa32

See more details on using hashes here.

Release history Release notifications | RSS feed

1.1.0

85 files

1.0.2

85 files

This release

1.0.0 This release

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