Skip to main content

A python module tree explorer for LLMs (and humans)

Project description

pretty-mod

a python module tree explorer for LLMs (and humans)

[!NOTE]

  • 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.
  • Starting from v0.2.0, output includes colors by default. Use PRETTY_MOD_NO_COLOR=1 to disable.
# Explore module structure
ยป 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

# Inspect function signatures (even if the package is not installed)
ยป uvx pretty-mod sig fastmcp:FastMCP --quiet
๐Ÿ“Ž FastMCP
โ”œโ”€โ”€  Parameters:
โ”œโ”€โ”€  self
โ”œโ”€โ”€  name: str | None=None
โ”œโ”€โ”€  instructions: str | None=None
โ”œโ”€โ”€  auth: OAuthProvider | None=None
โ”œโ”€โ”€  lifespan: Callable[[FastMCP[LifespanResultT]], AbstractAsyncContextManager[LifespanResultT]] | 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
โ”œโ”€โ”€  dependencies: list[str] | None=None
โ”œโ”€โ”€  include_tags: set[str] | None=None
โ”œโ”€โ”€  exclude_tags: set[str] | None=None
โ”œโ”€โ”€  log_level: str | None=None
โ”œโ”€โ”€  debug: bool | None=None
โ”œโ”€โ”€  host: str | None=None
โ”œโ”€โ”€  port: int | None=None
โ”œโ”€โ”€  sse_path: str | None=None
โ”œโ”€โ”€  message_path: str | None=None
โ”œโ”€โ”€  streamable_http_path: str | None=None
โ”œโ”€โ”€  json_response: bool | None=None
โ””โ”€โ”€  stateless_http: bool | None=None

installation

uv add pretty-mod

cli

pretty-mod includes a command-line interface for shell-based exploration:

[!IMPORTANT] all commands below can be run ephemerally with uvx, e.g. uvx pretty-mod tree json

# 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

# Get JSON output for programmatic use
pretty-mod tree json -o json | jq '.tree.submodules | keys'
pretty-mod sig json:dumps -o json | jq '.parameters'
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
pretty-mod tree requests --quiet

# Version specifiers - explore specific versions
pretty-mod tree toml@0.10.2
pretty-mod sig toml@0.10.2:loads

# Submodules with version specifiers (correct syntax)
pretty-mod tree prefect.server@2.10.0  # โœ… Works
pretty-mod tree prefect@2.10.0.server  # โŒ Invalid - version must come last

# Package name differs from module name
pretty-mod tree pydocket::docket       # PyPI package 'pydocket' contains module 'docket'
pretty-mod tree pillow::PIL            # PyPI package 'pillow' contains module 'PIL'
pretty-mod tree pillow::PIL@10.0.0    # Specific version of pillow
pretty-mod sig pillow::PIL.Image:open  # Works with signatures too

python sdk

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

customization

pretty-mod supports extensive customization through environment variables:

display characters

# Use ASCII-only mode for terminals without Unicode support
PRETTY_MOD_ASCII=1 pretty-mod tree json

# Customize individual icons
PRETTY_MOD_MODULE_ICON="[M]" pretty-mod tree json
PRETTY_MOD_FUNCTION_ICON="fn" pretty-mod tree json
PRETTY_MOD_CLASS_ICON="cls" pretty-mod tree json

colors

pretty-mod uses an earth-tone color scheme by default:

# Disable colors entirely
PRETTY_MOD_NO_COLOR=1 pretty-mod tree json
# or use the standard NO_COLOR environment variable
NO_COLOR=1 pretty-mod tree json

# Override specific colors with hex values
PRETTY_MOD_MODULE_COLOR="#FF6B6B" pretty-mod tree json
PRETTY_MOD_FUNCTION_COLOR="#4ECDC4" pretty-mod tree json

available color environment variables:

  • PRETTY_MOD_MODULE_COLOR - Modules/packages (default: #8B7355)
  • PRETTY_MOD_FUNCTION_COLOR - Functions (default: #6B8E23)
  • PRETTY_MOD_CLASS_COLOR - Classes (default: #4682B4)
  • PRETTY_MOD_CONSTANT_COLOR - Constants (default: #BC8F8F)
  • PRETTY_MOD_EXPORTS_COLOR - all exports (default: #9370DB)
  • PRETTY_MOD_SIGNATURE_COLOR - Signatures (default: #5F9EA0)
  • PRETTY_MOD_TREE_COLOR - Tree structure lines (default: #696969)
  • PRETTY_MOD_PARAM_COLOR - Parameter names (default: #708090)
  • PRETTY_MOD_TYPE_COLOR - Type annotations (default: #778899)
  • PRETTY_MOD_DEFAULT_COLOR - Default values (default: #8FBC8F)
  • PRETTY_MOD_WARNING_COLOR - Warning messages (default: #DAA520)

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.2.3.tar.gz (99.8 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.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-cp313-cp313t-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pretty_mod-0.2.3-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.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pretty_mod-0.2.3-cp313-cp313-win32.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86

pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-cp313-cp313-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pretty_mod-0.2.3-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.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pretty_mod-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pretty_mod-0.2.3-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pretty_mod-0.2.3-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-cp312-cp312-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pretty_mod-0.2.3-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.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pretty_mod-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pretty_mod-0.2.3-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

pretty_mod-0.2.3-cp311-cp311-win32.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86

pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-cp311-cp311-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pretty_mod-0.2.3-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.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pretty_mod-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pretty_mod-0.2.3-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

pretty_mod-0.2.3-cp310-cp310-win32.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86

pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-cp310-cp310-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pretty_mod-0.2.3-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.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.3-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

pretty_mod-0.2.3-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86

pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pretty_mod-0.2.3-cp39-cp39-manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pretty_mod-0.2.3-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.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

File details

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

File metadata

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

File hashes

Hashes for pretty_mod-0.2.3.tar.gz
Algorithm Hash digest
SHA256 c7157c72868331d529be32d90ada381187c8bfd493a319b2ea22cfcc51522a41
MD5 1884497eb285a160636d8ccef23bfa43
BLAKE2b-256 cbf5b88906d5f7b67042074015b50ec5ca83090f279506be51f4c17e9e770d08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcacc09daea0888782756c26ecf52f6c2d9689d9e26377987cc8ba1dfd7696b8
MD5 42819e37445c582343d9ca19506ce67d
BLAKE2b-256 d0ee0fb5481f02d70036bc6f6c644f60a01368a5a00f5bbee406fc0ef554d31b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7baf8bf8eb8f83fc3a2927049c58569a56d1f0261c1c649acdb75ec86a2e8eff
MD5 35e2d1a163f2c5fbdbf8661caa8de957
BLAKE2b-256 0ae7fbfa2b2abc8565d183cf309e39e09045ececf614498d00a8479c7a58417e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02b655b06ec1792ee7e47de50affbf6884f0180124986a4e27606c3f683507f5
MD5 fba190da4ca6879cf4b391562ea4d804
BLAKE2b-256 2ee03a51204a0d933ef147c23ca6263b7ceaee1af1022ce69b82dbfcea2b3d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c3fcccd0e0f6b04adca77402a41f9e1ff4289a9b610e882f91d2e7db456f607
MD5 dc20d63ef99b0e3207594bd2dd8f3038
BLAKE2b-256 64a707bacfba8b1a14d12cd02248cc36b39c463b8fa4ef1193009c6724838fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e46ad3cd8943a18af655ba67cd59da3b3526bdfc01ca21e2c99d1f2adce924ef
MD5 c40334e96886f759678c93ce7fa681c0
BLAKE2b-256 f1ab8fc8c1c5438add167ba51f5a69a4d2140eb5e8371c8fb35af366191d8879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 611a9ee6b416cee960bce10dbf194f3c726d2ec947df5d75b37bd61b5aff23a0
MD5 a2e1656676f5f02aee3a73e0db324a53
BLAKE2b-256 4ff1edc33b2e672de9ec45e1631b90b717f3fe3af6ba344d4ab4ea12f76e75af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ffa528cb37d607af76552be121b3b3f2067b4fa32de80bc5edc6293b7b16660
MD5 8c7694328c31f721476b128ef938b02f
BLAKE2b-256 737de9e921853a9fae142381e5aed1742773bd01a388ff5cea56f7ec20dd8d1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac0eb8f32e496fd8324b7c1d89718e4790b1e65e23f422836ad45cb7eb2aaca1
MD5 c4fee8cd1575d30e069a9d48e9f34594
BLAKE2b-256 5173d721b517033ed278dda2f1321b935929e90c50a6d99c435af604db30c508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b672a1963cebd333591ef48ed57e92a6e5e05ad816ffc841fe6fedeb6e2c0e4
MD5 4507a9aee29379e496c2d9432015d377
BLAKE2b-256 c898cbbe3bc425eada1098569d00546034f7f777c60e75313be2c890c387925e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09e66f9531190053effd5a36a6950a4b5fd520e3aa1be37fa34b410b380b4bb5
MD5 ecbbdcf75fe6b1a7a8fb82bcab6af559
BLAKE2b-256 7095a07703e44ff279a6e16187dd2a3feaa2f25d99ec505773ab2beb872f5cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1292c7c23699f7a855cb679935ac7f94c5079a11799f7f9290fcad3189048b2
MD5 316e5fdf501a47a954571e3c74c13d11
BLAKE2b-256 cfd7a1a16a4d009cec4466e8db33afb81b697ba44e4f8b470b1e914e93bd6b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 929d53e502f55ea9dac7077a8fde0181b77339d39beb1509e266495e9463116c
MD5 73c868963f045323ad17a8272e1d705c
BLAKE2b-256 05208a6fea685e7f9e094c1626b8c57633040a4ce0f4298f8443494a8c3ea238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2128ee5bd1849cfc3017bd1a95a3b9424baa1d5ef1b318cdbf3d9d86c939264d
MD5 bf7d6c0dc073d840da8dd9ce76adc232
BLAKE2b-256 60bdcfdb78a3b697345e9debe76c540f7b28d56291449bd914072bb79549dcd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0b4d426e541544c8d807d90957b5f487ed815bac42089e0e7c6cf4e0f0acff1
MD5 adadfade14d0734a798b03db07c1280c
BLAKE2b-256 8b3dd43202aff176ed30873ca98024c551bbb680a107dcdc7c05c1dc800732dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aaf16115e90907c289b98e8572896630b974971a52d59b5b3d199fdf959636a6
MD5 c59f0cd4d532b865511e85563ea13333
BLAKE2b-256 f35cd6680a7ae032fc1aa9d1d8af2021c764d03acd659df04e25bc2f2b58839f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcf325864f9e740114bda81d7bb5843c37588f84337c7a50a66e4f37d91a7e17
MD5 42637c2a6de8a1d0f20e48f46ea0b7d6
BLAKE2b-256 e97d1affbc4d80eae298b5675e4b99362cb575ab2ecf617cad50bcf026e62531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34e0940007405012f2cb86192d2fa6547ce88b45b597acd9f087c6d741e5c75f
MD5 1b9f1fded475afce875a4d4e10320991
BLAKE2b-256 329c1dace0863c82bb9fee9d004089a7a17d57fb1605103b3dd07227ece2ce19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6949f5de2a8447305e6a27a2e303ec753e5467cb2460cb306ad2e4697582420b
MD5 c5faff0542b540268c7d44755611924a
BLAKE2b-256 72d30f153184db6fa737898faddcc37555939cef6c665f1b9200d07c6b6c0055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d359aee030873747c15c48cd28d653c98840e1f89da75ac75b2d49cc76cda105
MD5 9cbbe5b8747290bf5d8fc0cbe97c3987
BLAKE2b-256 24308bc38175d656140df6548d974fe560c3a02055f29b39d43926c33ea87d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63e2a6aa918a982f18e5d6d421d4fa5c473f1a80a348559b02704d2b87026a0d
MD5 71c49b0cc03b065d08e7c4537373b1fb
BLAKE2b-256 e94350b76f9d7f0429f4335621baf1047f46155c4761db00e109cfb5ee304922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 126006e02ed15e0ecad0e638bf2ba250e0df02a7ba25789939d453b87d0da5d5
MD5 7884250e7d159b2217f7f24db82b65fd
BLAKE2b-256 878a3920dd7bc97f7cfa806be2963733bcd46e546077d7985403720c305fccf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79208571028d8118084f0c7aa4590010f0d9ce6b20295839b43353bad50de6ab
MD5 1e43e4906343a8d704f56a2c29fb090e
BLAKE2b-256 7707d4356cd7f8ca92940479abb3c89a60b490cbe301292b3f9a92d7daf3cbad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa4f64b12dae90269c7405d32e58eb6b7b66c3f9ab398fd95f62fb28bcde06ad
MD5 bc005ab005673d4a7d1c7fa7732f2b46
BLAKE2b-256 392d53082b406f97cc2f6a0238df18caaf3916be0c06abedb41d680376185941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14d3824848954c79134a41d8f31d97a0b608a025932a6e837ddc0604b060d0dc
MD5 5d13ca6ae4afce73f96f8bde2f11a488
BLAKE2b-256 c40fd4a66c4695e113cf4bf21affdb51670ee906c29a8d9611c27688dcef1c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da86767d143012eb95df9380e0234568f0b47515a5d8406c36181fa8c8932193
MD5 fa72f0513f76eb2725f41f35fa70c01e
BLAKE2b-256 773292133577637eb1ba4a96de655675e1e6fbc6c0a9eaf38ad7f6e251d74bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4928824c8d18867dffb62a94fea2689c7049620c3ba6ced9768b742f9a4fb381
MD5 7640c7fd18a62c0a87e90bd6a1e1b1ea
BLAKE2b-256 d16cdabe85f8df6f1f1655322a0e5cde7ec44c393a7e003e18b6c14c29420bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 146bec27a56eee395a393f14b3fedf5447260f1d21641adc2196fb652b6b5685
MD5 b5d1076c065c3f6239d2612296dd4f3a
BLAKE2b-256 4a00c2d9bf3cf9b412e078b0e4d42b55ff8524ca69adffabf615ff2d1fa30a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06ab005527c9f8c4861b4fb085f2aa833e06b0bc21c5a50b6cc5808a33811164
MD5 e596f2be9e87a6d935bb84a1947938f8
BLAKE2b-256 986ff57c391f5730e20f244a0633181bd105f203791081278533afb4fd4dd989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c70f4f52fde629b545df4f610c7c2b9da34e90e1a81fc935a39e705ffa69922c
MD5 fd49b7f4f588529d61d3b2b4bbddf7ea
BLAKE2b-256 b142a915e480a40f11192c495ee23144dac8ffe43df554af5e2573315a57dd4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43209b72517dd3afbc49e67c0b6202e65fd9c00c711f0c09ea6b7903d7591a3d
MD5 ece86ba5c44508d6fbbacebce2392330
BLAKE2b-256 5a4c722f01c93505af3b58bdc55cf9f145a784a0a1fc456880e67cce5615089b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3b3a7359453184357a8c0fa40aa2a9e7cd2f7b9dacb34de3a5f4812fea7feb3
MD5 71f32c142ca9edfaa4d192c59611ea67
BLAKE2b-256 2d4ab6898c90a4e2ffaf9abf464bc012d1d5fef70f9852cd7079f504d4332f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67ff1079b02b1e89cc9858f2393e44d67869e06e412dfdaae8a25258b73dffe6
MD5 5948f05736b16e69a1165194d5db0c15
BLAKE2b-256 41d7659df2a4376b3f82c9de64ff5205d05cc84756df7aae6938d6de469995ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af2a3bdcdf51615c4e62d06dc785ed01977902f8399ad891049b4463f04ca13e
MD5 0013fea196281cc2048c509bd200e9c6
BLAKE2b-256 5e2e5d8caa3662d743027a400fd1887e0ab201009d0720f7c0afecffedc93e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43e1ff50d3a27117a5636ed92bce49bce160681a334e654e29f47874e65718c5
MD5 feff2b3f45fed78f3cfb500ec3884f1a
BLAKE2b-256 beae5fe207a8ca600af8cca6fe8ad7655e1d43ac258a6c4317ea460d80d7a85e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc01f1b790a6b6a0c151509403e8ecacddceafc6aea677b22c18bf959c1b064e
MD5 337821bddab87aaccda28655a11414a2
BLAKE2b-256 87c0e56d3a3bf7897102abc35cd2e61d20fb2859f30fd741b62215d8d892c88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bb8547d7468dd50ea45f4a2a1d28151ab96687c3d0fa813f60929a6b9687655
MD5 2341f8c0c775a759a65596ef5768dde0
BLAKE2b-256 78f50645bc79c3564f073d9a67190fcdd58df2d619886ba59f9370c005c3f354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 465fbb00988406aef801019640c9e12ba2d365addcb8896a9bd04e1239f3120b
MD5 1efc5a7f01d140c5f1c1d69cd007b5e0
BLAKE2b-256 b49f3ce23eb74d0526a920200258032770c52669dfe6ce6a9eca15a627475f3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.5 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.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 21f0009386113337056adeafff763e6e17b8d63bf9cad3d7ad490fe296673e77
MD5 a171b01034c0f5a0b39bcb08070548d3
BLAKE2b-256 09137601ad62ff3e1a85a437c7a498580e0f21bbe46e4819b20bd4ee576fad11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06d438b8eac327eb256749acdc07aee3538b257894412766870185a16063a324
MD5 606209a003c76d42a7c13cd33f8e3406
BLAKE2b-256 791041bcbf40fe217e29be3be217b4798daa1ffa16816cf1d38bea4107113a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6474679ba0698fc0c590d900df67ba5cc84d601092f2d0423451842066aab0f7
MD5 62f607255197bf00549278485e0f89d5
BLAKE2b-256 a3639ac448debbb69a2088bdd4216674eeb3dcda6ae3bcfcdd682a31492a90e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f90d132fcdedf0c8302b95f2697dddd1cd2717bbe09146a05d28dda88fdda452
MD5 7674273e8055cc46d55f0e9e5abc68dc
BLAKE2b-256 29e9fc17f55d00022015344f26c838f341004de66dcda18b2d67f9c1e447d992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6552e51fcd59259f62653c6bdbeb295780f0609b5a434a086ca3757bbcc7e5d1
MD5 e8ff86e788f8a5ea14995ca6e4cd179f
BLAKE2b-256 89896d524c60785c75efc4263da69c331d8002898c8dffd3d57d89f1e39600bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6666c3ac4a77373b05a7d8b709f26c767d38afb17a67d8f367bda4fa78db2fa
MD5 daad5467627085ef3d40080d2c58df8b
BLAKE2b-256 e5c9e3b1e48fb40afa129771672b1ac086eb4a17f4bea3c009b2d4d84da62817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1ac9dffae5aedb3a9ad0f67f2f3ba65aac6f4f62faf7349ce243f80d6a7d56d
MD5 2aeb1ec45a52c8509afc8c0050bb5ca1
BLAKE2b-256 3b4941a2fe4f5eaa39a2c0f70bf707e5e17fd8df11a101f9239732e0fdb7142c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02fd159a8aa2231840c08a2a823e6d46d732210a063b923c6b97288d222d99f0
MD5 42bc914b93af9c9a7ac1f01acb24e599
BLAKE2b-256 03eb5287e1a5130d0d5f0e36b32630194d65eca74e79235980a9572107a27847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50a6a4507924b266a7cdccaa49ec951316f0591a8683e2e199af014a09398ab9
MD5 53d24796954070ba5f69d7d6464a6457
BLAKE2b-256 90c3d10aa46eb48cb93d81231ae0b4e610bec3b2c9dfee846cec3a0a0282a7a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 acb024a05e6fd18e4265b2b2752e02ff41a0824ac97a2bc25b7d61c4e3d06672
MD5 e82892b0aa063cf84e3fab555cd33985
BLAKE2b-256 070d9a44a8094063de2af9c3b2d5788bff41a268ab9a16145830cb131a63853b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b6aea377fc51ee95619c787eda35e4cbd0f008f9f24e3d53821dbcadca406a1
MD5 8895009720179aa1f5bc93b94ad95f4c
BLAKE2b-256 45267513c88ba83b5c27370048d224b92ba7c72fb3c502d02e11159937203a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 006809531757a9e60750facc8fe842e8fd87e45637580a2cdc85c57a599229a3
MD5 257a8c3f2e75ddd9becdf836a73e744c
BLAKE2b-256 b66471661f5c03f67c13fb1b967370e1cbbfa282bf5e1f6f26ad0896791eef87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b625e65afc3f5144c982093bb13622e53e5c501d80d0ef3ce7245c3baac523ab
MD5 e88d51e0b7bcc420beed0210fad12129
BLAKE2b-256 1edaef5184a3bf19be9ff0185ff97fd4165f56fe90213ca652dcc5e13b656fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f6e50cf8f7bdf0a4e41c5b61ac617fbf14ff9d410da47ab196a4809ecaf1b31
MD5 16dc69d1c1356d301a5a4009e2509e2a
BLAKE2b-256 e12e2b7337b95aaf327f6beedd19b6694220db7c9d48feae55c84130b73b1901

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.5 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.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 03ea1e18ed778bf6a892c1ab01efdd4a8703094e4cee45508d888e1396212343
MD5 f6d3e319af3be75accc3ada5253c3272
BLAKE2b-256 81ae145297c1ab03a1537744cdb855081fa12ffabf30cd3b8345d904c06bf034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10598569c1cbd56014cad150a0b1497f1fb7ec02474ff840aed93e691b3301b6
MD5 c930ec716fa2d42c5f5bf7f63f8ca49a
BLAKE2b-256 be043b6ab18a1988fd7749f35130ad7ddc68faebfbd697dd8e92d3970df170b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 558a2c21cb63fce80bcd97c507bde27724edf15985b5b46821ec762b58a27641
MD5 1d14f8b04e474185a4a0718ed3968159
BLAKE2b-256 fd081e7322900342e049f7d4c3042e7257b1044eaf9b1ed381afa96dc958e963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8d92ef281c8d4ebd789db91fa3cbe5fbd8edf43fe900fb2a289bd82affd40ca
MD5 0566357f66b11304b0a6e45f2a03bb83
BLAKE2b-256 c2c134b6e0554904087afe14d13857426f239a23b2d60fec06c34ad04f367970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d572f78b9ab6e0c907e67f509e112a3bb835d57e34567d8348bda172bb7faa8d
MD5 7e781a117e7184d20aeec879799d8687
BLAKE2b-256 1d914c54aa9583b1d69dcc7877fc6020b736bef90f10ab0a0999c8eb58f613ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dff80cfb6c353584da52dcce2fb34b8e124bb4a4746657840f3cad5feca80c8d
MD5 fb6beef92400c52e35248c27025200a7
BLAKE2b-256 6087e216ed8436197b5d84c6c258f8d44386b4dd2c6a5475ffcf65d7a3ed1cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c01fd6cccfc1b65c732cd20babf6a9f1d545e6f4efe63112167b23557132c17
MD5 f96eab451276140b8474453af28dd0ce
BLAKE2b-256 dd58bb4192fd3d52f4bcf077998e8967a08f39092048cf2f08d8eaf4ebf10050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0547844cf55c33cae6d10d3427fe5eadeae8525ef82474df1a80c566b36cd59
MD5 be47e3a166dd26397d4b49847f372e69
BLAKE2b-256 517a87597710c5450be15077f612f1577da9324317e0514e470e89ad8efe6cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c751227492d533b24cb9f9099b3efeab13ad54e87cd45409a016f8f17333640e
MD5 f9184a3f6dc07b396f7f8ca07495f577
BLAKE2b-256 3ecc79179b5dc9badfa5c8c9032166134874a7c78d1574550c3013804bb1a65a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2a12e50f376d969ff35120af9ad1fbe0abe846c942c57ed4c57dd7515b0c8b7
MD5 533b6a244a87eb0aea7dda336843ec45
BLAKE2b-256 51fd78a18aae41b4db0b2bd111ea658803654a412630d14d883ccfe9e40926e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4acdbebadb61d3baa716d428dc8f2e83f156ebc8725e4d430ccb6cb609821a45
MD5 67c7f8b7418f647dc0b71b1c16e8fbd2
BLAKE2b-256 ae26413ed7aff527c88c5c2e851489c2913b092cdb21078d7a287c69a9a343e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac146c0cb27fe1a84d49921f04127ccb3eebbf9214a787957f363dd708b5c5b1
MD5 a30ea02f62a151284e0149b0a94b7534
BLAKE2b-256 3dbacb06a61c3d4f38717f3a8f1fbdc2c3b25885f3e8c24e92c3536f3d2f28ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 071b50cb9e97bf2be782c93f02ee588c9dff43c4c87dff3626feac3f4aceb079
MD5 9f38514ef80559ee41dc9f241a4d2f8c
BLAKE2b-256 2122797e11d0f31c62f005d16ec1323edb1c3eb9f3a23f01ec6d12d2dafc94ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d4466b75d930257ac6b05b7371a37e293935c1f8e23e1d203d4097bfe77dc7cb
MD5 f212393be40cf0e9d768e36c3bca3439
BLAKE2b-256 47e9501c355d9fad2c1c57c91a66af37626f09c9bfb267ca17054bb765275fb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.5 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.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e34f50b1b16583f64ad856616fa9ab83c87fb7e49dcc98e5b64d4e46b0b49a1
MD5 a98fc08b57643d911bb2efde589f9b09
BLAKE2b-256 b98dadaa2cb6e3f6fd2b8df2e05afb5cf5dcc5ee1286ce66b34e8cf7c5f71a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 968d96b75dc61c00b9032b2904074afb4e6665e595023c4b971323b3a179a9c7
MD5 c762f59ef19e134a63fd2a3453b0650f
BLAKE2b-256 4ee2ab70fc13293825559d993f44b875cad213d105687e4cbe0263b5698c9856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57e14f2e669d4df21fceb22ee04d13d1411ffc776f2ca1fb76cac1f5cd77c15e
MD5 2c5057287c71dd5cdaa1a9195fc4cf6b
BLAKE2b-256 94d7d271053b43aac1959ca6c008060c1296d25768264d50bf660bdef707341b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d36e6c812660c7011b7f8501cb8e644b64cabc9647335f90e11ea6a74d4c09db
MD5 eb0dd0bedd123e939572080a4f9f3611
BLAKE2b-256 f56be79f068b30b26b253563d71572a1b10cf4040c47710cc353f8a122dd43b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1a15e54a8a973fbd52c4c4db057e49e451c317c8189b89c02ea7a2a5f15ca6d
MD5 8f3506e1dc9217b5f1b4ceb3f9c81e51
BLAKE2b-256 e679e0e99ea616ab5e719d4dc37aaee72415a9e51d2e6f545f7973f8571ba9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e435f727b949817df8ff321d39ef83de20a4a5ae254e8094d142af6cde8f310
MD5 47e1d6dc50e27225b8093f1f859f912e
BLAKE2b-256 9b02f06410361b4f48759f411cf799f2663c86d19034009541984b69f4943d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84bf2c8658aff1f753e6bda20a4308fe56e752c5f78baa1ac66322e64f708723
MD5 832b4d7f2b615a867a628eaec8070812
BLAKE2b-256 cf504da3c608de65ec881b45a4a7c540eab92c927eea6b33a7141ff05efbd585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fac7a409b2874ac1f267e9d2bc68c769482c63a2467cc1210bde56bd49689e8f
MD5 c3cb892e099d07eddc9b234fc86dc06c
BLAKE2b-256 8900d3097443e2b604df1ac255481453447733057b87953839a8280b31710ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5bdb0ab20917770836956e151efd2b4cfc9b6679376d04bc73cbbec1d2795d5
MD5 64b7cc0035edb013335293b90980004d
BLAKE2b-256 6223a746ddc5724d7ed1eb131509d4efe509fa9bb719db958dad051652a2ec85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c620c66690d7b697608beb6c62d6ddcdf5e9709be02af6683d74d16b5defc60a
MD5 10b24f8b5b48978686a9582c7397803a
BLAKE2b-256 218ab1612fc4c4d0e7890f6957edc8fd82e995b9de39005c9e0f67b2c291f32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbed3dfaecc7e544cb60c21a669a4f154b1b281c32aa7cd57759b154827a042f
MD5 7f6deebe77b094368cced94fea442952
BLAKE2b-256 4e0f86e161b8ceaadc967a67147fd2ac85557843ce55c2528ff5153c8a69e83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b3c321d4c10cde7630a38180c4b6e029e7df2c73f76d8e6b37cd505bfa88e1f
MD5 d922fda1083d03cd1398c684f29427c5
BLAKE2b-256 d90502fc289182cf90dec0145fb0113cb31f2a0d6ac6549770a7626a6e15a9af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c0021e47028f0d8386d35b4ecd78d0ffd8ce75bf4ea4d8f4a720ed02b659745
MD5 def9024ba4a0b8378933ae0b107b2ebb
BLAKE2b-256 3f9c667184b8c985d91130a2b265fe2b69a73cdbe70151b9e87ba9daa5d5c4c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 66ee3a1d1a3a137f9dba1fb1977fbb864789e34d5a960611fd1a2fe3e72141e8
MD5 6771f8c80fcda2206395a7c9aabc334a
BLAKE2b-256 c9b86fdb357b13f15ad9109e826cab9d4c84620a0528c03610ad5feddb756896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.5 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.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a89e9055d6343c130800d541da9b58fc67bd0d380bfdcea06cb41b0eee19a204
MD5 272ecd90ef0e78a772e1018e690b0623
BLAKE2b-256 e12fd277bbda151496e602734b6a322f98b176fa2e9e4ee75ffc5c8cad278fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f6a02f137f4b49dd8983f5bc1a6491ab2151d1cd4eb8f2f69f93ba93e4a4eeb
MD5 3fcc430962352d87bd99a664b9bd372a
BLAKE2b-256 a0fef22c78eceda4e420fb6b598a1c308599f7bc867788f01e52235add118a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1967c39ed0ba5a4638c99c1f2f98115db48b3ec98dfa07bdd9b09f871dac5ca3
MD5 e6e615170d8539cb837bd6b189fa5ca6
BLAKE2b-256 003f39d3bc18c47b21843190fe517f729982fa0af19c819a89f45b99826f660e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5aef60e8cafad173db743f7f113a81fc410171314df3956c5e3456ebcb993201
MD5 4a45298f400e45105439b31870297ae1
BLAKE2b-256 bcf2fe0e9b2064f03b929e75327df1d01759761e4c7707cf6c593758229621a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b23623ba3edcd1425576e6e48bf1fbc4dfe80789a99e6b8575eebad995de6ca
MD5 b4084b18903c510c3095fd3858f5e9ac
BLAKE2b-256 2e329395382462bbbc3dc58dd1889cf45ab24acae35f80715f1686657fb47851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49c2601346c2a625968c8c7e179f4d5368e14233fbfe4b6b40741145f53a3aa2
MD5 f197d86b96f5d5492544fb2f97e1f984
BLAKE2b-256 4432b15e66209da75c778e54653fedc02f95d8e2a6849b4e42cfda6ffd4eda28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93874fbd47aeb8603de6f15b95e6954b33692ec30447875af3069cfb1f240697
MD5 293387a4fbb312d0ea822ddae9b97b7b
BLAKE2b-256 304844cd6ac927fa28b3e87021b9990775068305b98e9e4ab81649f5b8bd93dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b90beb1e844fccbf74adcfa54e7afee59d71e4f9e18522a42fb31ad275bad22
MD5 ce3e9426ae91848198365ca5b4bc7f1e
BLAKE2b-256 fea0f0358c3760a6019017a5e238d139fbcd8c8e60c276d3f2677c1d48e5afff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9f4ef1d7c0c63079432e4de7514c5b3d3157a36a2d86d6fafa381fe0c668ab5
MD5 dca3c13a15f57ff2e4399a4d611c044b
BLAKE2b-256 343fb4a4028ed4746778c722836e9506b22219de6300c194f646f1b281b69a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ff8af37702277eff14db513cf759dd5c87f8767f5bcf9fb9986303f8e67556f
MD5 83d14f42832942c897674b59f05c4c2d
BLAKE2b-256 fd27ccc4d86eb7db63f6e9d3eb6b1572ade51be465ac8a91afcac097368360ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a9b7528260f2d6dff9a8d1e998162d3e5b7eb958650b91a1a411a9333fa9242
MD5 454e24a2c1e3a89857cf1ccf162a75f3
BLAKE2b-256 a5876b8f7dad2a2a71c0b01bebe7820272fcd7a4946c1f5e90005d162a32d171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 09cb4d21044e0c70f259ffc64e0e61e0dd0a1774d38102da24e1024e80995e9d
MD5 fe9ab8f53f793bfa3d88b8e4ccaa6374
BLAKE2b-256 3567dc79db7ce8ad5beb4cb0a76fa9eea3aaa906a4bb5966fcc63d8b9061f6aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.5 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.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a59dedd02ea723a4ef96c178f2a2f0543f99372f29e57e07dc20028ef81cbd23
MD5 0e0dc647e8926e20e7b1d6fd80adb320
BLAKE2b-256 4ecd5d10b9c3c4996b4b446b2051c465fd27e386619e4c828e6c6a2f036482fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b9d0578c013312c906fed2275696ed6a1c0cd8562989897d9808867a9fac6c4
MD5 81cb8676a150acbf9550199c287ec923
BLAKE2b-256 c8096d6a5f3cc330d6ab01cda26b7b79a27ef882ca57d8c4182d65eab5265c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc8a52239409769488702e06c2c2aab129bd1591ce144fe15522af395f958512
MD5 187d683166fccdf8050bf2560e07c205
BLAKE2b-256 6575efdc00ff2223a665caf05b263e98fac9e358aa65ee45e2b81752e33491ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dfaf1b33840310920f70c4f0ac80c68543feea6f12c8c09237c0554d514a23b3
MD5 1b322dd6b8e2ee04c20f0760a7b03478
BLAKE2b-256 53412e2905a831acca32ac33cd2b9539dc5514ae598e0ecb9bf68410fa3ac502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7772c58f382c3c483bec1eb78c6fb0e61623d1b62c967bb9fda901080bd00785
MD5 99f65c3d4435200e00a6f9e1c8ca6f25
BLAKE2b-256 2e01918902ceb6c6c3bdbd3324bb4fc4eb5c486588398829bb7877dd9ed84de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbf50d75999a1a77a53d272c5337642ffcace164f4944f2fb191b79acc1ad4e2
MD5 155fea47b1bb9161b3f09f5d22848ae7
BLAKE2b-256 5188e10f3b8d6891e2ce5e51d79106bfe817cc17c3a4b3862e76e17da505fa6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29509721c181f5d9f885984619f662719cc84b2db8916b70d7c1d420fa86989a
MD5 728667054aec585c070507a32bf78a38
BLAKE2b-256 d8c59924b65880ec5f95174e93c6d3f9dbcd892c2078c286973136083578afa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 843de5a0b5c458e34f1ca06246773292f0260692d3540da7ac8e390177f9deed
MD5 81ad3f7a82eb69d19644af308be83fc8
BLAKE2b-256 4c8cd2a20cea749e12b87074749de63ceb86c47b887961c0d5fb6e97f95bcc56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 190eeae6b63efa93be9f47643b7ac0479c761c405272ae0e13993d156516b243
MD5 5695ff81716d93b1fdbf498b1726e743
BLAKE2b-256 e703d3447355c4ddc45b8a86c15fb461a9a4a11c36ea28135106668380d4ece1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b853c01c0b68bd38e911eec601d7ab9e94ce766639f3b19894ee3cf88139b164
MD5 6f171d072067f2886ffac72401c2b24f
BLAKE2b-256 f56a03adf46e68f18eab5b228c43ef3c9425358a01da927e7fa07223fad35d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e95611241a1c82514b64dca74a9577746d76a1dda70490d462febbdff8b1ecb
MD5 4f0fd7b456bab7ab01315fdf507100b8
BLAKE2b-256 2eb6ee0ac54884a0d4dc14280c37517ae955216d0b9e2951e9af57511ee28f56

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