Skip to main content

A module tree explorer for LLMs (and humans)

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 fastmcp:FastMCP
๐Ÿ“Ž FastMCP
โ”œโ”€โ”€ Parameters:
โ”œโ”€โ”€ name: str | None=None
โ”œโ”€โ”€ instructions: str | None=None
โ”œโ”€โ”€ auth: OAuthProvider | None=None
โ”œโ”€โ”€ lifespan: Callable[[FastMCP[LifespanResultT]], AbstractAsyncContextManager[LifespanResultT]] | None=None
โ”œโ”€โ”€ tags: set[str] | None=None
โ”œโ”€โ”€ dependencies: list[str] | None=None
โ”œโ”€โ”€ tool_serializer: Callable[[Any], str] | None=None
โ”œโ”€โ”€ cache_expiration_seconds: float | None=None
โ”œโ”€โ”€ on_duplicate_tools: DuplicateBehavior | None=None
โ”œโ”€โ”€ on_duplicate_resources: DuplicateBehavior | None=None
โ”œโ”€โ”€ on_duplicate_prompts: DuplicateBehavior | None=None
โ”œโ”€โ”€ resource_prefix_format: Literal['protocol', 'path'] | None=None
โ”œโ”€โ”€ mask_error_details: bool | None=None
โ”œโ”€โ”€ tools: list[Tool | Callable[..., Any]] | None=None
โ””โ”€โ”€ **settings: Any

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, class constructor, etc.)
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

# Go deeper into the tree with --depth
pretty-mod tree requests --depth 3

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

# Explore packages even without having them installed
pretty-mod tree django
pretty-mod tree flask --depth 1

# Use --quiet to suppress download messages when you don't have the package installed
pretty-mod tree requests --quiet

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.1.tar.gz (74.6 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

pretty_mod-0.1.1-cp313-cp313-win32.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86

pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pretty_mod-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pretty_mod-0.1.1-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

pretty_mod-0.1.1-cp312-cp312-win32.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86

pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pretty_mod-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pretty_mod-0.1.1-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

pretty_mod-0.1.1-cp311-cp311-win32.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86

pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pretty_mod-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pretty_mod-0.1.1-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

pretty_mod-0.1.1-cp310-cp310-win32.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86

pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.1.1-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9Windows x86-64

pretty_mod-0.1.1-cp39-cp39-win32.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86

pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pretty_mod-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

File details

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

File metadata

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

File hashes

Hashes for pretty_mod-0.1.1.tar.gz
Algorithm Hash digest
SHA256 af9d2952fefd93d73e3a82d523da5ade11ad65c91186a4740c3838da5b6032c3
MD5 76c322ba0b90d5006fac9ddef3507913
BLAKE2b-256 bf9c5115e1739b021f33b666e0fcc0aeb959db0333eb014a1ad32e3bdd9be868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbc5e8d5679a3224f06c3a01df84de53c23dae3fb3ff44070ec10446394be0d6
MD5 c6c690e003e644230d23d3a70b4a67ec
BLAKE2b-256 912990cfb848b38c74f711e83d3962236a611365e719e773a398602fe15943f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 792668db6362a79f31c55ea8a9cf59a0e1bb5361206807590d5ffb6ff426cb47
MD5 9780e557a3102b9116eda2d64c9b5716
BLAKE2b-256 a79c9ae6e12df5d0bb957e128e5e0c19914ca06f05a83cea98dfd8a2f9f7e354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d0797ad3a5eb91b1266c4663dc19c100c58cfff894bf58ea5686813d4c4ace5f
MD5 486d87e11bca7529beddb9d97e13769f
BLAKE2b-256 34793c4e8e0ee811191cc206ac59d469ef1d7d29d0f7e1dadd9c2f9bb8e78951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50d003a060bcbd21783e79530f0a0be6246b289c335c39427de4c18cf9e50e24
MD5 b394cbec1006124700f0fccac61fe8e0
BLAKE2b-256 e426bdc40f0891cd2b148c83fe652f8f112c70ceb951ed918feb2a59246e7ae8

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17eeab92c097f24f4c49fa726511c54e3786209bf446e0f17e66a55d3724c668
MD5 c4ad507252fd8f80b77f5a12770489dd
BLAKE2b-256 ff5fa12b1d522ce69af8a2cd270efced59bb9f427fe8dc09492e7a6233cc75d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f626e4d30d74f4909c39c618a5118f70349ac66f81bd9e5d4b60b61888546b11
MD5 5c6e2d42a99cb8a14cfb1395590da4e1
BLAKE2b-256 e121f8434868bbad2cf66ab6945170b411d64ad5f2a4e1f36567b5583b093b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53e828e47c8fd972dbb8d2a04a0428beb9c8fda17e5d2e4d11e9f70a0fccbbe2
MD5 49e194adc463ca4e16292eaa6b140643
BLAKE2b-256 006f5bd40d2f21354d4a91bea762398574357d9aa248ab0e65572d02ad8e8e9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab28ee5f4d75a282499e109836046807c0eabf5b8aee9679cf852612ac86602e
MD5 b2d7f444afc36b9358913e4804bb1044
BLAKE2b-256 d7bba59639ce076e48a0bcf5934f74a61b6a18ee8e5ad90c1a7cd2d567ae7d87

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7f27a84c8918fd70aa7eaea44626d9efb249bb6ad2890e636be757d6b5c14d7
MD5 2f4bb54afcb1c05d82c3336f26c5536c
BLAKE2b-256 e25793508c6944d09bbb4ad4bf6111a002de5c23561eaf918a30e7d5391e4cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b96d810f9e86a64e5ae8a8233d861b6eba35b3ef4d12c717445d28564caff5ae
MD5 a9ee810667ec5ed0f7ac284a0321f81e
BLAKE2b-256 0db222cb338de3ba991f4288d35d1427370c4b2009965f4cd7fd325a79de54a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0156d38bbf95cac795b5f7ad5f4e12ae15baea4b4a7ff11f28c5feced574f12
MD5 88e4fbf0bcd47285f8cd6b8eb9790e7d
BLAKE2b-256 a9d0690db19c7af18ba068f752129cfd8399c36f88b89d7c5f84327ba02ec0a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffda3340c3c30bbcdb25b68676b03808d21934d709760b0faa8868664acf0d03
MD5 26370562309c44aa280b3a328c000f3d
BLAKE2b-256 43a527ee525467352c8d67516cf5f866b1972a0270f0ded3556bc2e7f24f88d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28b4c0aec2ecc8976287dd812b378287f24853b5ea513a6065ad12cae49723f4
MD5 0227003e93baa788c1b1eb4a1b709f0b
BLAKE2b-256 d89c0b046cebc2cc357af5edc2ec9f40a265be22f7b4aa76766fc441be82f5c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf62ca478f91ca0277d96e64b2b52bfdd00ce5623432d844cbc2f8d1584c7090
MD5 c578f62d2dcadcc0b94c232c5ede7354
BLAKE2b-256 b7f75dfdee6e711765b7766bd18c84489b4ed7ed649db3b44f6c6220de1d6616

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10b93429273bc22cfa756a38b4c25572b3046f219af48cc7c39f4b1a18977c9c
MD5 9c132a7eeb1f68c4169f9c928c10de07
BLAKE2b-256 023c352d3cee722efa347ca02bdc8fb5eb77f73125acd6d2d7a4f81555f2d21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcdd9b373bf6ff69d6400f6e2299096047d7ff99921bf5dbdbb60939a5586b34
MD5 c58ec79f8bf2459e4f5f4082997551da
BLAKE2b-256 b3ddc7a4662c00479fac5f74b2c6ffce17b5ee72d651014bdd58346b101885cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf99d4350912c965f875958c7d8f7b06843349d43a0943a6ac5f864d41144173
MD5 e4129eab86c0e3457a688f0d078faa09
BLAKE2b-256 522b6f3159a442f7582ff8ab1fc89e0869de9905d7039cf05e5d15cb707e5a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d43b365e09b2aca8fc68986f8a97b1830aa11cba52b9627a95ed417fb9a20f25
MD5 66bd6eca55f1692d52e8c461e2f33dcb
BLAKE2b-256 cbb2414d47eda8aff0e24a4ae496b39204eae90a4f1a67d4df8dbc0a306c63bc

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 835ecf4292b4314fe60c3b54a1b3557aec7d263c49a8f4fc49c09d4460a22661
MD5 3e803f12038f1859c0145efcdc03ac02
BLAKE2b-256 34e519533680eaaf8005e17920d5912fc7309c5b7d6befbe87996aa59e65deb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da7c17d801fad7d95e37f9c444e98edb0bf5f982f217fe4dd6bd26fcc8dae76e
MD5 c2a61d47254a87710eedfdcf43500ab4
BLAKE2b-256 ac6fc2f37d9898b727216d626c1209d4d28ba16fb0059fdef17db00dfa380354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a396053f54ce285daffa98a529b83df08e1fa7fdea7a61f7b59c6f4ba47dc013
MD5 b80c55f4425f89d1b883af5b9c8c0c8b
BLAKE2b-256 5a939d5a0faa1ed375f3d9637038bc2fe91b6ffdcb125af1543b758b9c16d14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0bb6d3d67dbd7636b69d342b191ec4aaca374e81068127fd7f277134508af78
MD5 6d7b67f8e0ee897ba65168d9e73fe924
BLAKE2b-256 bbb465c1c52a175f10ec70a23d35b2550774188503983b7ba1cbc139079be034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7e34e8f6451a891092a5d303a6eb4829a5f6ccd389e5f981c77286dc9cbbada
MD5 87fc53ab2f0e1cfb24c6176222eddb4c
BLAKE2b-256 e2fe3fc4bc64bae93fb534ebb8c6ca20679a7cd359a627bc655effc619b19d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5fddcc438a00bd778279876d9e26e6f053ad2b62c59db09ec69f1b070295ec12
MD5 7d53483921dae59d6c49f3cfe72a4b91
BLAKE2b-256 976c0e42731f824487a73a4dfd690e70bd62fd938909e36e3b51c672db3fbcb9

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 056cd8fd1c89953878a54794d588f8c8ac5f464b1e1fce96f0acf1d7a1fffa61
MD5 8841d5ae115d05db9d1401f84531007b
BLAKE2b-256 cfe6cfdc0c7e0a120231b373f0b2501b106767b8343e5cb9629a2472b07b2ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 796bda127d9797454c0f588d0847612180b23626c28c528bf21e18d97b7e7b6c
MD5 7f52962d7ab71dad3ab275178e93e52c
BLAKE2b-256 41482e0449fbc347de4fefef7906558526d72cad4f93a94a8ed80eef6388238a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 636f4e762420ec7724e0707fc1eb914ad46fdc30c39d87cdfaf3ae74675aadce
MD5 a820c31d7e2bb5da74b7358573bf2388
BLAKE2b-256 25c47310315e9428187833d68934f6eca372269b1b55e24c9ae0bfad9f76f12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adedc20c72fa8e390b8d9328393bffe5593c0012a74828314883c80cf4b959f5
MD5 b4c5e1ec52bace08f5670515a493df19
BLAKE2b-256 e3e50c31c656731ac9779dff135d64b02d20e6ece3e0546dc901ddedf57329cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fbea41aaf6ac4b465bb3bc16fdbaf791374fb9fc7d1dd9cf41d714acfe42448
MD5 4ee8272bf324f5876f698cdbfdb6761f
BLAKE2b-256 7e443ec7979187027276cb541173d3e045309e59345da789feca17abb1252048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 311fc0a9253a2ff98113ef13ef52a7b191b9da949194876394ded6fd7db1e043
MD5 a8f4ee5bbe4bb8ca374a7e889ffc3627
BLAKE2b-256 8d61298ff14fcf2c375beafcb8dda991b3dcdff13ff7d018121c67699606e690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8700f16c073fe5646179537563a90c677fa1528973190a83a119f40900f4afc
MD5 96955c75ea0c29ad6398eff719c0e525
BLAKE2b-256 6d7c7f398126da6f58c3cd0b1314549fb3c84012b4d9d891db68df801879f033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dadb114f59841e497142bd4f1aff1e59c92ecbe3faa7a4a21921dd04e51b7a0d
MD5 29a43306ac8df885e3937de70085c7a7
BLAKE2b-256 418e6d6413d382f57d4b71bbe58d10fbc0309301a4e2db182c9d6d3665289223

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0214996dbe09c549f740e8808768f554bdc804cfdd8577e36416c57c50aeb64e
MD5 2bf0ddedcbfbd9d1ac2896935c25126f
BLAKE2b-256 39abdd24ab696c603a623d2b38399dae759d36656a76c44d00fd5b404c156fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d6f58da46b17860f0adf6c3fe4ebd2f0e028d6d498d981ce3fc97e0a92921a8
MD5 537de9efedc356331273d362f222a1c5
BLAKE2b-256 42b51ec9df338ad675e8b86f7759fdf8b639298082b5dbf8bcda65a93204d037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8b25ce6a4b6e38abfaea47b94e23330148056b553b9cda1c866447aae2b7413
MD5 a8bfc56504820025c253f4e309ed1811
BLAKE2b-256 2ceeb228cae9ab141eb2b6cf53264643af6eaedafb8274ae90167858242b4ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90f8e65ac91f3ef47b4bf55b80736672c21e1c799594e3ea04f60edd227c285e
MD5 0e9b7021e3feb9e1b098bda00757f58d
BLAKE2b-256 42595dd2a7a8db25c241b410453cc9c3df5f8af47b9cc94c21c0edfccddd4426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e73e5e2b34ad3c7eaea9329e33906a1320affaae65f91dac59e852f874a3a43c
MD5 f3e03660dd5b90434407de7eec253fe8
BLAKE2b-256 8d3cb8de284ec38e9fb62a7790de84fee82ba1a6b29eeb88c463d8f72ab4c582

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 936500ab1da59bca2e0ea707daf614e83b622fdc88305c27ce0a92bfe37f0367
MD5 8dba6a8ad02e40c55e0750a6b0d7ac5a
BLAKE2b-256 0d5289155b83af4f05150f26fe5386cc56849e9e0826fc485d5229b10e5c71d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e0462aebe183bab3f7407173146a1d3b679f95820c0ae4f3d930c216a237885
MD5 39f5292b094f882ff5454e7e692d2578
BLAKE2b-256 19e14ea90d3c3e44eb3d6f184010e9754e979a7291ce8b8f05731df1a2ac6520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f1d746976a4a9ed0f35957661c2e47f0aa02ead3e0d43bf21065084b1086ad0
MD5 fd908446005689a91d4ccb9addabc4ba
BLAKE2b-256 b5cda073784260b48d37f710c50facdea57b9ceb5d0832efa2dc4d52fca8e274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2393aa6f9b6293c31f869336d70f5a486632acbc219fd03094829273f8b88797
MD5 7cc81da3b72eb5838ff1d47296e29c97
BLAKE2b-256 edceed8f8d79feb4d2230a30827c4d3d29714d799f58911ee42944f966a68135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1fe40b5d78fde863d937bda5b8ba3bc394b16383f08f97662e2b0726331134a
MD5 17905e943466094415aafb26aef711e2
BLAKE2b-256 6699885b14549a9c7f99b5bd66d5742eebec5f6726961991d72466296c44f970

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12f7672b19f0a8eedc850ee385a255571fb62021ffd75b41590bcd3ad54186ab
MD5 8d16e1ec7e526133372402fa1851f306
BLAKE2b-256 1a98c11f4113208569473259ca6e41294cd53af5d5b69341afdad60761e73577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd26605fbc466e3d7fd91d70697a29b787eaec33aa5c9824161fd0fc953f6888
MD5 874e78f4eade7d12474b8cccef94c435
BLAKE2b-256 0788ec89bed43d32453f94e52734b291617303903cb88ae7b7d1468d608d0e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccd5e7706add32ea8f32459096d0ef00015106ae6c8133d8e123ac82a079a415
MD5 8c3fff8ddac3e20ea585b243318e3cc0
BLAKE2b-256 682248358ad85322fce2b0db7839ea631643b2760b203ee4c76b712a6e79b8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b7d0863b6d554797eb3cdd433add73406184a3b3cff7359c05e547043114419
MD5 a84c8b8cd6bb7f40c52b7f3798e37636
BLAKE2b-256 a3255484b2f15886eb8559ba3b8e5470c534cedac7d93b13294d5f2020eb9c44

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6a8830d844be4dfe85fcdba47b0105f2c48b45f3ce69768565dda43ef14a475
MD5 0403bdcb4ddb05ed754cf30777cd95f1
BLAKE2b-256 a44c7c85bdefac4a57dff0aee68b461fc11c5792b7464c06a1c7d3674b1afe32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8719b1b41f3aac5351cbf133cc286f9542548b404c468aafe50a7feb09bbddb
MD5 8d194fc3593b438c6d7c162882662fc0
BLAKE2b-256 7f9f621f0cd9b5a41c336523ca62143badb325d85e44845058220c2dbe3d7731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4d4bb43855b073820199c189d8cb875cd9c1ee08bae2fadf733f3fdabf42d72
MD5 f936f1762b0b8c7ced697a1817186033
BLAKE2b-256 cf1fb56f22b7032954f0701bbdb848c9afad6519aa57489684fc5eb77ebb23d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c68453338f4e99bcd94d5db0f9736daa7c8eaa776f4913228898b3e4981b7cf7
MD5 5ae24b881202733343a57101e6eee338
BLAKE2b-256 41a03ee20b0732e9fe87aeb475ffc2e23fc5a26baf5eadeaeecef0538afa2f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5a615290fa00a031a984e51b32f512ab6df35e56819440f4291b085a30e3a60
MD5 f9e6f8343d30485b5edc184f6d481eda
BLAKE2b-256 4ca9a416da2ced1cd0edf23fba024ec61ff5ce8b83ef053fc6bd5ba7146ad112

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3844fa380e0e091c8fb7c15951b9cde1b8fc36eae1608c97f0836128493eef87
MD5 573c4a31a229bb35d4a094679cb931b7
BLAKE2b-256 299088cff748d5110882d1213c6881513a17cece779556bc24805fdc5775ef1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95e17bbc1b6fea26537754fe2a12aa74c2ae6a74cba236c357263fffecdcf88a
MD5 4334d66dd00eaf8951b12630e5743509
BLAKE2b-256 564698bdcdc6e6d6759fcb5c3eb05c4440b69c1aba580d4873700448a74070b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11a319f93f9d27297f7e3908bc244f0ddd3d750a98ba8b0f004fef1406885bdc
MD5 7b0282ee1d46fb45c6f9c2b86c7f729b
BLAKE2b-256 b0e21a3c9aa3a2558e3361554be71b67a5033419269e9d00dc6440098cd15b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4af1ce88fcba8485443b6ee7d8fa9bb148f99beb72c82216a00b5ce9b37d5826
MD5 cd8d69927e9c45dc2bd5965578e8cfde
BLAKE2b-256 d0b4c13d08f69ea594e2fc938a080fed04c90de8dce683d8a9204a853f150e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e651fae782cc7716620a6ed4a828fc709e7bed201c8df20ef19fd18abe58889
MD5 96e1025c0cf13e2873479d8365fbe387
BLAKE2b-256 24d91a4fc36346c598e5d954e5779fdd831eeacc011e02ae15de9e38ba1c64bc

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f94e9964fe5e8b74d6b298427a08108d363286bf0533f56aa0c8e6f1218155a0
MD5 147728b12ede75b1bd715b71967c0870
BLAKE2b-256 7306489f46c92ff1bce8abdf4f1a74511b3df9ca06cdc3d19103d9c92e14e576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 399740fc2a5a9450df9a8c9290c7abbcd7417fa2f7fdde50fea382bf0a4813e2
MD5 c50490b42b780ae5bb1c5bc34258bd24
BLAKE2b-256 67b63e8d870e8e81f4cf8de4b37f2012ab9a325faafb7084597b80817d4d4ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 528eabf006212c9cc13810a5a4e99acc38b21793db80782de59e834b88416e8a
MD5 32aac0ac2c4e791cf6371abca3a94085
BLAKE2b-256 1a7f310a51d3e026390a8427909feb902119b28052a5521e9fd4b1f674a87633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f62a322c81317ae01eecc2d50cc5862c5c07103d3b6ac260fc35169cdebf43ec
MD5 78c75c9d3d518a0a38fe7bbbe46b0747
BLAKE2b-256 24d2bebf3848073c3d876fe1e41c884b3ab8063b5e0773fa43a5146ae60acaf6

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26c049960779e664d82eb70f4ae25ed9d6bfc23fcb0a6353a898531fe35a9098
MD5 28c4a049dc76ad7d2dbf27e46b759b21
BLAKE2b-256 a700d49c11da79762698c7051a2b6218225b94e2381464ad69c6311f787f2c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0530f64b2503a75567c19bcdcf4c61715b70711fdabe66f00cdfe981ddc86eb4
MD5 dde3e176be3b6c41b4c9c0490b7b9e43
BLAKE2b-256 b619c2c8a69bc343f8854bbd53a914e8af44ee8961e4c8f31e24f031960749bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1caa79e0949373e351497663e08df258be30ae36148344a18b1ef62f997077bf
MD5 7c9f4468edce7ce3cd69f4dae17260ae
BLAKE2b-256 f127ce387db4a132b97e633ce9b8e3b94e52544723852b02ec12f131561bf774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0099e47262487efca3aaabf44f55c33484f47e981a06db25f97aa4c77c15ff2e
MD5 e90d43b0c15781b305e6a0b103aea133
BLAKE2b-256 1c2d0d97268c811274e0e4a64a515d54809165c14c7c947766814407d04c3776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45694ff54274858c533b48ff84a7a5aec75b09292a33bdfa60582926dfde35ba
MD5 ffba83233b885fb75217e9bd22d37044
BLAKE2b-256 3f48ced23906ec70c5a262bc250d62813b80729312cd0d8413c09dbd5e21469c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 662f671d2888103006b648af942a534346ab1e4783b1f398ac3b48945ee34542
MD5 18b771cb52892133d3f640a0240ccee8
BLAKE2b-256 544b02b3925d674b49374c979f5f4e37d98fb16532f4925cc87b8ac1e554222f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9155fbb05d301b09d1e52ccc4b9d80b1a76f9df0b29b7d66e13a9c276d0b502
MD5 56a3da27c19f34420dd4fca4e0cd77b9
BLAKE2b-256 2bd40d99ca0f9a2c14d3db34f8d6308821e8e758cab9440d20c3413a6a003b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 739f145d950a95d4f46143c8722d43df21260133c9f3b1a98eb9eaecb9af90ee
MD5 361a818fa3d2b105f8d5cb8cda0d36df
BLAKE2b-256 b7455c1a15c9629916ee5ac3eecef9411b0c850f255462f8687975345c3d9141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 960278aea374c87e1b9dbb1d95fb070c5a1723c131d0eec00bbf64aeab1cb517
MD5 c2f26765c8c10fe9dc260e00c4a37009
BLAKE2b-256 2c28da8ac4de8f7169467a005a8bcbe9f3303a6e060dc72b161e13f7163eef9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34f1337bc40c1d5936ff2147ea9ab60f2b08a238e586582006b5cb81019940c7
MD5 01ba045e8e17989ad636b2b90b198a99
BLAKE2b-256 d5205a20c1ea8f6fe02151f59e6e9dfbe11fea33fdbd8c59aa8e360d18ead23c

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7e7d07f75c905b72638e756000c2513dc8ddd7c23c534033c5bd80951c7de5c
MD5 e493b590ef6dd48a4f5150901939e764
BLAKE2b-256 571261212b166bb1268e5b74d9caf0b7bd1a6ff0cb874d57587f9b5acc4a2217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a00291ef4b8b5fdd29f2b95b8af84d44adf2c0592a1f473950d64b514037a4a
MD5 4a41522e05820f978b1f0321305721dc
BLAKE2b-256 5728d14874367b99417a037dedf9d234ba81ce0fd33a88b45a931ab35e4667a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49c0ed6b357700438494e620e86072f41591871d4731c7ed9d7df46ecf6170b6
MD5 a23455d0aa0301c1c09f861b3438d7fc
BLAKE2b-256 d35aa4419a341279daea9d89fa2a99366a2a4f66161b9a10b9a3ac095065ab3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 956583300878ee1fe0994583ee5d2a81328a418f61f304d581f2d58a7d8e344d
MD5 20156bef3b55ceb8e13885046134187c
BLAKE2b-256 d72624f24b2beaafcd83f343d0f8cda7f1f3337f35ba73125352b85be5697291

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba1de582c0ce9f8e430a59fbb91c8709d402b4adea5910f0b693a474b496c0a3
MD5 30bc2cc98508d24551ab1277f55cbd33
BLAKE2b-256 fb6fa2fe148559b3b2bdc0966f95398e8b462468208f24ff6382461712709873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff492b9c2230f3202dddd6621b8367827c6ebee175270b5ae353657d80c65fe4
MD5 8ee2c87a40a2f80a74a949a75dd47d6d
BLAKE2b-256 d20a1a3337ea98e0ca3b19f52c35e17c5fcdd39a97e5e0d3099ecce7710a18be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa2dfca8dc91e919b101f161734d905b20b9e037775c5ed4b6f9024b0db839b3
MD5 740d80cc260540c736a2ba8c7de5720e
BLAKE2b-256 121a6e230c4c6431b8c41e49885ab474846c1813cb890d80354320ac36d3add0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43dcd592dca5c98399b199186548460e29be37d7b39e26041807b5efacbd0ad5
MD5 d2ff6b8af19341261890846ed085f6b7
BLAKE2b-256 aed7583ceb6891065d66be137ae9da49c251f22952b5a4775bca3a8eae20050a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78b1d6262029bb66ca29d002772c784baf329c1f207bda6cc421ab1acd2510a1
MD5 904abed65fb8e9f3847c479c77841244
BLAKE2b-256 d947fb0400f26f3516cb0e100b17785383a68716887c0888e874de7222c3486f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3531b3524ddac27bd26498c56884aebf71907ba01854dbb84ee38e831efa1356
MD5 72718ffdd98d6764fa51519630a285b0
BLAKE2b-256 890c0596470adeec869a7309f7b43d2081c3622cac33a2c3cc110709fc742d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8c2d8d5c49ef0d61ecc1d45eef9d0b5ec90e8b5eeb13a92c8f0957fa6fe8993
MD5 3687dc2bb0de89a1fa789f8b4e55d515
BLAKE2b-256 f9a0a29f8f12122339e8a8a686b0e041be9d6d1f46bd91b0c3153451ce28f46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 856398b8926815d7bccd79d3cb621c67e12c0164336abfe655e5e76658689a3c
MD5 f2aeb98cd0056d1a6ee9955ca4ca4263
BLAKE2b-256 e74c32f9887d71a174983901a60d618bbd81ecf3bc50fd371d8eefbface65e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea229e76ff916a2a074f4e593f82ea2be116acf3d1949f789727cf6d8459a417
MD5 10a063721fdf161e1018cb03265f920e
BLAKE2b-256 30156ad83a20cbf2a368a9b8b3763eea6912e4958e7750ce42fd929e5c977858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 033e393db070bd20da1cf202c94bb73ba53ad9f2dd1a9b66ba942c745d0cd031
MD5 1648c23785e9463025574e16f4e76e71
BLAKE2b-256 9ebf2bfe424e76952c9e092d412b55d52553b202993d048e6c4567b9d8182928

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 337ce1bf883bcfe6f5f5136377bab85ef58baff5f4d8d6959602acb609a75099
MD5 c6dd8564d3d4e240ef9ce86345fac663
BLAKE2b-256 256177f1fea0a7ebc2675ac1854e9449bfd46a811ee996ae23658cb79e0cb40a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d67de848c73f0a7237993cbb64ae2febc18f64c30159b2903a671e152477253
MD5 2acb45a7e851a5a2f6b694d8f07dcd6a
BLAKE2b-256 34e56798896a6c6393a273c4804ba3106dc89dc6e4d3e36c4689087227ecc9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19dfca2c73ca374d2b10de4d8a1f74840bf9f7f031285f4602d3023d5894c88a
MD5 1339c069e7bf48891391310cc8a5dd12
BLAKE2b-256 d4c38eee3abc535b9ed0009c31d360df8846d9a338e41952f8477bd6f68c7c4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 945e4ce99486b9c6cb19d1740d753cbc0b788de0edd2d3ba76cf1a3d39bd337e
MD5 776c266d25fd32874704703b3c956c1a
BLAKE2b-256 bee30b51278ee74c6e1a10b2b6e482f3032940c92148a2ecc16cc75a67ee1f6a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11893995f36362c1e5a325bd5c20685a281293b48d3587dc6d74b8fc600fa0f6
MD5 1ca3785423f0a09798192aee83036b85
BLAKE2b-256 cdd351e1a0b42d697bfc8d62300072e63fb50cfd4db8dc3f2c163d7b706c2440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59bd2d4eaa3a0cf9b1a25980ed940fa36aa7777436e22a604396b49e28b6e3cb
MD5 ac853cce84d5bff2da3e122c0f536a92
BLAKE2b-256 bf37f012a2b75bc0442aedf4d9b1ab5325a287cf05a716ec5acb475295413b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a50205e114182ed3682acc77e8dab969a44d1d98ccbac69b53398921ceb682c
MD5 aab6e3219acce8c272dda7f6b0987ac9
BLAKE2b-256 694fd03b73e3111ec0e2a4a861a97ced691690fa8b3524321fdb417f60ea9882

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4806bb9bdbcb67f352640b883ac8d4be1e47ab33f6b5ef3a8167d3afc10b9ee8
MD5 da1f691c033aed979f011274b011f0d7
BLAKE2b-256 2dfd3ff6626cf0f7cbfeab476c2a8d6a49ba5745c38eea4381c47c0071a6fffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18d05f5c9c6e21824e3ba4a311e5271f9171fa7dfc9c06ec9280611d145ed740
MD5 696f31d7705a88af73a2dd56e3af3a4e
BLAKE2b-256 14cf510ed7c142f1241260849f1eda6fe1e36c93c30d7d8c54ea407198bdc8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3a15c332c2feca6736981282703e2d88bba2b93f70a38228371a22be2973e75
MD5 5a876b5792eb57f55272f702709810c2
BLAKE2b-256 84172ab8db0a6512fd49102aa861df2b6de82b997e4a45c55ea147f2c586d9d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 95c4c90d6f85080d7426f6e62791af28cb2191bfe18bd6ec5feb8b56e54dd74d
MD5 bf744bcf7d28c52e8afc4641f18dc14f
BLAKE2b-256 4bb96880ff3dc9f926558a622f1a28ad09d43f4e9553f3c3b66d64629c8d27e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d236b890fa8a0646a18dc35e5ce4247f36fdad8fbbb0a617fd896ffa72c8ec4e
MD5 401371779a0a378341005dd7e7e88b33
BLAKE2b-256 93b304560b1e38f1e99c17e5ca32dd85bb39c8540e101266a54d7d5e0209192a

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e3b2285700eb143cc43d0eea07220e0742865e35f0b24b2441ea8501282d96d
MD5 8f10db03266f8e2014547f03ae8fe84e
BLAKE2b-256 35f8bba91c6b7cd7936b213c064af958551945ef72eb8f6b7679a121d4098798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2de729d35a9aab19c76ded570e803da5468f03c5e7092b6ccc2cd0f5b8f84ebc
MD5 cff176b3e6e93248687626657d63b0a9
BLAKE2b-256 095b66e4cf5e36405848d1e620836f49f3747756ab09c88948fa368c4f4ffb83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18bb6b170d0bced350f067dc4a3c65b9c29273fab6069276c6cfd159b1eb7418
MD5 4d04d24a961eb08770f5c7ae9f11e308
BLAKE2b-256 61ea7fed08a77ba80d1bfbc164c5a0a2b1f13ba37daea277a718f08726373854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e738de381dfa5be782557ba1b3bc38b89e07b37ee46019f2a1782ce85487e316
MD5 8b87df00b603e5ae3799f61571a2f22a
BLAKE2b-256 59942e35676e2e1fb26e89a9b6a8f5659e56d51913665acfc5333a8e23366b1d

See more details on using hashes here.

File details

Details for the file pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a9e84d7b9462861aaf24f0057437d2028e34b2a9cf773709eace36e6203a280
MD5 d837b254c8cc7b6b8b159c0db7d6f196
BLAKE2b-256 80be0b3d6de0c4c6004fb010665ef623384e2e1c519059822f1d76735a3c3676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a23cce49f74a0aced569454152f312cee92afacc638fc6fd04f21077c0db5f8
MD5 7f11b7e9f3081c64c38801b520c4c5a9
BLAKE2b-256 26e014c3c01ae3f6bc73930798bd54593bf50f3a0509d41da722348d5662512a

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