Skip to main content

A module tree explorer for humans and LLMs

Project description

pretty-mod

a module tree explorer for LLMs (and humans)

[!IMPORTANT] for all versions >=0.1.0, wheels for different operating systems are built via maturin and published to pypi, install <0.1.0 for a pure python version

ยป uvx pretty-mod tree json
๐Ÿ“ฆ json
โ”œโ”€โ”€ ๐Ÿ“œ __all__: dump, dumps, load, loads, JSONDecoder, JSONDecodeError, JSONEncoder
โ”œโ”€โ”€ โšก functions: dump, dumps, load, loads
โ”œโ”€โ”€ ๐Ÿ“ฆ decoder
โ”‚   โ”œโ”€โ”€ ๐Ÿ“œ __all__: JSONDecoder, JSONDecodeError
โ”‚   โ””โ”€โ”€ ๐Ÿ”ท classes: JSONDecodeError, JSONDecoder
โ”œโ”€โ”€ ๐Ÿ“ฆ encoder
โ”‚   โ”œโ”€โ”€ ๐Ÿ”ท classes: JSONEncoder
โ”‚   โ””โ”€โ”€ โšก functions: py_encode_basestring, py_encode_basestring_ascii
โ”œโ”€โ”€ ๐Ÿ“ฆ scanner
โ”‚   โ””โ”€โ”€ ๐Ÿ“œ __all__: make_scanner
โ””โ”€โ”€ ๐Ÿ“ฆ tool
    โ””โ”€โ”€ โšก functions: main

ยป uvx pretty-mod sig json:dumps
๐Ÿ“Ž dumps
โ”œโ”€โ”€ Parameters:
โ”œโ”€โ”€ obj
โ”œโ”€โ”€ *
โ”œโ”€โ”€ skipkeys=False
โ”œโ”€โ”€ ensure_ascii=True
โ”œโ”€โ”€ check_circular=True
โ”œโ”€โ”€ allow_nan=True
โ”œโ”€โ”€ cls=None
โ”œโ”€โ”€ indent=None
โ”œโ”€โ”€ separators=None
โ”œโ”€โ”€ default=None
โ”œโ”€โ”€ sort_keys=False
โ””โ”€โ”€ **kw

Installation

uv add pretty-mod

Usage

from pretty_mod import display_tree

# Explore a module structure  
display_tree("collections", max_depth=2)
Example output
display_tree("collections", max_depth=2)

๐Ÿ“ฆ collections
โ”œโ”€โ”€ ๐Ÿ“œ __all__: ChainMap, Counter, OrderedDict, UserDict, UserList, UserString, defaultdict, deque, namedtuple
โ”œโ”€โ”€ ๐Ÿ”ท classes: ChainMap, Counter, OrderedDict, UserDict, UserList, UserString, defaultdict, deque
โ”œโ”€โ”€ โšก functions: namedtuple
โ””โ”€โ”€ ๐Ÿ“ฆ abc
    โ”œโ”€โ”€ ๐Ÿ“œ __all__: Awaitable, Coroutine, AsyncIterable, AsyncIterator, AsyncGenerator, Hashable, Iterable, Iterator, Generator, Reversible, Sized, Container, Callable, Collection, Set, MutableSet, Mapping, MutableMapping, MappingView, KeysView, ItemsView, ValuesView, Sequence, MutableSequence, ByteString, Buffer
    โ””โ”€โ”€ ๐Ÿ”ท classes: AsyncGenerator, AsyncIterable, AsyncIterator, Awaitable, Buffer, ByteString, Callable, Collection, Container, Coroutine, Generator, Hashable, ItemsView, Iterable, Iterator, KeysView, Mapping, MappingView, MutableMapping, MutableSequence, MutableSet, Reversible, Sequence, Set, Sized, ValuesView
from pretty_mod import display_signature

# Display the signature of a callable (function or class constructor)
print(display_signature("json:loads"))
Example output
๐Ÿ“Ž loads
โ”œโ”€โ”€ Parameters:
โ”œโ”€โ”€ s
โ”œโ”€โ”€ *
โ”œโ”€โ”€ cls=None
โ”œโ”€โ”€ object_hook=None
โ”œโ”€โ”€ parse_float=None
โ”œโ”€โ”€ parse_int=None
โ”œโ”€โ”€ parse_constant=None
โ”œโ”€โ”€ object_pairs_hook=None
โ””โ”€โ”€ **kw

CLI

Pretty-mod includes a command-line interface for quick exploration:

# Explore module structure
pretty-mod tree json
pretty-mod tree requests --depth 3

# Display function signatures  
pretty-mod sig json:loads
pretty-mod sig os.path:join

# inspect libraries you don't have installed
uvx --with fastapi pretty-mod tree fastapi.routing

uvx --with fastapi pretty-mod sig fastapi.routing:run_endpoint_function

Examples

See the examples/ directory for more detailed usage patterns and advanced features.

Development

gh repo clone zzstoatzz/pretty-mod && cd pretty-mod
just --list # see https://github.com/casey/just
Performance Testing

The performance test script (scripts/perf_test.py) supports both single-run exploration and proper benchmarking with multiple iterations:

# Run a proper benchmark with multiple iterations
./scripts/perf_test.py json --benchmark
./scripts/perf_test.py urllib --benchmark --runs 100 --warmup 10

# Compare performance between local and published versions
just compare-perf prefect 2

# Benchmark multiple modules
just benchmark-modules

# Or use shell timing for quick single-run comparisons
time ./scripts/perf_test.py numpy --depth 3
time uvx pretty-mod tree numpy --depth 3

Benchmark mode provides:

  • Warmup runs to account for cold starts
  • Multiple iterations for statistical significance
  • Mean, standard deviation, min/max timing statistics
  • Silent operation (no tree output) for accurate timing

Project details


Download files

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

Source Distribution

pretty_mod-0.1.0.tar.gz (58.3 kB view details)

Uploaded Source

Built Distributions

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

pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp313-cp313-win_amd64.whl (921.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pretty_mod-0.1.0-cp313-cp313-win32.whl (886.5 kB view details)

Uploaded CPython 3.13Windows x86

pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pretty_mod-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (996.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pretty_mod-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pretty_mod-0.1.0-cp312-cp312-win_amd64.whl (921.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pretty_mod-0.1.0-cp312-cp312-win32.whl (887.1 kB view details)

Uploaded CPython 3.12Windows x86

pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pretty_mod-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (997.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pretty_mod-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pretty_mod-0.1.0-cp311-cp311-win_amd64.whl (921.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pretty_mod-0.1.0-cp311-cp311-win32.whl (887.8 kB view details)

Uploaded CPython 3.11Windows x86

pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pretty_mod-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pretty_mod-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pretty_mod-0.1.0-cp310-cp310-win_amd64.whl (921.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pretty_mod-0.1.0-cp310-cp310-win32.whl (887.8 kB view details)

Uploaded CPython 3.10Windows x86

pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pretty_mod-0.1.0-cp39-cp39-win_amd64.whl (921.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pretty_mod-0.1.0-cp39-cp39-win32.whl (888.1 kB view details)

Uploaded CPython 3.9Windows x86

pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pretty_mod-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file pretty_mod-0.1.0.tar.gz.

File metadata

  • Download URL: pretty_mod-0.1.0.tar.gz
  • Upload date:
  • Size: 58.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pretty_mod-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a1b2d4be9aa444e0f98432559638a7ab2ace5ce1e1c442a5847581cab23ab5c5
MD5 08391961b76cf02068466b1ee7209e3b
BLAKE2b-256 82bd7f67793e84a67c6afca902d36ab7cc7f1318450f07ae3dddd33d484a1c20

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff6192d51111af7197c3d0fc98a4d2618c66434167fc3e05da082eaef160510a
MD5 22aa8b694cc018c15bde273c39b02254
BLAKE2b-256 ea736e800cafbdffeadfda536b3c96eeb2387291bc315aa0e6c9357da246d968

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 249e471e785538e69b10c7709369109ee44dc64cd9d3f2d28fd0a266094424a9
MD5 fd3e9d2b23ee10ee912225d64e001851
BLAKE2b-256 ee7a27c77718b0165500004778da7341a499126718a5f3a2b96f7358cecee18f

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae181cbae6dc51fc0825562b99a843cbf9157953708b0810398c70e7074e44d7
MD5 1af9a431d467764085c2c78df9f40410
BLAKE2b-256 702281f47cd567d6b9659d0bf5d2360c9ca7438421c63c0db8bf8ce553749fed

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d08075ac24a0de5f8cf594895016f61ec9a1e589b4555ca331b21458338a2376
MD5 59038c20248c5fe48d7a7dc6e744f061
BLAKE2b-256 28e673a17fd6e973e651d84448407a0bcd98784768ecb33207491f501399d753

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c7a911bfa3c214b624eff8db02c468fe56562f13fb1c6c053cd139d326919d4
MD5 06fe80b447a999a79e796b8d62f30f89
BLAKE2b-256 de7652da6c8c95a60ff47bd7cf205fa3a382c3cac6593e8512ce59d6d30df77b

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce15cf10372ad1fed20d5e6a4f9b3d63e21b851862633f96cc6f2f92ab67c1d5
MD5 7c76522d846ca26cf6eb30f2f2f07e72
BLAKE2b-256 5ed565fe76a9949d0ca7d7043c93b7d5b9e769cd29fb58124ddfd0ad7ce682a6

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 503a1a7c576c262de664d5dcebbd03e633722cd3b67d09121af5a6f17b69fa7b
MD5 3bdd145ddcdd76d9c521e15606f2c05f
BLAKE2b-256 3cfbb6ac3feba35ec96613bffbfc57935e4844f4169ce74a0f3dda85baeb7015

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c070a8668eda36600bd0ea2681d1b541ed944f364b428bb02a783e4082c8564
MD5 c8ff8b7243002f9d611b28b6e5a9567b
BLAKE2b-256 b3f30dc96478c63f7683b2d3e089efc2a98afcf049d2cb3e649ef208c4c4a3c3

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87f198f51cd4e4e142b967f54c90f7bed8ea2fff3f2d7d9fc7ce48d964cdd14c
MD5 09a5ab97f7fed66d8b0e69d9b52040b7
BLAKE2b-256 10f6134a57d084ed6d941d06eb3140d9840a9a768ea4b24b1b2597f47752e8a2

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aed62442d704da64c3b42f07df1493dcff5d64a638fdc9a5c1117d56e2923e75
MD5 d3511a01ca823057ab6d1c117efbfff2
BLAKE2b-256 5de54603729b1de6fa9aeaf1ef2147b857961802dde6f775a1d926815643aa8b

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0f43a357fa286e3ebbf4bf201aa716864d0343bde5fbb18ae8966114ba05429
MD5 5b75286241034d92c34f6c9e5fc84259
BLAKE2b-256 05910d54fda60a3909199c2a26a4f5c79cc42a371b21d07089b92c381aaf06c7

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 448d4cfc2589150fbe0ac195cd6075d20c291fb8c32233c824327e8fc37c0858
MD5 a5ba22766f21944d6ea2b07dbda25dfa
BLAKE2b-256 1180f123c5482f6d872f1d22e898e851c0c4859623b2280d13eec9a393e97287

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d5f3f8d562d2af7c3417c83730e102b132ee8b3bd7b49f17959c3b86e2c3163
MD5 6e2b77eaf36c1945db52e5fe2c469c11
BLAKE2b-256 4c7d8b3cdc569539ecd52891ed2feaa812cefa4b356193c4ac8a081397d298cd

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 253bff2a3b7c2cdac500d6587b4696dd41081b9c643fa3e984fbce444ba21b8d
MD5 f39bcbe1cefd06679e368312cdbee8aa
BLAKE2b-256 25532cc2dd5470a99f2115e8b1410d0936b41b80ae0927f45080cac07068a478

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 509d61e16a5abbe01b0659e79a95c62ecf005490f20183eb7d017f6fe3385019
MD5 35dee09a57f17a760ee856a25221888a
BLAKE2b-256 23a40e5d21ba719f5b079c661d995321f8f952f69f2b7f2a8f6102c5634023c8

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8f49a903355d838b8ad8630781cf3beddf15af06d440f0f19e1d9a40dd3510d
MD5 8fa8aeca259afcea65f80062221209d2
BLAKE2b-256 46d0d992fa7a535cba85aea8c4e85220363f3473dc20faf7be30deaf0937f117

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2a8e10e6ba2940b6fb2f3035a6096e4b7fe13d916fcdfcf6ae32fb8c24eca59
MD5 c01a2cb4f79c01381cd1d3c2f71c9587
BLAKE2b-256 afa8862d8e4251b43e7a9bcff3d1fe1870bf016c20290b8a2b6832b891b889af

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8dc3a27ff2847c0a40d65839623b8bdbad4bef7c336eb3ca410b41d3d94dafba
MD5 363db90d4282e9ec195dd91e342e3aff
BLAKE2b-256 f5ec00a9483a460962f26456561a1ac189c1212bc3582c14634b81170715ac6f

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71c41ac6b00eaaf94ab7bba92c03598d0837e269d01e57bc6375877c9d5eeed3
MD5 3f0ab6557c754ced37565b2b43fe61a2
BLAKE2b-256 a0dd86f8453e9e4520f836a82526005879025a075f63d3b0ac9aad024185fb87

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49724b3c3338f4968861bb83ba8465cf9be7f69b5412b7a630da11a7767f2164
MD5 33a0747de9f2a2abc0507a98c275eb4c
BLAKE2b-256 975c7cc660b174991a2fdfda97e459c7fbee068a1f7313927a2edf871188c67d

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2c018d49a53021ae7838d8f8ccc53bed5ccbcc46b88aec98d0dead9489948d7
MD5 7810595c6b34e5b43f68b08b72723860
BLAKE2b-256 76500e04911aa5a0b1f049f746b30807435a6701a07632b2c9d41a6a9c96b762

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08580401447f7b9dd3dcac6561eced3bc4b2157ec0d65f7761a54e620d8e8fe3
MD5 b94c3d07948caab531a6dcc552f66c6f
BLAKE2b-256 54d1dde2e95ea7f2ec2bd92bc7f13670c0985eb09efaaf6fa85e189e3ebc2e13

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c841d6fc18e317b6a3a865c470d32adc9f2d0c8126e376d7ccddc36593d66511
MD5 086cbc8bae4afc6f4ba16c3c10dd46cc
BLAKE2b-256 3a79a0cd9d0040f828129752622a19fa395ad6c735947b21f66eb41bd75eb23b

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8902065e470733fc0964befe0766cf1565f7ec8ab8f6eb7ee16b61584151c458
MD5 88d809e8a0316219f012573f4d629388
BLAKE2b-256 943a5ba393090f7bcf4f8d152a4163901e2115c693507b0e34d4f4ce7058b1c0

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67f10eb4ad5568adc51ee5631bffea59fa1a1487464d419690bf4be0725bea2e
MD5 11bc681387bd3243a39784f6754438dc
BLAKE2b-256 3ac148dda11cb123cc7b783a48e9c1faf80419d6252a333c8763f0f0c448c7e4

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3559462259e809201cf5322d4cca978772ec40bd5c8c11652f8adbe6771e08d
MD5 aed4675ab31827dfcff2b66ac21f1195
BLAKE2b-256 f55c31364f75d535a966cfefc4400958cb2ce0edb7094fd18ad1eb3dd6010fd1

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fa960fdec5c5bc2396e8d246262c44b8d7edf89edf57374249dad4c3579487e
MD5 840e44b19d2deac98a3bb323ae2b73a1
BLAKE2b-256 175836cff6c37828003b53d05cbf4443d710df8ec2d2c66458e8047210f368bc

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aadb8abe87bcb09609c3a63481aad01424188003c38e29bdccac8142ba606c56
MD5 2cad43d9c34e12672cde722e0b314325
BLAKE2b-256 0869f9b1461be909f2ed55914bc491d0817a2b183c03c9a43f294aa337e99f1a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e1aa13bde6b54fbf075090e9012e4cb1f54dd544954088f2a7c05e07db4eaef
MD5 cfd84009e2b103bab4c7e981dff0f41c
BLAKE2b-256 171ad7160d611f129ea3efc742188a355c91f085add4c8b248b15f4c13509401

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cea98c52c47a125826b9e37caa800bac426710af8c4c6f4d28ef7ccb16218d8
MD5 4d5af980b167054f662ec0e92b8da18a
BLAKE2b-256 f0e929f265d9c70d84eeda52384f294f58512543a1e216cb685794eb73d12fb3

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe8ef687d1d5f93e536fbd8c04602135160c27995081982914bf37926eddcb4a
MD5 3e1b96ada964e657ba2a6f5a667ba9cf
BLAKE2b-256 606dcdda5753fdc41e19ab2fec113336fbd38eaa60a807d4d8ce5e00a9705f2a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8abdb8793dc13b4eecf26b09498af63b87c876eb743009eb0b33431d00374efc
MD5 8f209524d9e5acc8292e1fa518e51cfa
BLAKE2b-256 c1e784d4b9ce6b3d287c919f7bfc771e6f051b9fcc86a1939851b7e4155b8612

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8389dfa272c85d5462162a0bf0affcdcfb8bcd0b35e95315194bb45977f5602
MD5 d6cf06f59451df7c69b26ce93b31cc46
BLAKE2b-256 ed8c9b6e43ddfb2141e2ae02671cfcbecebfa44d9cb444a04f597c811161a723

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a14ffe6489d8163f9cb87ff025a8eb6046a3bccdbed6164a9599a079a9849c5
MD5 3bb925151cc96cf47ba16fddfa3c646a
BLAKE2b-256 dc1147915fd63b096625477d1c372f372b75f19ef654be92f584a8279d97dd8e

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 432703d7f3be68f4b67ffaa35863f204c4e672c7133e4505ec90296b9ee3f7e8
MD5 f889dc950d8f4eab4b5e1cfd178cee80
BLAKE2b-256 5b57f5dbaad6cac556768f1489b548b5648dc0ab14eda221c79b14de56b9cfb4

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c19d130296f31add891ed569ee8ff016f7c8ac00d3cd4a7a8f1489a5813d3ad0
MD5 0cbec97bd9c58548be3122dc252869cd
BLAKE2b-256 71e05a9438b05517c7e7ee75821886f8695dcbba4769405f103944b76daa867e

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e63486f776f47b2c4a9012495ecbb317a43fa2c20c2225b781f74382ef22ec7e
MD5 2af8b970859439723b719f846144f14e
BLAKE2b-256 b3c2b29a15da50f11b80dab2f2080a79fd49c6531b87ae0fa3a15944288bb13a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pretty_mod-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 886.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 67a9c22bb15da9fd7758d48175d3aea36edb5cc1fc02ca323ff59e8191e46200
MD5 ffd0a213a3fb0c8a92fadba349ec7d37
BLAKE2b-256 4cb8ae931e6102048952ae682822c3a93628df155cb2676a0754a97bf11258d5

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 187b1819f2527ba43419e70a7e6d68dbfa9751f9e8ea384fa9dd3eff49759c47
MD5 d7aab9b2568a8f76c761b0321bba04e6
BLAKE2b-256 42961f5a724932682eb551bd56705d06a66f73d294266aad791b10a36937b06c

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 531ada691c1065894f7b05787b7f4a055b337b5be0cc75c928d6c3c03b63bbee
MD5 d5a7683b514cbe33607c75c5a3357271
BLAKE2b-256 97a3df4573664cbb51169929f59388833f69d79dcd865f84b7d6035a2dfa2752

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b55af86fcd3a57fd3fefdc47f239f46a8764db84303a676a375f595d05115c12
MD5 5e5af531ab7c1d62d89213ae20ec982e
BLAKE2b-256 6705ce2f455e4ddf00a41935b6517207a7751ba8b952bb2e6ab19e72bad2e942

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1932d452e14f6773c223ae04f951365f12ef3d47afbeb73402c3f74581fc4ca4
MD5 05f3ef79989f101b34496f7f4c61e9ea
BLAKE2b-256 07dbfa51f3080455b1ea489fcdecc57d25e99be6b7ca664fa0f4a3292851f18e

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5056de1ff20389d725382924080291824c9ef74064e2157caed916a449f72cd0
MD5 b9a3df8159361da6ed6074a5ef72d12e
BLAKE2b-256 136f1f677608d3edc5f3681be763036f5da892dda22a88a3586722f43a92eb55

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31bee66ef64c7381bc81408be8fe9f874947846c173fbc44a4cb469bf1c01c35
MD5 aa546f7ffb9693aa1142dce157ae3ce2
BLAKE2b-256 bc9d1e0852e8eed97d846b888b833a652399837cc8c4f9900b48d751972c0d4e

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a36df9f8ca728fb308a30cb7a1dbca642b5b91b297720f3cd02aa1c2b6f914c0
MD5 a7f414712550f8255ac156944b09518f
BLAKE2b-256 43b41e5e45e828503b4221b3a4a110115da365c573d630d14005a68fd1857702

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2118c904985c9c4f16fa523ae395e3efcbc69a4af613c01c89e379401f2d6380
MD5 0263ac4f658349637ff95982a8b9e9fc
BLAKE2b-256 c4b04f7ebeefaedb46055b596ebbe5d016339ac23a3abd9e08ecc0d5ff9c455d

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53d4a242ea955236de6b35c832cafcd6f19810c5c7003292eb929023152573ff
MD5 fa8ab33c71b4248aa6616d737b1f0bfa
BLAKE2b-256 1fcd25edfd95303698f25d7aafc0e0668a17396d637c2393c9bb1b4e054c6363

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c35f6c65a872388a1d6e1622cafb14f3579d8226956b5a8b3f135eed144ab3d
MD5 b3745a4d8a3a93341f0ca508b1615146
BLAKE2b-256 9ae32ec0b07ac2e2d0304a95f677ff8a5fba4ba0b33558c15668643442a97425

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fbff1ec94b9f727126045a8c0549c5af52cf4e8e03a27e829d43b6b4b88f00d
MD5 a312e08e0e3c960b12ae2f513066d5c2
BLAKE2b-256 02bd13f00444a2a5c3ee3ffb763d889b8be514e861dd86a009c9aa3eade5cc0d

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe98001cef577b7dc2f7a08ee42032e2dbeecb8fa1d7fbb3965f19dcfe9b6283
MD5 eb9b7facf8b4e04be3eaefe052728075
BLAKE2b-256 11cbf316392faa730cdbacb81470ae171f14405b6f3f86f557d6581ad0720355

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 904d538d88091f65fddbd4d8923e72ad3cd4646ac774d43436f3208f48bdc925
MD5 3333399f621d0e67480b957492a1b937
BLAKE2b-256 dd2244c1b98d7e1a1623dea57cad40eb522802d921f40d4c7e7d9ac9a50528b1

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pretty_mod-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 887.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 210b1dd9d085152d87a631b993b3b723b98c6f8b3cb5f957bce9dc0446e51a68
MD5 2624117b1de9dfb38b8e8fc6a41f1361
BLAKE2b-256 bbb619a803b7cb28d2a696a588bbc0937a875b35d85d1ed60b9a8db500b174f3

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 788f805c12bdb0ea0c21e425f1e5422b01027726d41e82bf58e163167064a62e
MD5 f17041be11deb5649bd541be3c68aad4
BLAKE2b-256 0142623814acfc8eebdcc2d7307f8fcec7ddd14785d84ac01a3fde168193beea

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62cf97c21a70a9ab5a8fd2d66c961f50b31e5a52c705dee0d18c9388e0aa9895
MD5 d50bb9466eab5bc6b9bd605981bfafb9
BLAKE2b-256 66f768338823b8315431a136562da10c6eb91b636e7646f472d23bc34e6bc7a5

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9f6e0e65404f9a4a865b9d0044763ac766abfdaf711320f178f694684a06530
MD5 20e59aaf741a00bacf8ba9ca8b78dd96
BLAKE2b-256 d20648d5f738f6d348d4ba63549508386bf1f589b45272b9fe4fcb8313eaac46

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b18c922259c60e6a8f65ba432d8432d5d28ef1659a8fe5d433a0b3998148a472
MD5 08a53502ce0d353cef1d4ad0d1df030a
BLAKE2b-256 28f968693522c56847ec04a85a34255e3ba4cff9a0f89d7d5520a03430279a76

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 420910388d35a5a9434b2f06f45bef960ad473cdce0aeb27d2e49e4e42a8c33f
MD5 ee0605e21aaeef1416724f607f3867cc
BLAKE2b-256 5604f4fd6320651dd331eefa4e58a6cdfe435f19b399be88aefe48517e945a86

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cf36140c77eba2d36ebae8e478320a8fd72a1b56757d450cd2e6a050a82448f
MD5 30a56c231ab9ff335d0ac09f4d8e9f70
BLAKE2b-256 0012e1420dc5cba9e38b036b15c6cb95510500e3f3b269ffa2a4767922914f07

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d3250d24362f0a2330eb703e8d48ca608f3df902542c27c573be32baf37c577
MD5 7e69001e5eb3999a07479fab6d9cd370
BLAKE2b-256 965c214024f3a94ca1a14f88fdadf6c82b8c23c7de3b49762cbc64afed76abb0

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97d310548a4f5ac55fc44d63a448a60fc80465df44d13da605c80a2c14578982
MD5 0f4fe6f3ca6b8ab54e932053d3b26a39
BLAKE2b-256 42ea77abb23a07ea3609bcb6a35a45b796666aa247696377fc1f50cd962a44a0

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af2808b2f4a1beea3ee79d1cddb197afe27aee2fdae0ba7b5ff42123ea309d5a
MD5 19ef3a3f9258bd93b26324f220506a8a
BLAKE2b-256 4ecaf840ab051932cb0bb6ea92d265438818cb3d868e6ad9cea4076094743af1

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9651b022210f048ff4c0f14d0a240e8d9ae55eb47cde072ec8eed1d665172ba7
MD5 1ce079a81829a2e9b42590f654fed01e
BLAKE2b-256 d10b205832efa891c485f761aef5792a6b8b4556aed013d2c71ffba61aadcaf5

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7208fd5509242e1272af41a8da634cf50ca79cbc15f98ba583c5c38ef9edd91b
MD5 ac27e90cc1c6dd39648bf67ae2636a1e
BLAKE2b-256 a988665df91c96afbf249894c846818f7b49e35ac2d9cf0990a601f81e82183b

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a5420077a3fb97abc6d946e5fbc83e573e5e3fdcc081ec698da79263ba98f51
MD5 d65ab9bda7eab671aad5f261241f7208
BLAKE2b-256 71b8d196dfe1e2b2edd407ecefd863c67327fb347fc522c0b121cb0c4f127fb4

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d723e18e3f4595ccdb06cefd4df7d70ab81addcc7f1c4b885b177ed3916e8da
MD5 dfd595ff9198d64077e366d11d8585db
BLAKE2b-256 07ece099f5c9db5fb72533aaf954ec72cfba4101c60c52a1019c3311e27a79d0

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pretty_mod-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 887.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5a1c30ff653b5b3683c2a07abe76a458ef92f3573d8ee19c2b35e424e8619875
MD5 6738e3440c8c7e5097f14242e66d11f6
BLAKE2b-256 6691c9389d0c10e0d8c83302cd9af10601bd38a4b7395e9d5c05e822e1ee5dda

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6bb32b8293f8580885417d882898fad0c12717d988fc58d5b03beeae468f225
MD5 7fa7edd0475012b16748408f5d03c34e
BLAKE2b-256 9184a0592237bff3c346105e2e8b7b101cbe2d7412a6e2422532572f3f1a45e4

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 527c5de3680a5ae693f939edff2ec3549e3e41f79cce0395a6fe62900e62036e
MD5 d138fe2ec309f566a6312f624569bf66
BLAKE2b-256 609c9cd5e4cba2be68369ca070d6d9543e7fd89897e65c56dc00cd0a16508046

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 692adb3cd9bb6a0dca939756340041f1168dc6606faa236fd395a3fbbef069bd
MD5 6f8d346c6b6ee66b61d5d38be5a9dadb
BLAKE2b-256 f3781cf5fdb94033978a78759ac3f6c9b4b7bdb1530abd7129c752ea69833b0a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 764c1e44d0e2a0a195f7f6a0617acab04618a41212e3201b89816f5472d0b93e
MD5 9b915a7595d43b9903e1c395e89ad5b2
BLAKE2b-256 1c3e1072e7b7c07377668b59b9d0763bb9d5d9227e6d846c9740038f29c23dd4

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f714b7aa34dc4dbdcf71bf604fc8bb94fe84208ab0d54214068c6b240548ffce
MD5 4d2e3bff3288cb74c4394ca6b50dd4ae
BLAKE2b-256 92abb0cf71262cfa59bad4e481460d1bec18e0b00bd8ba79aea153c1d8948edf

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ede32990f0b97f627df9ffa39d543867a1e7ee070e4ced6948d7efc4e28c6ba0
MD5 5d27ddbac2995c958fa42e23cc5a3e93
BLAKE2b-256 1a30d9cef57a6117cb1fbc61da48f2e766998d471e57efe3ac28343aa68a5406

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f2ed499fe3571ee2f46797e5fda8bae1c270c466ccef34d32392aa32ad47532
MD5 ad6384932f5e94f34b3febf46261630b
BLAKE2b-256 02127f40f8044668b91a71d28347ce7adf5d957bbbd27a37471ed88f83fc840e

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c1a4410c1465f139fc76b2dc349c3012fc4cc1f14437ac7ac631ae86490a77d
MD5 652b078096d7cf8f8ddf22175dc52ee7
BLAKE2b-256 2888f84fb5ed02b0ab420cf1d4d14872f8b1bd16a0b4231807384e411aa43f4f

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0af9ee0e4deea1d5252e65e0c0b8f6a18a0e53f5db4a4210aeff28948af95943
MD5 e06a2afbf0273debdda94ea3aa64095d
BLAKE2b-256 3571fac6e0a4b21a50279a595ca40355ef80d6d25f676270dbc92a2524221962

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aefabb0916e532998d141935d15893a0cbeee4ef543d3089d11f4f53af6b071a
MD5 1bf7fd0a84cda1d032e4e670a43531c8
BLAKE2b-256 c7ce9b124d7872ca2d1d07e9dd6867b3b76af0e879711b77d15903f332dea798

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b97fe2f5ea17830a61cd34180ba3cf9a924c0dadf8c859bca45304f28f3331e1
MD5 20b927423ed782c1ba306cdf8f568b15
BLAKE2b-256 bfb12a0b047c6d7c8f432001bc8cd888515ef0a0fad7b2090d3cef83af0df6bd

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58c81a4b5b17e636faefe87a8d7f840fca3486b9d998d297e3ef3da5fb34d551
MD5 a6878af1a1ddcea0e858d0ea1883503f
BLAKE2b-256 62e61f51d294d4db29e13fc2988179968b445d067985463da965b3b96e20f30a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0578f8a8ad33e6b9c79ad0aab1baf40d76ec9f4743174c482a54c4f7cf7f6fa5
MD5 6a3a35a078375ec5b9c51ba567e50814
BLAKE2b-256 e21a5e419426c6dc441cc7621c2c7b74fa867bc5e5b39f290547e691b6434d87

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pretty_mod-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 887.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7aebb3b7c1836b640ddb196a71e2924247f79dbba03c112b63cd7d287816f26a
MD5 40a17abee1b18d48fded34e982d364fb
BLAKE2b-256 df2969d15ab17992bc7ea90e9121501d8c81fb084c5308027f91006ab11c07d2

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30e51cf6ea42992372db101f79837fd795a0dbd7d4d2c470a78afc6d0c560fc4
MD5 9c1c20ca6915417dbcfc0cb3f446b5f8
BLAKE2b-256 bc6f6f6db14267642fbab9936c41f712af24e5c6d94d9b0dcb24212c9ed2e996

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17d1d049de93a7ead03e1b52cbbc513a32f5b93f789355b6558ade5cda963609
MD5 aeeac7a44d1d907afc68e8102f79fd82
BLAKE2b-256 698912482e298355cc64f9c1b6d1f65eb048f2b47cfc0ea61d4a54e54f8217ae

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 851a1ec9cbb0551d19c134982db5e1db9b64042eb7105110f5a35999134b770e
MD5 4255591a6ff4bcc2e0d7c6c2d4b907b7
BLAKE2b-256 26a7abea3d807dd3773e0d9ab942f2b769afffc279071f0427ed1e2be41a1ff1

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48b8a66c48b09c2a753b55d2130a4f72b74d3ef706c851c036014548a98a54da
MD5 dc573e25d79a231c44778bd6e7b10823
BLAKE2b-256 461106159d6b25392d625b793f9129df8613b3861e492eae8baec38480d81547

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63476f5915abd3b55b3b37fc1a98946da299924a8210e3e4b2aaae3e4165b816
MD5 3c12dc01784685f0c9419373a1ea098e
BLAKE2b-256 0fc2103cee4e1d9f53e0890e45ccf2d7ca0a102a55a868af5756d2269c4e91bc

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b1bd8f20c9c467a5fc09199b7097ebc973e4ce744da24f698e29a3bc1acf682
MD5 12e03e02d7d46be25211107719678548
BLAKE2b-256 cd020a2bac8cd968654efb0c13e4b7a3d8af245bd8bba2af06a58ca7d621eb24

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8ba1bd70def40d36bec968111a440d4ba3b07f11bb3a843fc2c3fd3b02c42e7
MD5 22fbc62e2f204e1d2d23f69bfa988aa2
BLAKE2b-256 156095c8223c37b304b5ce2e53933a31d482441b028b46173b91ccc66d731c5d

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23dafaa76c28e36ef87d2b98f08025bc4070bdec22a7ef8ebf7e376ec53b9362
MD5 3c4f361b4cb1cc540ec411ca9881b6aa
BLAKE2b-256 faef31a6e42a0b2476a302cf323cb7df13d2fe72c27fe20a606e19523c97eca2

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 666c8fc6dedcf7686735b28dab073fd4456c348e8a9c5ed0b0554450c37bf7a1
MD5 00aa875eb67f1b863ae57bc8ca56e4db
BLAKE2b-256 913e85f043c4ec972507984334819927c94b42a27989f26c91592bf0ba0bcaeb

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f529f494f2ebcfb54137a1a6f657db9e01ab513c3ef5cd2ffc07dde7988b440b
MD5 464b11783398cea6d17229a56fce438e
BLAKE2b-256 386de5282cc1033a94dd70da3425e3263b0de9ea65f8daee959b77da8a9042e4

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5c851958fcbcb0cc935cbe11a45734c3fd868b56b28cceee2048d599535a5517
MD5 dcf9b20cf785e9a3ee666928e2dee526
BLAKE2b-256 a5183a1ec55b34af9c6096bab82dc744a784dfb9a965f92005a8df36719818f2

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pretty_mod-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 888.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8fec4618c441d527ae3ed07977be770297cb83a9ad30bddad2fdae0e8f2b0009
MD5 28cf583f70e1351a595e2ebb2517dbe4
BLAKE2b-256 2d8800f2cc228cf8d06aa6b2972fec6e37fc9030828f62c867de5d6907fe214f

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d04cb8ca15523988d6b31743345afc1c978c72c087ad37514900fdde33d4504
MD5 2dbdbb0f2f822be0ef19753609bff5aa
BLAKE2b-256 0caba5479365d22d05d466da5e69da3e4d13fa24d0c1f908797854d87d98d206

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11c71299aa3a4fcbebf641b081dc5e4ff3d432fad52385ddd3061104c208caf8
MD5 633f682ece9b9fa6f0249b7d6c45664b
BLAKE2b-256 fdd619c3d3df0eba836cdb05668c01c46249d1837cfac1480b62b63feeb5a265

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ed8e07056c67cb86583c2a8ed56ba4482a42d53f55a7917b6ab4daeb0845c4c
MD5 ed52fdb2d5aa533a0742c49794656550
BLAKE2b-256 6f79075792e51c95237835176487ff8ec718416fe1af4e383b3500e2757b4a72

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd77047bfdd2029575bdb6079275a1d04c02dcccd188bde747336d754fe6f9ac
MD5 acf0d9fee9beddd01ad94fd899964bba
BLAKE2b-256 f0788a817bd5391bc42238146593c27b63584fc4503637eb6118926d72cb4b14

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8aa3a620fb7a29783a4629aaa5a19ea066c3c71705471f8e63d9ff25559dbb80
MD5 751a8d8c4588f9a5f7830ab9298c870d
BLAKE2b-256 95bef1d517e6c0c22d5a7e9b1abfe2c41ad58af8d73e18cad1432c966c2aa36c

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0f4b8e8758cb1cac8f11d4538c802b41d5198f17df32a26fa1e3e5170fdba73
MD5 e6f84786b04d37c1f7571d238d1117d9
BLAKE2b-256 1c700b0af95f1e410e7e5f882d82d5a8829261e5cb9b698c412094a399571907

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7465439b7860408f79687c51c5940d8ee2196652baa3adad45fee2f7fc6ae2e4
MD5 e1eca7eac343561c37b589149be7fa8f
BLAKE2b-256 bd189f9c2f55c6dd09bff06cd77e0696e54f1c91117c8ad3c8f409784d332ea1

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66de1029216847de9075b9ce40484735d686afab36e252506d681e98f75d8d52
MD5 22068e59d73db49c8cd7a7d2e89dcfc9
BLAKE2b-256 ab7fdf5deb95235807af7db935878e3c09ed1eb50801af8b3251aaa2e4abfcb9

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 865e97db572d3f6335dc750f4bb5296e7e57c0a0e7ffd1ee69974d3002a98591
MD5 9a5dde9c85daedaf062689c9dd91d760
BLAKE2b-256 d5faca3727e2b2e2673dc355f3b8b5dc84ea8eeddfbf8849a556d9fb3ea0d7e1

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0759356ecf50cfe7b267ccee2fb2b9f4fa42b6683aab0891f749146b15f73c4d
MD5 3b2f2d22b69f36eae2f0d62b2f03870f
BLAKE2b-256 ff83efa54fa1a615514a88edec5cfb3b6dc825ee7d31be29a7378f041e82af83

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page