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)

[!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

[!NOTE] 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)
ยป uv run 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
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.0.tar.gz (83.1 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.0-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.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pretty_mod-0.2.0-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.2.0-cp313-cp313t-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.0-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.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pretty_mod-0.2.0-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.2.0-cp313-cp313-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-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.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pretty_mod-0.2.0-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.2.0-cp312-cp312-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-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.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pretty_mod-0.2.0-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.2.0-cp311-cp311-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-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.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pretty_mod-0.2.0-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.2.0-cp310-cp310-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-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.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pretty_mod-0.2.0-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.2.0-cp39-cp39-musllinux_1_2_i686.whl (3.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pretty_mod-0.2.0-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.2.0-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.0-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.0-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.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

File details

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

File metadata

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

File hashes

Hashes for pretty_mod-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0d8d073536c2c53fb293d8e7ba6dd4d5c594c81cf41abe1fb18ecc2f3db2901e
MD5 6e7c75273cf7868091acf6cb65d5c73a
BLAKE2b-256 fe88012b21ffa06412cd36bf07c5eaea316e1f746601d39950a39660b78c5491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6787c524c4faa44beb116c3404f313efcb29366711f351ef6464ac7f3f384c2
MD5 ca57c449ca42b77e89b04f32dc70be93
BLAKE2b-256 81f1af60f1cf1344ef114c20fb1d07367b13d8fef67a1d00d1073cf8ee47a5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c611df7872585ef4f29c0fbdee3cc11029b4cb710fa8b22d2e6b8af2959b8f7
MD5 95d87941a8f6d2f4124c89596c005765
BLAKE2b-256 4b9cc7a4e77c9098d93336b228a933ad759be5a421552da2efeb2e130470b4a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b93a470ffc4c3b32061d1de021d88c3a029c51d4893bea62bc598a5a47aafb89
MD5 03af5e3ba1c0e80c07f5f49ca69042e8
BLAKE2b-256 8125ede6b5a97baacf1a8233cd56fe7be573772631ca8e442d4fa9e2034d4380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99358914a338f8c6992906b56943729d57914de0195c5c3e593d1e1e55c06910
MD5 712650c80b6743059ba3f38b143431a5
BLAKE2b-256 0aa2d57b2209cc0674ad6f617fe159d01d283def66fbad3b5dbad53a7fb454b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01c0c400565847f3426b607fdc9fd2559c4026e1fcfe95a777457d26c7b471ab
MD5 95d437216c2ef862f6e54e33dec30c85
BLAKE2b-256 df0a4acfb73b36deea42e997d29a1114adefaaa767a3f9ea0c9e0719c1c9c6fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab9e04bb9e06a15c2eb0b798a917c33db04ef8de9d68c3f1bc493472970c1440
MD5 0337d6b4a5d9ce1ce09b41a497de1ea8
BLAKE2b-256 f2227b1108add5164b1b1d26479c83ecd51e64db87c07584953989d603d3fbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70c21926d4e31c4486e580d80cba71152c3366d559af83f5fa4d9dcb475a4121
MD5 3c2704d7578e238ec0b14798cb29e79b
BLAKE2b-256 9002dff5c0d56715cf70b9d84dc17876a05bb0e0d9794a53bb1602fae6193f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9da227800fbc3adab91a32338b902efe8527dc8b1de89717ee65948bc8234109
MD5 0b5fc315a440180612d3fc15fed00978
BLAKE2b-256 29102f5b3308b9a4034c136e2cfbade31bb30d447db95ff4a4350447a7fe1477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c77b35a5ac2e0775371df68c9991d2bafb8ac092312e7d50bc8e15047aa3e959
MD5 f8c534965c012368335161c0aa5dc222
BLAKE2b-256 1c3d98ba24255a5d8e8c03bac28b38f4fc33c3d1bf445a3ff3396b6ebdf46c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 803b00f11ff337df3b8a57ad19bf631e6963678b22bbef89fadde7d561abd2c9
MD5 61749424643bc1dd8039bff89e11fd85
BLAKE2b-256 830cd8295d3e80c6d953b51e0bf54f923bb5322a8fdeeef7c2d2a681048f8aef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22b522983f6a4d6e141ffc50f8b4d7145b4a98ee01898625b1bbf18a552d5a4f
MD5 426a66410a4f4ec7b9a08b826b546a35
BLAKE2b-256 20c4595b95230b3f553d5573b746539521ec5f50559e14a4f1528a256a4a9dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df1e75467aa9c6df0a44b9128cb14e401979fd4de7734743f64f8f647f73488
MD5 a1d61bb19cb2498a8678a86a65c786f9
BLAKE2b-256 9fe144ff2c10ca3641d277a47c7c8950d775842f26c42f02a82c65125d565b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8dee187387156f0a00ea68d6f55eeddbdf39749fbc8ad31cd3ff13909e82df85
MD5 9c003be66d1810baccf9a96ef1c0b5aa
BLAKE2b-256 7de502a9a0f026070e8bbcbbda81867af0b74115bd2f9cabfb949a34b11ff244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d1d1b52e770ad365340f9fc3c03cfbe2b3681b4a1a62662bb88c841801f722e
MD5 3ac405f5f51cb1aec7871eba771b84aa
BLAKE2b-256 5641d79430fd149bfba760430e215cb8900a4574c03b23a5e186b1584bc42745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe3b4c49b9eba5109268b2aa5696e87d6ba4bc3dc92ba3f96111caae8439b710
MD5 d8ce272714301f2392870e303f4d4857
BLAKE2b-256 46cf526218b89aac4767d80f791cdfd05b7e570e5fc0b59025267bd14cd9af8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 845d8e1afd5f8bf62b4de21aedbd5b486c36b7a0da8020fa00c85253f6678a4d
MD5 d136938b9f980e66c7d1a1ddf1650558
BLAKE2b-256 e47bbee80a12168aa8c4211e6d0a78d1e4dd47f8e4cc5e4e6463d5fc6d733893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b82693ab678ec76ceb71a0456a20232a3e32860f38d9e35da4c8dfb781559216
MD5 f1eef3fd0132eb8036563822a62cf194
BLAKE2b-256 5f5a0d979e2ea15647fdd1a5dc7f0fb091f7771c50549b3dc7f57b85188bc751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b84be06f9f05530d8a7d1e0adc7b8c9c8018a5229d937d1dc8f6a2f7a1d5d9a
MD5 1cd6856130eb4388cb19d2fe865a5c0c
BLAKE2b-256 33155858f73d94595ef27ee123e988d3ad4f71b826b2af77fbc55db754b0b0b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0f506a5019b5840715a63fa5c415c89e5445acf994f99f3ea3867d44be020f7
MD5 98df02abe3bc75f09aea105671f85bb0
BLAKE2b-256 d4c1f1ce1cd964a44c91e581a3e42a99db1ebb7824efcea0c6a9704483f63737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f661dacf8ee63221c0c1f35c4b0d8377e97512591c73428d06fe0323ed620e9
MD5 0cfd95fad326f586d0d96a24d48ec5f7
BLAKE2b-256 514d513e66d5e334bc1c302fa772339b33e43e1e4512836e06b64f786e0a02ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bb5fc26ebd5493ce3f702dbcd32719d4027f1567eb122a60fe602fe9e49b3df
MD5 6288eccd6ecec46c6c3a4faaf15979b5
BLAKE2b-256 a03ea46a336da5e4ad1df704692472d8c8a4f7fbdfc15afe6a53fe80baabfb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d3b49a5fe8a29fb1613aa90ed15cc77c447c0a34a9b9c363397bb2b85daa363
MD5 6cef388d05d6e599b8b2dc8c69f0267e
BLAKE2b-256 040e0c854b07d0d7c5e3eb6cef1c5ab094d480332f20b6cb0f486897504aaab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3037d0924a2b0c56b1fc8d24965d080ff21661646be53d68ec70db76f5bd6192
MD5 0e7bf621bcacca88c13a86dd70a44cc0
BLAKE2b-256 a10b953ea100fb4870f8edfa057a75f7ca009170327896b02213b1ad11c2018e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a864c2410789e5cd754ca8992498ce1cd2ade019a931aca0a2cb155adb9c9fa4
MD5 4959545a7feab4c5fcfbbfa4a3f05ed1
BLAKE2b-256 b16ccdeec12daad88efbe0f4632d7ad6333a86921b46103d1578ced5ca6a3c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c7a280f9612902912ad1a35a0ddbf1553d8df0534e83e3d4d0503f1f4275cc
MD5 62bc3c0f003d9e3116112a8f76093843
BLAKE2b-256 6b14e45acd5fd5e038f9dbbd4690621ad1102c0ee1bca9719cbe6a2a256684be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff8702f034082fd0932664e10854a8d59835894ba5625279c6a56fc9bfba0348
MD5 11e8dec1c652584d390453aa453f4e26
BLAKE2b-256 5ee9c6576900c3bb78aa8919abbb7ebba3f6f24cd89bacaae826070bdc5aa530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d33fba46243fe1914659b460b7d594d4f22660ff297b88a529f4f9fdc31e475
MD5 99a1a6d00fd805469dec833929d2afe7
BLAKE2b-256 40cbdb5038c8475633f06888bc43de7105ab1515dec5b9653d2cae85d7902b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8830e1decd90c199a6bf93450d55adfacb22039abcb5b225ada2fa66c516798d
MD5 566110b99a549af88d876aa6c79b1a13
BLAKE2b-256 205d5d24f9e904e02d4199101399e65f8786ca20e7b774f6428c563250d797bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cac8387ec600e703d91589a87fd9f248987477fa662122647615fa8eaf7a94bd
MD5 6bee402196096bba2a0774e2b2e6744f
BLAKE2b-256 d266c56db0df0db3172db20fa5e03feb33fe24aaf86e904124220acdcb7fa8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c220302713514dca4f223824003b03ebdd6cc1153641fb751119dded37b0732c
MD5 271d20778c0e9c662290dea0d6176526
BLAKE2b-256 505ff83803ee41e6a70322b0d1295729c4ef8a8e156fcafb226e2d5ef2b6d37b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b06a3c95af003dce047dbf150437c479140fb4f591f4f028635de219e4501215
MD5 a5c60ce18d5a0b0b3cc19e14560bae29
BLAKE2b-256 e894e4b0a7e619925be48b592b3249b13a33696ea93901bd0d4185b824acc309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33f33a54a86f2ebc9582e3282526e132cff3c22a45052fa45322ef5637ec4de6
MD5 2e776e4cd8f87416fb6747124c83a6cd
BLAKE2b-256 13ba79e840db60af28f1f0aa274cae0b14a0d8de0285de12bbae7e4cd460cabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3bbb572cc9eb1eda1b69a6837ae79d705f8a1e5df63cacb2be3276766d95f182
MD5 3ee3a0bdceca542910977c3945652a41
BLAKE2b-256 65cb8ff36ff734c0055ce115bdafa8fad78d995a67ba3806afa21137cc77871e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58101672da8be108861e1d26d3fa429ee3145109f9dcad88b4eab0a770c3cb08
MD5 aa9b311aa2e38fb2151002daf292e4e5
BLAKE2b-256 d98539812bd88455dc851cc66451a0b65702b4990c0466c6f69635632424dbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a9a501c4bf0bbecb85bf4728680de2b7375108038836fc1675e7c4ffd7777c3
MD5 4c444ab0133e1151ffbe3c99cbd2d493
BLAKE2b-256 206f8f6c44c1f2550b64b3758aceddeb4aaaa2a82c8e8a0189677ee5ffc49616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a40323f5bbc128aa91599340497eeb2d9357cc370e3d78b907703f518ab240e5
MD5 d31d32a4092cabd3d0d12c4fad24b5f8
BLAKE2b-256 e81bdf0f00c11a00b24e73ab1cfc7743b246e6e2cddf595d8ca060d401efa7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 813d7d4af9e1c62869e9cdea4b70e6dba5f31b4daf8ec56ec9e344f6d38b1606
MD5 19a3814b1aa7bf06c0e35df2ce71a971
BLAKE2b-256 6c8fcc246bd5a8a372767c98d3fc12891019b181755290668d345fe1666adfa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.0-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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ce3968acde7b9da8e1ae22c6fafbebdd0c1f4bd8a69d721719646d2a65d475d5
MD5 d7074e9fc5b6cc5f09fb993b469f3acb
BLAKE2b-256 aebe6463e14ec0f12749d55720463f2fd006724ea58e1839ef5d36bff7a47b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ac0c89834172001c0d8b1b746a577db24ab2924128dfa9486dbcbb0380c14a6
MD5 113f1d304b174668c446a00216b04a1c
BLAKE2b-256 c88dae4e5738f9c33db5f77017b71458c5e2591df7711d3625b49a8428a111d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f3892eaf558704129200b679145f55d5a4656ba4f491dc76d5a9956ff651e21
MD5 08e98512c184f357eb93d955e78c6333
BLAKE2b-256 af379c7b3c0ed4a07ece929536a7832ee311f4d4e3b1498d8b6f35e33dc18baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8260b5d95223bf7ef1ab3294f03add7f0969ae9bb6b3ea7a97c5a5f1dbe5e12
MD5 a2526616dbdc256ceec8a7806f07bf44
BLAKE2b-256 591921fafc92d0aac7740de59e2acde4ff079a485baf909b9c94084d08f50337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42e9ffed097bf4e9cb9abf2472c5a34446424176a6f144ec50c32c3126763b42
MD5 5ba4b239fe83536bfb6decd705db7790
BLAKE2b-256 05460f31940c94f5e82e43089e925106f557007622ffa71dbd99863a3d830780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ee2e1932d58a6dafd04a193632c3f533e6798ac03dae07782aa07ab83c90ea8
MD5 c70e471d550590a6e0d3ae17b822e578
BLAKE2b-256 7eb97a2e5aca5a2bc99f4c83c65cca76e0967fa836c34d22247233a412e20a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 744daf0366901e3fb5bcfcd237dfe2c8c26016345dc7bcb9d72cdf4e9abf9994
MD5 f50a30e21906758b66fca40a29da7c0f
BLAKE2b-256 de702b2020f8661a711a40f2265d73ef9d1ca2ea4e7305ffac3a8d2354bc9d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0161e87240a371c7c7d84dc0eaacd02664c16be977d875fb2cb3a55cea123d5a
MD5 d06e05819ed7c565a7de263dc280fcf9
BLAKE2b-256 7988d601dd052b05f980ff72a3f5ae34b4e7c222c17b0ef8643c7ee11b7b928c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de700c7fdd977c5b159dbed36a5efaa1e5acc09ff19eee0c6216a1809cb6445f
MD5 0e41a9c5f3038144222ba76a73bf211f
BLAKE2b-256 0e0fa8c95a9ec7f6665675131546d626b0b2d894b0adb629c72c782f4e654397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 242f317fe94002fa14b1856f0633d91284faddda469b1c62204f3d5d2af1811b
MD5 cb4bb1534c2531923168f7bb01680ef3
BLAKE2b-256 0a5a0a1826e5e547d03e3b56b3991c2d77c896a664accea050fbbb4e492fbdd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1ba2899ebfe96fcfa9bac7c5ea73b22d1fd2f5975bccfa35721be8616079f28
MD5 4720878f0ae0c947f667029945d9d4dd
BLAKE2b-256 672312daca7b1f49e6e56b5e93509cded2432d4a26d74e6054cda263feb9407e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e56d2956684cf289ac71f451e349f4e3bf98cc0136743b1907ebd8ebc056b36f
MD5 0d9ca06635068524f5143f48dc87587a
BLAKE2b-256 336d0a393c560f4c21d98e090f0494906f97f5695976b2e3e939acfb347b5f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9e24baaa5df407c3aa16b56aa6df616d98e0920c0cdb0c819e1d6dc32526b7b
MD5 b52f3bd31392b106d1f6f2012a48f51a
BLAKE2b-256 7daeb5847652583f40c01d97b1805b3702b72e51637dba18a35601f66556028c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e73b8822802b02bdf50736003e4bb41623ff91dfa99952987e4ac0756c5ccca
MD5 4e4dbab43e78c590c9da6649529ea822
BLAKE2b-256 e092b39d4686469a16b66cac083b3dc40d7864ac4a5798e2ba0ef5d196e3c956

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.0-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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6b63bc1863a58fad71cd425aeaaaedff1fbdd4fd0e714703c6d446a982cd204d
MD5 76adf289e9e058c60a8ebe514fd8b364
BLAKE2b-256 9d21e2cf02aa7a00934b31f48a364a6d8a75636e5862ba9fa72101e6d3dff1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1abf99f0dbc18966668a112f6898beb018f863ba388cf2cf67246589200da83c
MD5 466205d73ca325453f170b0e258f3e73
BLAKE2b-256 1154d3ab4e878075f4a394fa29ce4ebe7976ccc5514242450b56aeff2ac7b494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35ed264ece5d73418e088c77e54236267b293d8d18bd075e9a6166cd72c5b77d
MD5 67cc26a622d8df88357e40f5abc54fd9
BLAKE2b-256 f047fd6329e71efbfd5047e244fee896af74f0a54a680e3e2ad0ef1f6a5af69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 965e81f50590eaad3ea64e3d9630b4bd7569c239ef03354362c58cf809a132bd
MD5 d2940a5fb1a179637a5a59ae4ee74bfc
BLAKE2b-256 5c26232bb5ef704e7b6c5861f2245ecaf99aedea15bd43b17528ddf561faa635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d66a7ed2fc69c0c7e2e3334e41b968c426d2f2dfb7bf156186cb4e79a37dcf7
MD5 c32d96e449107cdf671153e89996abec
BLAKE2b-256 ee3c675c009b926ad8fd747d147a8a0d1f175a1e8012dfeb68f42630c859fb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd2233eaaf855bf33029580180464ec0357f8d71bea600dd1512ca7349243932
MD5 61a7e963c5d67b8d33ab283b9a085b2b
BLAKE2b-256 948ac7c0dca4bba625da2de917a33269151dbae7569d788f10504d2db2b6a7d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfc98f88dde2ea039012fb7f0f6f0f95d6724ebede90690a2988fc4df45799fe
MD5 80970b5262561eef69950c2de3783e64
BLAKE2b-256 ca64cb25b6c034c206e4b69d7bd63d5768d8709a945800c0532d6b70a60fc199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc6620b915b166df3eae942119d7c82a8433b39c57fdd87cf25aa8f7ff142324
MD5 4fe8400d63f3d55dce150575d15641e6
BLAKE2b-256 34e46e53b59dd5e1dd70960dfc6c452fe83faa4806fcd15e7701321448ac0fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee70e3b8a8b8cdb41cacb723a01c4ea870f435e20f4e798ae00d8ff1812ac5ad
MD5 8cd1f87a1384d4ec3d5852ea173446a9
BLAKE2b-256 f6590aee8f6470cf6ddc6638201103290092388adeb146c37776bb0f6b5c3504

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea007a172526369a8686d3588158c669edc0d22f4caba76589186063c9702fde
MD5 468362279dee19777806c712d4a63276
BLAKE2b-256 2ed49d40e6d245e9344b94900a4843e6b3b9f0f85101ce56eed53bd87cdcecdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac771adb8c5d0e2f4093c610698bb624b1aa185bc09b84a99d536fe3d7e4bb89
MD5 91ee462c1ad22e81ab46d6452714e5ca
BLAKE2b-256 b1e126df4a67494b3022cfcf5cef78ad5becdadf8d4bbfc07ebee9b9b52d9db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af51a7a24327cb52f20b310f8164f8d061334a8cf7ee9ea8f800c029582a1fc8
MD5 81b12fc5188b8e23e37bab60ed5cbd94
BLAKE2b-256 a5045518c4bf0abb5255bba8443e9afb706349fe83d221b38de4056ad5786860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5f79d0585fa880872c54cd6e6a8a016a030338bcd38b5b1b5b8a24dbf2454b7
MD5 a5833c570414727c41f7973e99da8167
BLAKE2b-256 c00b931557210fc08a720cd28f5c0b19b4b0b6cf59d69e30145dad8ee6888719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f046fa615f46695528e8241227a096a29c7014a342594c2f55d6802a99841ec9
MD5 1875b9e94fe8406a0eb69905b896bad3
BLAKE2b-256 7ca569908488d5c732a8ddc2075629d08f9184a08be070cfba5ee286351ea5bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.0-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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 267178397c80f598817fd2ad612fef72f53dd48423560c567f21ddc048b0edb9
MD5 cf3111109710ab8844e7f8ae234efdfb
BLAKE2b-256 8c17b9bcc5622d5c450669f9972611e4998f073a195a1936c82af34bf0b9f604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5655f87c30f72130fc717051664916ff7e84c576c0393636724eb0901a77e9ff
MD5 5e9aa1fc5a9fe5b8f41b56a719b50463
BLAKE2b-256 a04187a2fbc20ac2ea279c2a49c891fd9cf5c0668b9d37f6b5e91f769b25d5a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80533a9563e9e59b9d7739196a0075660166b8797f433f0d891062371a3ba239
MD5 8ac97ace38c475974b9999f833af4cfb
BLAKE2b-256 16d2e5bbac3cee0ef20fbee6def4fad09af0281c34057ac0918ff4b9ea921663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 549e25c255e1214489f070f2f5fd9c1f9a315c7a13c06a9023ecf0c98ef4f9c2
MD5 680866c8a03be5e2cabb7528de7082da
BLAKE2b-256 5922ea14860edfbcd156204c5043c29b0370457dbf7a67e956248d2282481911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c63664a95becc08c3936baf2ebd5b6b46adc595730765ad7d3d50b7121bb071
MD5 3b27deb315ce1a5c92a1ba2238e93a44
BLAKE2b-256 8aa03f3aa2e4f5954507079280281f25c5c6c5bb6eceb5ea2234ecf02ccad3ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21928c42d76b51e25dca8175b6bb52d06b62ce30a711eaff1c80830a19f6b83a
MD5 af437ce2dee5421bb03be5805677329c
BLAKE2b-256 90253f175b983bf8733bed5be0fc32b33ccdff8b0411df881cc3417cf3f28cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcea3d8c09ba0d1e208191bdac3b12def9434c0c8a274d4d4ed763e112e3eaa3
MD5 7ade200f8dd61d062b18ad459af796f9
BLAKE2b-256 99499b8f0a600a9662e424ccc5a7339245b135b6c5cf8838d07467b87c33e12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bac5b5baf0d7db4ad0f1e336904640d3077ad9a502caa7bfffe770155f26d58c
MD5 7413b59c9b585e1c35b9bc74bfcf7634
BLAKE2b-256 c20c5d5cb0562fce6ef1841fad86bcf5712bbeabc38cee322ce48f013ec30278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f58552825fbe124c68f9741729f1d57cbd10c169a90fe5e8337027f4b10e619c
MD5 472be047bc6315300e627e5ed52a0fc2
BLAKE2b-256 91265d4e17552153e000bb4b8f07378c91d0e2a40d830da698f13ddfd995ae50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a11945a33ea32550af0596eadd572d668f540b70ef7545dd4cc848e8cdee78b
MD5 b9234d82608eba4e95a7f562ad5e6071
BLAKE2b-256 d7deb0d418fd6cf42e82ba21e5dbbc189119b72a78b525a71e5a26a05489c947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92b62e1766dbc40536d63eff1fc679a871d93a4ea6e21669a9fd66520a9b16e2
MD5 723171508be5a2df44be72bc1cad3a46
BLAKE2b-256 7daf8504ad8b947fe8671f41aa7eddbc7296d63d02b93483050765aaa6594e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 600932e941e40716516f23ffb594cbe81343c96389aead7e9318dcde13c37230
MD5 13c94b6e5c7ed76b5f72be52360b050d
BLAKE2b-256 52b6113da868023fb37d2e933aef28baaa3a9eec675afb1b63faf81b8617996e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4b955406009aab82e08928910ab4193582fe16a848e7be9b461dc3b62523e35
MD5 cf7b27f5ee7f46a5c8477df9c93dc123
BLAKE2b-256 13e78bfe737fb005c914c0007c9d2c80f7762132f5251e88865c9daf57646929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 966e7a83957ac3c457d7d4c8f1a7706b4858bf66544d534130cb3ca77f428aa2
MD5 d2839eabab6aab56e0ee4bbdf4cb51fa
BLAKE2b-256 9633c477de7cdbec0946cf52e97ad405b4595f945e9b4f63dd2882fb806448d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.0-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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bb6fc2dc5f06a0e84246147cee2c9b3580bf182bf385bdb87452ff673924b00a
MD5 a1aa6aa8df4e8965dce44f92afdb14b7
BLAKE2b-256 6c14257da7e902cb339a6663a88869e6d00aa892ba684362bc9b160adb9341b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38faf1d04e32e399b1bce5e5eb05a64facc735e9ebf63b489107a4e195c7ccbe
MD5 928222471a5582c3543f757a706d82c7
BLAKE2b-256 b17f6167a47211b56f767f8b7f3e668830f65e5ca6d319f52c419e247b41bd80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5c6615bcd1be98417faf7c81177fac457f1d1327e76938e5b9a553ce4b14d68
MD5 f87de9fc5121f7ee678a4cdc0a0374ad
BLAKE2b-256 87c3e28f9b80bc005fabaf51ec2f3ae500851b981c6e52636e46a6f62eff4118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48d063082407802012d80b80f1fca601853f349696236fda09b770f4ac1f8e65
MD5 badd031c57295307ce897776c150f6da
BLAKE2b-256 543a5f495a4419f60342ad03f88c44532255a13832d53fa32dfee0ca7357c38a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37acb9f480ed89ea36850e1f952bfa73f38f281c41a7b3db742de65c6864fc91
MD5 9b7b2df6fe2572f6df5c7f13b0ed896b
BLAKE2b-256 f70db91edf2a3b5ec7f08aa8ba9bd733208128c04f5bb8895840a10be55c2b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1616f23a5aac57b194a730dad7ba1a8b13d83898ca8072f9a6c17a22d76c8754
MD5 35ef4fc27f8a4b421274dc61b3e6e402
BLAKE2b-256 fff68c44e82f0d7d1cd8ea1bdfa55986bf23765a8ea5e7f0085d65f15e0db19a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0d7f2690aaebd3a933065f96c3e7c27b12ed7bf28e5d5dd68e851f61378538c
MD5 4c95f4ae93e491c76852659ab4532fab
BLAKE2b-256 addad6074d7de78a44f43791094d9bc6f739301b45edad4a2eabd22b0c4a3e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 993ee910af9a7c8ef8e817034bcbb7e00a4086a593007b34425692b515892480
MD5 24fe2697727f14d1290b07903b526871
BLAKE2b-256 37884e006c8a97c96ca5fff66c6be0de3791d1ec87c7ac1442dabed9a5187e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b70bccef2610652eb85b78e16a53a073e481e47a697c55f4c7385c70c0353474
MD5 baab435ad07b055792c9b09ef0f58c7f
BLAKE2b-256 bd5f5d2fae72ee0bdf52dc0549ac4da345ee514f959e3c6613a30429294c45ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a71d9b6a3aa9ab2153f94e648114ad9f8e8c79e211e5ec3ce73c7511efa9f38
MD5 f1e17d659115498d7adae1a2ed8fe33e
BLAKE2b-256 c08e1f52c180b3316552e7ee3517e4048907e2b5800c0caf0171b34afa6aabff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69c0726a77f037e1bb682882ab16c1c1ac1bae20e17e36d2810637f7e349b0c5
MD5 ac7f5f6f818c8e18f78279d664d62c57
BLAKE2b-256 6a233f82101a9fbec57d6f38dbab546582969d3da3bc35ee24b8f24a2b52ac26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dee6026a46fe182026430697c76b36de086bd6ebcfa31a91ca1e55cd9cb9f8de
MD5 9b53e863579dde91d59eb228b199895f
BLAKE2b-256 98f134b894b92731619a96f62db91723e636f016545f52a68db0b276b11768af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pretty_mod-0.2.0-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.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2da722f5f3e496e12b8f30009b709b90eb4fa1c4ab4aa48766d5caccb3f62824
MD5 3d96144f35612a8936650901cf01e07b
BLAKE2b-256 3c9e7ea731ff9e51a7b8ebcfcda84188919b0510f9f0a27dbb14d401aa415889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 981c1c89cc0e9d5f67afd1388e6439bb4559efd34e428d583115e8ea528c1cb7
MD5 c7f65bba1b7be019a70c60341b5cfd3b
BLAKE2b-256 a5ed7b64dfcda71a486f7827f7621421875395a9ca803a5630425df003740252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c0895a87bc4b9e2eb405fb4a34f8e885f03c4e020fe21beb9e625aee2daa7f5
MD5 09b8d7bcc8d0c9063f556680f2f83bc1
BLAKE2b-256 1e961f908ccb8107943b44aec9848d1d5413757155baa48b274846d11716ab89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a18a486cb1b9702ef86dda426d1ec756ab893dfca922a83af671bf042ac2c31d
MD5 9a608bacd9d6b3731ac8122dc41cc5fa
BLAKE2b-256 8e736af1a952acebd5a06ebc87244a913449fff7661854c3ba3d2b65fdbcdd47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91428d323383a2815208a60a5d57a9ed81b3d9d5b8c0d73fc7063a9e3ec8194c
MD5 0f16c9487b64f03296c661713b0478e3
BLAKE2b-256 ce5830ced272fd13dd7a9907a64b575cd906e005bd84ef49d8ca2057aeb5b591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ceea18e483c7f124be6425910bda323c2bd02f4cfb9059120794ff86735d0610
MD5 a0fe51392a880bc9179bb2877166158c
BLAKE2b-256 6ea49757c577ec58cb38518bd52388859d0d0e6605d424914be93f9431586b2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2955ed161ebee569727df24e3a775cb5dea3d17164579a2e31a80f47b7e7619
MD5 173ff1d6da04ab8365e0ed6d55815d62
BLAKE2b-256 b9bf3fd630962d9453f681194b7f11ab65ee1abfa300193e4ae764cae09a3454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f8cd853cd8ce957d968e664b38d2820ed944f589fe84d65b217be02708c9d23
MD5 8a832bf3839bc49a6f3094b9e0d581a6
BLAKE2b-256 12e15a32bc5f1090d712a4ee799ce92551d1a1f4d28438f8591ff38273c0683f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fc0331e35526ab306b5193a3a35b36ee96d91bf74e5c41ddad100324eedaa3b
MD5 3cd53ca4f1bfddcd99f9a48ed6b857ca
BLAKE2b-256 7d1c9abd6ce8ee59409bbf06d2babc32915b8edc50534c7be8df998bb44f0c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dac90437375bf69fe3d5cf7c7ac448e3800d609dab2495af8c5d66756ca9f3bb
MD5 65df2184ecbf97625f7c51946f0c42d1
BLAKE2b-256 833db6874086e0de5006a65e48cbaa1f027069b635a154e1e70f92c82bd28566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pretty_mod-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a9bc94a68394f1975eeac863c4dd88763ec242e77ae27312a4f27cc8cd40a23
MD5 b6bce4eff1a8948cd5e10a351e565587
BLAKE2b-256 629040ab209750553ed8227505e350f2724e4b1303c3ee4e0f42a4452b9006c2

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