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 viamaturinand published to PyPI. Install<0.1.0for a pure Python version.- Starting from v0.2.0, output includes colors by default. Use
PRETTY_MOD_NO_COLOR=1to 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pretty_mod-0.2.2.tar.gz.
File metadata
- Download URL: pretty_mod-0.2.2.tar.gz
- Upload date:
- Size: 90.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cce2d4528a7850eb7ce9cb924c92f35cbfcabe90edf979f3331cde00ffa4540e
|
|
| MD5 |
80aee71955dd6714d07f1393f9571e56
|
|
| BLAKE2b-256 |
32cd128a86f51ebe5ba014e29d9e3dd02b998b10bfc6aa4b0a4b3ea17fe5fe80
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6a1f3615e71320a67302a1f11ecc55e7a74d97340de338ea65e1bd8441dcbb3
|
|
| MD5 |
76666f62664bb48357d82f58247fb4e6
|
|
| BLAKE2b-256 |
e13b1050952f76f99a6da3727724f6e4574deaf9d2baadac785ef61ffc8e8a75
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66a0e1847d11818a8d0afd27c9d51a2d40ed8e936cb1db4e696ba267d2dafadf
|
|
| MD5 |
24f1e04eee2aa72463bc2571a6563a66
|
|
| BLAKE2b-256 |
9aa0f0d3a21c835df3f464b63a318117cb66805b16c811769062b81703149639
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e059d2becad74f6efa4d936acdcc0681eaf2c66a2720d64d69ff1ddccbe14465
|
|
| MD5 |
fc3b8fccec3a7cd9b32d5c820bf9d2ba
|
|
| BLAKE2b-256 |
c7ea9c5e313cbe124dae1707038b0b2c982721838a2f3640c2d6bc444f2fb727
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e76b657d8cf96ecc8f8ae3c56e8c8ace6f87c5bf92c6487e3066b8db6eb3221
|
|
| MD5 |
c45fc56f5dd9ee1feaa84c93131efbec
|
|
| BLAKE2b-256 |
37e2b9a1c0efc329d519547e14b1ab683fe44dee98a4f4cc9e066f9b2ac239a8
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
679074921c1bd9f758a70cd836db7e368e123048fbf14c1d4a5b19bd25b57d69
|
|
| MD5 |
8530cd22172984f6783a2213e30b547c
|
|
| BLAKE2b-256 |
7935b2bab7bc92308d1e8293a09074724a20bd59de2d1d9f97ac832216bf58be
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95f6cdc102d53333143b43638688556569c6d89b30b0f7728eca287d532358fb
|
|
| MD5 |
314ab0304bbb6b6ad1072bf560dc5e94
|
|
| BLAKE2b-256 |
3cfe85d8b153cc0679bf9a434999325363ea039d57e77a66a6db1e428346a628
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8675a8b2b9952852bd9d782ac35e181388ac21c71fdd3a632359a15f3d3a9d82
|
|
| MD5 |
52d03e34a84c959f3bf94a578d8b1e48
|
|
| BLAKE2b-256 |
2fa5dfbaaa7b4a46eb60a1a980dc512fa19633e5cbf96bbbd1d519ad72fbe2ea
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba5e8c9a21b34484f8a21e59b1d8139d4c3c6591d640d038816f6d0c7287dee7
|
|
| MD5 |
5a944f44fd376c1722afc0be5d5ffaba
|
|
| BLAKE2b-256 |
e5fca33636635aefe5894dcd2bc20e81ef2c96ee1faad7ebd37b8e1c2d5aeb95
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66f5b1111f60707b23fb24f2a38c20a5041436170525e85aa0ac4abe4b96817f
|
|
| MD5 |
2c0e3005bc7141e395c1258c9dfac10e
|
|
| BLAKE2b-256 |
08e8f7cb276b11c9125591066431525fd7ba1a69d9981d35814df0d593566c45
|
File details
Details for the file pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
116dfade2b433829678994b8f589fd04fa47670ea008fe774593f34bb086ef64
|
|
| MD5 |
d14cd771be035c4a955a7dad657d4830
|
|
| BLAKE2b-256 |
9802eabdbe7fc34f0d943e589b2967e3d5165ab04e42e291373bdc4136780506
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afc2a6f70a798e00b378079761d7ea04234a853f3a66577978fbd2dae42094c2
|
|
| MD5 |
2091ef2e2b442599c1231449919b034a
|
|
| BLAKE2b-256 |
929f0ae23c753aaa42330a77669d733f67518aa2626d69e315d3fcfc45331a4e
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f90e68fc9dd4dd6c9ca11a1170d79ac9f86a25daa6ed99aa1a5e349dfa0b770f
|
|
| MD5 |
5148ab24e8bd43fbbeab291f3b6b0be6
|
|
| BLAKE2b-256 |
a4e64f4196033ee64054c35389127267385b8a8b830280d64e787141b6f04477
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f55bc7fb180d07b8fad01fab852be9329e08953b4fcd0aa5e4a19294cd7aa232
|
|
| MD5 |
5d91d016c10db808f14388d0a7b80351
|
|
| BLAKE2b-256 |
f17d18d3826f18c47bc4e6b4c885cdd86dfd9713c8835e167340e9681d0a82e1
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d132d6a84bbeaa4261c8f358724b0dc806be62c1d34a5436c5672d5b7b9d602f
|
|
| MD5 |
801e56ee86481f43e64d561b53d83470
|
|
| BLAKE2b-256 |
7c80946bbaabb012d2d49d703d6de4624a1d0da1d63e68ed0ff60c6ccce8714c
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a327a1c81f4215ffe206759070397512f652d3a1e4faa4a0fabef3dac63182d
|
|
| MD5 |
61808e828f497446ea96d003d225e282
|
|
| BLAKE2b-256 |
a020bbcd1594449cdc5c8bfd32581de938988a4a28794ef778dfab36a05171e0
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0451dadca814f1603dfa8a218060311214dced9bc77152b8dcc77134e4ee347f
|
|
| MD5 |
4f951e5f954f221d88d35261577f4d76
|
|
| BLAKE2b-256 |
82d349dea5fc29c7d47c0812a09e08a6a66c2f579bcb5fe0658b833022d3d3a5
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2df705b25f22320e594775f122cd515feae48d3bc71aa0a064c4e25a4ec7b27f
|
|
| MD5 |
08b2dc1b0620e0eea9462225105aebb9
|
|
| BLAKE2b-256 |
1a30a2c45cccbc7c1c7a6c95d34d8aa3b34a96fe28366f0b8a591fd52a44e694
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1ccca0be3e38472300034d9a4204e7a6a6fda1f7c00b4ae7677fcfb69c37972
|
|
| MD5 |
c2f0e0f03d3d38ef7d57fbbad9813a3b
|
|
| BLAKE2b-256 |
9bb77e79bb9dd5d6600976ec41bbfbfc6754d29a270c6a9edc9ce590ce8ff185
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3052c1221239edfef519782c5d31d56b59b968d254ad536482e7bc075deac4f
|
|
| MD5 |
649e39a329c8d3c6aeea5f67ad728612
|
|
| BLAKE2b-256 |
fa9c6ce651b2ce5e9471afaf0add94193c6916c1543c983afc8bb820f2f0f61a
|
File details
Details for the file pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
045086d87968fa7f70af0172b1be3752116954cd71acd6117544d2f478163ddf
|
|
| MD5 |
9eb3feaf12303df5fa17687783c00c31
|
|
| BLAKE2b-256 |
47731545498965040de7f7d20426d2c8708451d8ce43bc0a082f431592eea7d6
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e9dd3836ab109691d96c8d0ef790df793e5b753636326bb83832be524007d6a
|
|
| MD5 |
693ac0b9981cb6f2eb36374e9168ae3c
|
|
| BLAKE2b-256 |
a003a0509ec97d1d43370db31688699f95147b50818d8f05e70b15ae60a9243b
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24c99553bddb130007fbcf3005f98648ad4b53e2d2990264a31a354511ca1f53
|
|
| MD5 |
688a060d69231b12d81b4ad657da861c
|
|
| BLAKE2b-256 |
667882b82f3c81e6a75ad8fbb5af2f4007d33279d508f4988e70230dba465a27
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50bd0955676ef72ad1ebff7d971b29c7efa44d254d3bc09cd4427a46e2799e64
|
|
| MD5 |
5b377ffc350bc1535f44f3391187e5b1
|
|
| BLAKE2b-256 |
7f29ee48348bff4f8da8a126141f5cdc7fb6f3ec99fe753ee2c0d140923cd484
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfee62398846e598388ff366b650148126c15e23ebf23881dd2fc769630a6065
|
|
| MD5 |
91e9b7b25410aef80d2b678ece5b25ee
|
|
| BLAKE2b-256 |
3edfda73e8ef51958ce6c7264a05da4b33a1fbff501e606dad3cc3beafc71a7d
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5869fe2e6bec30e0afd81c2b5efead3b5efd9f4707df3787dc4528278e3c1a9f
|
|
| MD5 |
60c3bb27478752029fcc78bd3529b52e
|
|
| BLAKE2b-256 |
0bd79c2c0ef2a3c8a754975678c1755a718045b51c2a442508992a066f6e65b9
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97b1abaf139e4f4453d55d6c207fd79f0f2b7ad49b958587df233c7f92562ed7
|
|
| MD5 |
e8e34e2b84dc371e296cffa428fb694d
|
|
| BLAKE2b-256 |
fe8d825c25b3ab40f059afccfdc59dc5c9e07cfc301bbef02b66873fe19edb47
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c769dbfff2bcf6db199f94c44943ee5b0afe5c3422f273f6d342fa35266145b1
|
|
| MD5 |
a6e120fc11a9ab32403a67a00da70fe2
|
|
| BLAKE2b-256 |
eb77b2972e4042705b181fe129dd8446cc1c8ad800ef7612852ce3921cfb6dff
|
File details
Details for the file pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5d40d520ef93542e75d141fc81ff235566fe3765da6fc2aa0fdd4639c5d31bf
|
|
| MD5 |
190bd6e1966b5c2f29c4d22e48b70b3d
|
|
| BLAKE2b-256 |
807165e86acde5f45c170bc38e022072524fbf6013a1715f2dffd613b0e7905f
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16caf7ebf801a5da4e40550d8e9c85ce70111e4158dd20cb82994b2343197a89
|
|
| MD5 |
111b7f613419136866d3a1f94cad1967
|
|
| BLAKE2b-256 |
644642beee4fa1e6bf682711cdca729888b8e4b84ec8a3af5573f780f2897e4e
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
122db9be380faa1ecdf701860d788a1e153854d1de56f1e145dbf95611161a2f
|
|
| MD5 |
6c1680a9ebabc4a5f9dbad0fc02bc17e
|
|
| BLAKE2b-256 |
22236f1ac9d2356e9faa31cd5a27984e611595a7ea9157324ba72255aa85e42c
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2493a46384d08c49c1daced97135dd98c10ef1c16e971cb3edd1fbee30ae4617
|
|
| MD5 |
af5e3654d921cb2625b6d830b36dd669
|
|
| BLAKE2b-256 |
2b87d186cb0ad316a4790072702595304e5724bd05d2f686f8b7365f511b04cd
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc9294e05061d81f720b13a65515e7bbfef98a9fce45021310ee74d98f1bf913
|
|
| MD5 |
370195af5ffafd4e051f9ad89883379a
|
|
| BLAKE2b-256 |
453674f27e4b7b4f8d4d22209d298877209cb9d28fcbb996db33bdfb64e33586
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b70cd4dfed811ddef46c0dc0fb8f5687731e9b26c9976e64774bd46d2c123b6
|
|
| MD5 |
45ba5ea25fd80eb3888cd74e30897238
|
|
| BLAKE2b-256 |
fdf291c7dd5895f49ac6ce046273fb46ffa16f0c2dca2b9e6f90e0b161ccfebc
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe1e1e0cf91146bca60f5517fa05721fa04e631aa1f913ed5dd87a17d1ca84f8
|
|
| MD5 |
9dba115ffe8f41e8fafb61f3279961a5
|
|
| BLAKE2b-256 |
e67ac4b63e5c778854e53d457fe3e67ffd5408c9f1812c13a356f1253c4f9035
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45fd0ae1349d23e89617f9e404fa724aedbe424f47522b605d64e8aa2b5a4640
|
|
| MD5 |
bb748cee96ddee7e59eefed3c1d2e4be
|
|
| BLAKE2b-256 |
2f9ccf67e9459962c909006ada7d604e4d362a312738a677ef745e6c3f0d51ae
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5d4533a5ebad98b6f25d284ee166a92e45b03d7443966955b4fabfb70be9bac
|
|
| MD5 |
80f6648580b96fd812752b02367fb073
|
|
| BLAKE2b-256 |
903aafd9e64f3baf6a8e7458588ce9f555a293702ef81053485d1eef7d6d483c
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9416155a53e2bb0d63dd34e673bfd0144b8915272238bbf1f6cc4817216c0039
|
|
| MD5 |
eae8078e6997e9deb6b9ea5f2b25c435
|
|
| BLAKE2b-256 |
fd96043160848f1dbbdc92ce600761c596346d2bbb4152a0468c43c7303632ca
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-win32.whl.
File metadata
- Download URL: pretty_mod-0.2.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
faa3035ad3c19d0934a8c02806feb3a2113783b392b2ba01adf227ce0903379d
|
|
| MD5 |
7b4d258dd75702196cbe9909fdeec1d0
|
|
| BLAKE2b-256 |
7f3f97b05d5451c5013e17e86b991051231c979fd5cea548409001e4824ef8ea
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c24e785be848cf4fae38165a1214a3bbdc3ad398b058474762bea88342f32b75
|
|
| MD5 |
0389bead4c530f87fcad437da22a0e6e
|
|
| BLAKE2b-256 |
85eddd849043cc132f2a8f578891670e742cc9330b71487196787d2b2d8c88f4
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34082e1efa798e357289c6f0bdc79cb987a3e942bc1a1e319af266a6ff5b761b
|
|
| MD5 |
dea58b4ac4723255ff082e2a4727fafb
|
|
| BLAKE2b-256 |
a3aedca0545144f6f0d11e35078fc4857c73c700f94d645cbf1bb8ce13557c66
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
050fc8f3091a26cd358b5033c6a1804c1212da57d13ac5bdd1c475c95b711dd3
|
|
| MD5 |
a2875010c74049c4408e6c0215eedc0c
|
|
| BLAKE2b-256 |
8623a714457797d859dc8431725c1362673178b26d4e89edc239e3f3e95ac808
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71c15d00b2781bd3f5ee30f151136ee14ff27b17e83f2487b351d666a91ff32c
|
|
| MD5 |
7dbe767157c74c011173c11207453a9b
|
|
| BLAKE2b-256 |
c9487cb40f2dc985deb14599e387ec503185d635ceadc3cb439ca7cf6d395c29
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8dacf7d6710ef8fb820f8dac8c24561340955f7c39dd6a696b31eff42653f83
|
|
| MD5 |
43d3a7b549eb4e7524c0284800d4228a
|
|
| BLAKE2b-256 |
dc6ac28a8df0620115e05a4bd5e8fc95daa9f927a5dcca51966f7341263cad59
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acbe3a791bb3b5b07f997b5e817b61caf28d1695cd888f7cfd53e0be2bb97615
|
|
| MD5 |
7bf809eeac8d6f9d47f18a097860f318
|
|
| BLAKE2b-256 |
364705787ad8cbc8b1fba0aaee4690982a49332002cf0400b82df7739aa7318a
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
764bde192c5be04a75d7bd645bf80d413dc779f15bbf8cbcf4ae19b782b349d6
|
|
| MD5 |
aaf26af5b9b4b123381d1482e2a67c8a
|
|
| BLAKE2b-256 |
1e656342a7271b9ae3cbed6aca851b82b2103e674b640b3fb34cd2ea93d61064
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36f4b9607c8619e2c05e512580d61028671500919f508a4f2c4dc523a4c8008c
|
|
| MD5 |
8e5d4005bb7e2885349da70184769551
|
|
| BLAKE2b-256 |
361461c83ca70e504f07aef726d32fbfd9749d3ff050eae2e82b10485fe6547f
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52963cdd98502f2935b2c4fd7b809425ec312436c45edc9b4d5c35fb93bc3e16
|
|
| MD5 |
5f69c2433eb064573808c9f99572098a
|
|
| BLAKE2b-256 |
99416a1763b7952f1bd8bae47464816f26a0cdf959eabfbdaec47f6453c64d1b
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ea5f2d9d262c347875ff7b01162340b9eba98fea774fb833ae1ec950b2e5be5
|
|
| MD5 |
dcc34ac37e67083a9517bd2662dce492
|
|
| BLAKE2b-256 |
278b1c1654ef2f90fe23a92c66022947925918ed6a06b6ce34295076d1dc8c29
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
669f8b933c620a3fe39d20ff5b09cb06ad32ee4697076da7c1fddb5dae065649
|
|
| MD5 |
3b65273d9c16e7c851c4462ee4aec6f1
|
|
| BLAKE2b-256 |
882479417b685e71a8f3aa16829c8ec7859463d0a75484ab53f25280969b4177
|
File details
Details for the file pretty_mod-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
035a508eb871802a168ce423aa5cf76acbb5d00f07c16305018a295e4ade777f
|
|
| MD5 |
7b46ffceee4eb27694f114e3b30f27a6
|
|
| BLAKE2b-256 |
7619293bc3331bcc8837dcefd9ec9c9f3f76451f99239c58bf7ab50d03bafab8
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42dd25edb8da1266e70aef128090d9eddadc1711c0c63ba394e1777108ba1984
|
|
| MD5 |
26280a25d7e1edf6a498708ff28cd51e
|
|
| BLAKE2b-256 |
b6177539da83c7f411e5e7b0fddfaa7fadcffec081f184b96b400dbcdcf4d1d7
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-win32.whl.
File metadata
- Download URL: pretty_mod-0.2.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd47d646b4503357fcc537cc53f2abc18ec1c903cd946fc5815d2ccee6ef5416
|
|
| MD5 |
bdf583ee6e168035539aec58da22a41f
|
|
| BLAKE2b-256 |
b34f5aff4960951731a906ba82e1979349e8e1c2297393b08bc7a96b1076f88d
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
939394ff6eff87b791c0ea8923215de38cd98e54b365cc410ce946b15892289c
|
|
| MD5 |
c94451036a77f4dfd268774d0291e0b0
|
|
| BLAKE2b-256 |
320aee7b892f6eab42a75db5f44c8a00fed0c48bfe03befc9825724077bcdcb5
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52ad7f9bcad1efcc87f5a73432207b243e18d813b2fe5751f6466e1df5399327
|
|
| MD5 |
d8a106054b6d2d7ba260854f71a9617d
|
|
| BLAKE2b-256 |
f666054bc2d3569524c7ee1b7b7c5d0f5a5685b9e20b15d1eb5b16685c6f06a7
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dcbd2499a49e96c4dc4e668b4a4e412f3e265d37ac3b77f9b07b567f177d337
|
|
| MD5 |
027d8c8e746f6373ffa2c7e27c96bd3e
|
|
| BLAKE2b-256 |
a056a86b44db80b42a6fb14724c9e4d7c26c0d6163fb6cd7105d9d20b659ca0e
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a26089f8f70d07cddf7cbe9220e806d3f6f7bffec2235fac8ab77de659cf831c
|
|
| MD5 |
f7ad13f67434b97cb51fdfce6470a5a1
|
|
| BLAKE2b-256 |
4f05d86554cc24facb33eed4879c3cfa69c988f29b16bfc306ef381be264c9a8
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2f6482b0da01c3d13762fafbacb457210f1eed8186c52f07d93de3de7d54b15
|
|
| MD5 |
22444da181bfe2405bb9d77b07510cfe
|
|
| BLAKE2b-256 |
395afa8aa930dc26c00b07e570eb7722a9c1005b74d4fd85868335f7a4ada93c
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4110bc9bdd252b7f819bc3f6934121174fb2e060e35a7dbee2d1afa3962a4136
|
|
| MD5 |
1c9222cc816ef5292d058296c380c96a
|
|
| BLAKE2b-256 |
59ff95da52ae2c158d2f1870ba3b0fb37d26054237fbf9b4b05e0f2301d7ca79
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23cf81f93869abd5556f6d52a2de9af5120421ebfe07757dddc66a1a9a12160f
|
|
| MD5 |
164b2c04abe6e5773a18f268e4d8043f
|
|
| BLAKE2b-256 |
2ae7395d62b271f7ca26f57fa1d34dc113c700e1ec253a50f9140811dbc57ef8
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cfbd4c88e5c4198bb96e58f6f0b2ba0b7d2392eb853e41479d45965a5a9e56e
|
|
| MD5 |
792a65b11ebb6c4bdcf9c046e07aa392
|
|
| BLAKE2b-256 |
c82c98d15627c6704d12dd735adaa38219ba8cac1c09a634d86368b142977b8e
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c9fedcf9bf6dc0a38130e2b4fc879f336d1fa10ded26cc9ec2248018a87dd2c
|
|
| MD5 |
e74ba3d23d494a0dafe9ba05a578fdbd
|
|
| BLAKE2b-256 |
dc857ab19ce16f60dc9bd718dd9df045b079ff33d6069164d3f03b4dc33c561a
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53e8ccfe3ce4d5ef125bd921810ac842e9a9a2ac37db71df319a49d643dcd25c
|
|
| MD5 |
61af8027ba149291651eace7409711ef
|
|
| BLAKE2b-256 |
dff84cadfe4e4460292650a19be3109cd82c81b60c8afd6fcbc8db6b4fd5fcf3
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
788747a7fda427ef885b00963306516beea87bc6077ec34e2ce64acb6a5d6e96
|
|
| MD5 |
df1cb092f0f451716ff26c1f50b8883b
|
|
| BLAKE2b-256 |
1e7a6ff9642bd7ad847a6d8496fbc8f95bacb243d971f65c730ecdbaa79a2207
|
File details
Details for the file pretty_mod-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13ef85cacad121ff632c9f70890a4349ff42c280b063dc1deae1b9857e86227e
|
|
| MD5 |
1577f4f241259ac27d07b32f160ab01a
|
|
| BLAKE2b-256 |
c49f46aee0050230259460c695982dc1cec944fab0df7dd9a7b7be0346c8a774
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
356689983308bdd7a43ef87487be057b47df30061315eea7d42542ed2aad9853
|
|
| MD5 |
cd7e44a2eb4b33281f2294e6d0a6c46b
|
|
| BLAKE2b-256 |
c78c8c143ddb9974f4e5ad160a2b66448861cd7e58ae0b85027f6414fa436410
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-win32.whl.
File metadata
- Download URL: pretty_mod-0.2.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab75f5a3fc43977b085ecc543f616572476fd7adb86b30795f8d62021ca66469
|
|
| MD5 |
58481ffd661af8893216be5545603594
|
|
| BLAKE2b-256 |
4ba8b014da630b1d2e2e2fc5132066645b24f7260bd83ea73008022afc933c77
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
492b685bd54d5eaab4756daf0fd4b2a52d09db9631767cf946e45afe3cf58bfa
|
|
| MD5 |
dd05e1102b441e4c734de1468a20eb44
|
|
| BLAKE2b-256 |
11df51baad4c17e52aaf84df82c06db432a20cff27f37a2f0bb9d97c0aa4c5b3
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
637c9cc9c410ac8a4df229b82ac9cd74fe072bdf5c231c499d59ce9db4aa0d0e
|
|
| MD5 |
b3dc4d5c7dea8009d54a0bc876bf4031
|
|
| BLAKE2b-256 |
8f45b0827a14ff0fc2f9b39f75e0bb06911bc890acabec8260241e4b36cb743f
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3a8e28ffa5f4a6354e4b28fb91b548d7cc904628b7f2bb5f222f8ff8c952da3
|
|
| MD5 |
49efdc2b400ad4535b8b9a86949b7c84
|
|
| BLAKE2b-256 |
5e5749f73a4975864fdcc8c96db8e5920e5b8fea9778fecce1a6ce77cf536a23
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
138806041031bd5d0d1c795c6d97dc0f7962cbadea23ad7f63bfa609f4126ec3
|
|
| MD5 |
9ec746e7c3950f944f581d9826cb2d53
|
|
| BLAKE2b-256 |
96ee1f364e3ab35cdcac98834a6d2d46a22d0f6c2b859ed987516e60f3093a03
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
526649694fd26f4304ca2fbd44e840cca7ef1aff784cc02d528d2043fb2a1324
|
|
| MD5 |
0c4a98640a2a7fabc12f081ce5d56d8f
|
|
| BLAKE2b-256 |
5783555922c3fda87852832dcdb8d3fbd65f04ff548040310c3165ee841eae37
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5673475997825ebc6b4a03208550eaa1118983cb131ca76c6eae4b1577841b8
|
|
| MD5 |
e60e4d21259c0ac781d5623b598051db
|
|
| BLAKE2b-256 |
9517de17bc9014d34fa804f26f3525bba14a531df867d78444adc64eb49491f9
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26f869de3b2f6c921b6639a964c202522e916160728ae7af51fc89355e2a4657
|
|
| MD5 |
a24b2c495b1889be7957e595669db317
|
|
| BLAKE2b-256 |
6eeb815f712dca43b48b376b6a3fb6ef601c9845631f554c87d9d33358c7d059
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1de8610c26fdf2fdfcc26a38f0caae0ac515fc88565d70a8b854779cb9a13292
|
|
| MD5 |
a0f84c8cd3ebc0b50f8dd9f28fd81afc
|
|
| BLAKE2b-256 |
07eaf086da3f440f528557b714485563c1fa234896041de5442fc8288e4376df
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc445560f84af349cd1e342c5fa3ec19b0dd45fcad2867cff4554db41f5afbf9
|
|
| MD5 |
04971ee90d0fcd424ee008d8dfbfc961
|
|
| BLAKE2b-256 |
c023b57b05ac8a29b7c32acc0210e76b678b08088baf742799c954c296e4e0d6
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a66912d5ef094363a2b27a89a7afab38279312ed0660e8d27a22a91a8fe4500f
|
|
| MD5 |
081c99957bbeb23dc066214d99a7457b
|
|
| BLAKE2b-256 |
f15d6f517dbfcaaf1f5c320d5fda7cbc671c5108fbf6bb1489a3ca76c9202f8b
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e61328cb93f5ad47e4f9535d9e0c2b8d3bbbcf9ba31340b60dcb04ff35dc043
|
|
| MD5 |
9e19b1b61c84dbbacef517cf3c4d2c4b
|
|
| BLAKE2b-256 |
255b64646de4e86daf5897e2d5f01b291588f0210e9145e93f997b17b8cc8a29
|
File details
Details for the file pretty_mod-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7dddeebf14ad80fa135e7feade7d6c7394958eecf66565e594112112d11ab71
|
|
| MD5 |
6214fae01b1456f78920d9dd1f5cab80
|
|
| BLAKE2b-256 |
747383bf710d772e254e45bc11a3a0847f68aea45be6635b72139b71afbc2c96
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0fb2708c670482162d017c13ebe111f3ffaa94cb068340e7f5c1a97982db9ad
|
|
| MD5 |
30d1e4ab3c0d6ef3e4bf695c6372a480
|
|
| BLAKE2b-256 |
cf5c65f741a8e9a23e2d0c02edc874ac9e7f03be9820086415a26c239a86b19a
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-win32.whl.
File metadata
- Download URL: pretty_mod-0.2.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
361237a096bd9bbfb85bafa242a1429731b3b745753bcf1c42e7023a5cc66dd6
|
|
| MD5 |
8bc21dcfe0bfa8cc956a68f023c24039
|
|
| BLAKE2b-256 |
3a1f4dd4bd32f6cde5aea66a327a84ec28340519948dcc87edf1c3a6c408f138
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecf5d87881447c96d00eab10a958217a681498ca64d7b100ded8446b15db5367
|
|
| MD5 |
260d698c244daa891538ebf9569ae049
|
|
| BLAKE2b-256 |
da116ab19f6217f852ad365cb53ee14218866eec4aa0ad12834dd59f31579730
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9da2345ca44666c97b9227ad699880373e5b8b627d9901cc807a9bafc6c41ec6
|
|
| MD5 |
0ddf8556c41d235d930a72785aefe03b
|
|
| BLAKE2b-256 |
6947a7dc5efaa15509c5b29f6e4d4929713a5b9fd1b37b13211f8bacaa31c8ea
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10021cd54218e99dccd0211481b7c9efc10a2a060bc782e4956e0b1bd2ef9ed2
|
|
| MD5 |
677602d2f01afcc0114bc29c3534a1f0
|
|
| BLAKE2b-256 |
79bab480853c2259da7a1f94bce1053a47dbc8e865ea0e0d00745204953b611d
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d3cb54725606dbdad6d0af2e4045dde6e41ef479d151da7b4ae828e22e5943
|
|
| MD5 |
36ee5fe23058db8103050f85f46aa59e
|
|
| BLAKE2b-256 |
e072041ff9fee2d49ae18257101758f9c85d4aece9a74203d999516150045f41
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
966ae67d38965d871948dcd00aba74d485ef9fc896a7bc96a31bd172eab6a793
|
|
| MD5 |
ca742cd42a69f1390f8a230ce1c5749f
|
|
| BLAKE2b-256 |
400347b9199eaa7c3bc10b38064cf337781710eac257ab5e9168986c9306b3b2
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b817e4d2ac0ae98f580af2bb1880211b7f35fb4911404393d1a9d26f2a5feb0
|
|
| MD5 |
e9d4f115344864b1d749741c16d5f3f3
|
|
| BLAKE2b-256 |
9e9b3093db6503ade7bef607998ba5bf0cb0a34aa86b085628c6c37891ed900d
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4525cd389077a811faf342f0c31a0320ea608db83528e509e0cf073252525d6b
|
|
| MD5 |
2446f73669bf9b622e24398d5ba44491
|
|
| BLAKE2b-256 |
d5fa8e2204d0e6955d7afc47c6b4d6bf5b1c45cc6ddb6d31eefc3ab1924d9d7a
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45ddb854cec7668b01765122b21cea695097706242b97ba8cdcaa3c9fed4b672
|
|
| MD5 |
3b8b8ae2eb0f2dfe9af368c5b280b246
|
|
| BLAKE2b-256 |
49d8d0babb24087d5e032756968909db48667f587c729def27125ddfb74929c1
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1965904359ebe63c6e59d5ce7a50d48825d9095c3cb460233b58d6d04a9e85a8
|
|
| MD5 |
ca433ec5e39ac39d1b8edcab509c2723
|
|
| BLAKE2b-256 |
02778a20b16698b5e75138b9d23706af6417fafd184ddf6080652a8e0f770259
|
File details
Details for the file pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a4af112dcd9b89840329fcb249b6445fa02114c3a287ce623fa40f64a09efe4
|
|
| MD5 |
5f81f70d5e513d8bee720e2096a13e9b
|
|
| BLAKE2b-256 |
ed2aa76147195ab14647acf3acd674056e5dd7654a10ca3249a98d197603fa4e
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76b230cc073fb3a91fe8f3d59a896ad6dbe1e78d121b52215fa2b6866a5ba9be
|
|
| MD5 |
19a557ec37f96c00f00393a0a384ed2f
|
|
| BLAKE2b-256 |
def56c321992c077c7c2fe00a7d9d265761f46eb1965c6b069cafdabcb7e3c22
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-win32.whl.
File metadata
- Download URL: pretty_mod-0.2.2-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02ed34b2ad380207b8dd9157167c911772ffd1cdf4e3c38d791bbaed2063f129
|
|
| MD5 |
bfa8288f39e98a6efe293b7d038a5ae5
|
|
| BLAKE2b-256 |
8c23bf608620fcc8f819bcf83ca75cc6f5bb8e6a15ec4a573d372353947fa2c9
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e0325c388e3c4f92849f5ad542298bbb774d4dac67695ca35709285f19afb11
|
|
| MD5 |
f2eaa45268f7d1b0ae56f5b942b0d157
|
|
| BLAKE2b-256 |
be7bc1c85f48f3ed36503b490983a6cd1576045fbfa659c9951b1875da95b26b
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ecbbc86f2a4a7fbb2744a259d35aa8754bcd194deeb216e0f7c494d5e23e87c
|
|
| MD5 |
f7835ae3c1ba5aa8a1d116db2a6eafba
|
|
| BLAKE2b-256 |
0fe2742bf27a7fb681d41bf3b544553a7e2abf73526f99bb774d2fbe6afd4688
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0a3c9334af701d2e7ec6ef856e6a8c893ad4d513d3de9f444bbd66a7dfe3e27
|
|
| MD5 |
b3e5b7105bd2b55ae28204aaa0bd1210
|
|
| BLAKE2b-256 |
a3e295849947b781d10126b81df9aee2640c627955c33534fd1c07d45b2d55d8
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ab4aee08d93d8a5cea7ee6c33a826ea9f8f02b18a8f29ddb206374605ece1ba
|
|
| MD5 |
4ea6969005a77f8eb924d8891778f81b
|
|
| BLAKE2b-256 |
c6b58e49eb7dd12a4b57e4db46ef9742dd3ad45bfbf5cf5117fb4ecfb58c8efe
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbd30886a403177ca111fcc14078fbb9306ad228b9c47a92bd4de444cc2f166a
|
|
| MD5 |
abba018b06aee7f4649c716f3553b045
|
|
| BLAKE2b-256 |
7a7ddea48f26599973623e3b482f5ad35e6de71edd6ee8e39f262a7154e1dbf5
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de047f32c4811186040a4c52c0284f4a86b8746f56f6a2f5e6f6d19c82943f17
|
|
| MD5 |
3d90fba3078ecf1f3cd514aabeb85da2
|
|
| BLAKE2b-256 |
d1ca5863fe8384f5d520dfe8463e6a51b8e515b2ee985d5844e1fd664f930d6f
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f701bd2b15bfbb2430d4e357a1b24e32ddc97cd08d7f1e2f377c285167eaa9f4
|
|
| MD5 |
b74e3b1c4bf4bfaaf6d34c2ca7b36ca9
|
|
| BLAKE2b-256 |
a373cb6f60f81a4b71af2595bff1e576d224902717e38e054e9d6e319efd3c9f
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
add02cc7b21044f5c5eaee1aa55f4558286aff7fcd9b674af5bd6abb53d48517
|
|
| MD5 |
cb4700a640628e6c9628bb96ec7bae2c
|
|
| BLAKE2b-256 |
6a86d5a860b94f0553730b444ff1e2bc5bd399659448e9c8de9e13eaf2878079
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a4b075391929da49de450305ed446ff373243bbe69efe722f50606c9142cef5
|
|
| MD5 |
e5eba13e9d2bc8816d241006c1d03d0a
|
|
| BLAKE2b-256 |
88044bb7c0fec3bc3ec22149879231c527fe911081191ea6ab0f77b379853a4d
|
File details
Details for the file pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fffab705546a896d7d7a1fd493cf3336a776f94aa4120fc65cda93b230c3d455
|
|
| MD5 |
70ed83bb24174f5fa9c157f8caacd88a
|
|
| BLAKE2b-256 |
713450c21fc8036e2793d5ec10590c89641f11b15ca69a29aadda3bbbcab3c4b
|