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 viamaturinand published to pypi, install<0.1.0for a pure python version
# 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
ยป uvx pretty-mod sig json:dumps
๐ dumps
โโโ Parameters:
โโโ obj
โโโ *
โโโ skipkeys=False
โโโ ensure_ascii=True
โโโ check_circular=True
โโโ allow_nan=True
โโโ cls=None
โโโ indent=None
โโโ separators=None
โโโ default=None
โโโ sort_keys=False
โโโ **kw
# Auto-download packages from PyPI (no install needed!)
ยป uvx pretty-mod tree requests --quiet
๐ฆ requests
โโโ ๐ __all__: delete, get, head, options, patch, post, put, request
โโโ โก functions: check_compatibility, delete, get, head, options, patch, post, put, request
โโโ ๐ท classes: ConnectTimeout, ConnectionError, DependencyWarning, FileModeWarning, HTTPError, JSONDecodeError, NullHandler, PreparedRequest, ReadTimeout, Request, RequestException, RequestsDependencyWarning, Response, Session, Timeout, TooManyRedirects, URLRequired
โโโ ๐ constants: __author__, __author_email__, __build__, __cake__, __copyright__, __description__, __license__, __title__, __url__, codes
โโโ ๐ฆ adapters
โ โโโ ๐ท classes: BaseAdapter, HTTPAdapter
โ โโโ ๐ constants: DEFAULT_POOL_TIMEOUT, DEFAULT_POOLBLOCK, DEFAULT_POOLSIZE, DEFAULT_RETRIES
โโโ ๐ฆ api
โ โโโ โก functions: delete, get, head, options, patch, post, put, request
โโโ ๐ฆ auth
โ โโโ ๐ท classes: AuthBase, HTTPBasicAuth, HTTPDigestAuth, HTTPProxyAuth
โโโ ๐ฆ certs
โโโ ๐ฆ compat
โโโ ๐ฆ cookies
โโโ ๐ฆ exceptions
โโโ ๐ฆ help
โโโ ๐ฆ hooks
โโโ ๐ฆ models
โโโ ๐ฆ sessions
โโโ ๐ฆ status_codes
โโโ ๐ฆ structures
โโโ ๐ฆ utils
Installation
uv add pretty-mod
Usage
from pretty_mod import display_tree
# Explore a module structure
display_tree("collections", max_depth=2)
Example output
display_tree("collections", max_depth=2)
๐ฆ collections
โโโ ๐ __all__: ChainMap, Counter, OrderedDict, UserDict, UserList, UserString, defaultdict, deque, namedtuple
โโโ ๐ท classes: ChainMap, Counter, OrderedDict, UserDict, UserList, UserString, defaultdict, deque
โโโ โก functions: namedtuple
โโโ ๐ฆ abc
โโโ ๐ __all__: Awaitable, Coroutine, AsyncIterable, AsyncIterator, AsyncGenerator, Hashable, Iterable, Iterator, Generator, Reversible, Sized, Container, Callable, Collection, Set, MutableSet, Mapping, MutableMapping, MappingView, KeysView, ItemsView, ValuesView, Sequence, MutableSequence, ByteString, Buffer
โโโ ๐ท classes: AsyncGenerator, AsyncIterable, AsyncIterator, Awaitable, Buffer, ByteString, Callable, Collection, Container, Coroutine, Generator, Hashable, ItemsView, Iterable, Iterator, KeysView, Mapping, MappingView, MutableMapping, MutableSequence, MutableSet, Reversible, Sequence, Set, Sized, ValuesView
from pretty_mod import display_signature
# Display the signature of a callable (function, class constructor, etc.)
print(display_signature("json:loads"))
Example output
๐ loads
โโโ Parameters:
โโโ s
โโโ *
โโโ cls=None
โโโ object_hook=None
โโโ parse_float=None
โโโ parse_int=None
โโโ parse_constant=None
โโโ object_pairs_hook=None
โโโ **kw
CLI
Pretty-mod includes a command-line interface for quick exploration:
[!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
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.1.2.tar.gz.
File metadata
- Download URL: pretty_mod-0.1.2.tar.gz
- Upload date:
- Size: 76.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3091831effb42fe5c9b069138731d324dc1192dedc584d76b837e759d901c888
|
|
| MD5 |
c7451e58c2d3bae9fdfb6854bd926c2a
|
|
| BLAKE2b-256 |
e560d856ef5861a534e43833cd6d9bcf90ac62d786be2546e9ef6c7dda676006
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
7f6aed113b5f13eb24af62c2b517f252bb6bca740be1e914a85dd2e2f46db0c4
|
|
| MD5 |
560742b50270ae3513bbc953e3a34a00
|
|
| BLAKE2b-256 |
2568d81152c949f19b0effcc9c5eff80ec0d0d7643446b0484175655457d1763
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
cf72c718711e2d1a3b36c73056f4de5f7f04bc68b897e458e535eca3c91b57d3
|
|
| MD5 |
176232005799e247bec0136a8c384734
|
|
| BLAKE2b-256 |
d06d41180a888bf8777377004eb6c7dea771578829f8e9690168e6cdab2192ee
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
38cf1df239127600b1bbef91d7a68c5dd5a8ee157f59e2210bda36502a23bd6f
|
|
| MD5 |
074cf6eb3c7e0de1d2f5c9d86f54bc35
|
|
| BLAKE2b-256 |
65a6de8ac23b40e96239456808eb2a586da916828cc3dcf70265537700a11bea
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
5bd2e78782defd0bc25ab0c05d8559062796e54c3e62fdc78fd669f832ae59ba
|
|
| MD5 |
aee5f3aef732084783e94d8956be5071
|
|
| BLAKE2b-256 |
b054eaecc42177134855d555890f4b55446c2cc08eb314738ba91f6f9a45e1e6
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
36d75376dece4450fbbf073e5e6ec77350eb08d1fe88b37f1bf958e5aaa00d8b
|
|
| MD5 |
6fc433c54338e57d18c8a4b98804cc21
|
|
| BLAKE2b-256 |
2c25247716827e071533e0039bb878552e33cdd3d5eeb12b33491cf2b573eed4
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
932000a098a8a90290e9359cb84d046eec333d79cb9dea270da3f7774dad970e
|
|
| MD5 |
b419cc866e42d0efb2e7a1abebccd94d
|
|
| BLAKE2b-256 |
942734886b7ade4021b3ef4d9be93bf09d682cca13c4d5a6b021847cc44592bc
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
4da7311e4c30a89a2f99c43a82b6710f0b6c58d61b16d34a23b0e9ae443e6859
|
|
| MD5 |
c61d06827ada54f06b0edfadadb90dd2
|
|
| BLAKE2b-256 |
aae4a7f0b3324570533ff85fef9eb3cd8b9a45f02aa47b1d62628a3e2e2646e2
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
859606964d63af5a3d9732128a81b3fa34d8658502d4a3d8058a884ebacad617
|
|
| MD5 |
afedac8c069dcb7ad07c6f1deead46a7
|
|
| BLAKE2b-256 |
96456d2f90f038bbd2c9d6c56e437ae03b32a4a89048585fa0616ceec7ba77ef
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
1762f5ce4bbef3cec6b3667f49be4a2269a0b146f81737d957ed09c4972a0bbc
|
|
| MD5 |
8c86b34a43ff39d928e91fbcecd743c4
|
|
| BLAKE2b-256 |
61951e178aa2f6583b1fa9061a80a56512fe296eeb8396ad54b614a3bb45c255
|
File details
Details for the file pretty_mod-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
ba169512f551b1a6d8a3471a54c08d77683e0518591977f616e07d0b8edee117
|
|
| MD5 |
fcf80ac77d4d857bff5c8a7a2f8797ab
|
|
| BLAKE2b-256 |
93ffce6219388a54e5d7bfb86c552e0787995e018866b2a1ba268006b37c6d85
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
c67e5c6a381c090e867329451e01f193c1d717fcefb6ebd31f0d460b5a0e5678
|
|
| MD5 |
2559d16c0f8f9315ab8b03b9745dc1da
|
|
| BLAKE2b-256 |
93ffef7da7f3945e856f4f15671cf3bce13733d9294468eb23af7610bca27a82
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
59d97c3281beb1f9f39859bcdd9b0e40073411af63fc91ba164a5af485ecae99
|
|
| MD5 |
37a462b76598d157fa71e9db0ae04588
|
|
| BLAKE2b-256 |
190934832a03c3f61c9a2137b7f2d3a9706428a1462626ca2b2b27e6b15ca6f8
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
56f842f5658078a169487970f4edfd8d54599fb9d69ea486c1003f42e56d1812
|
|
| MD5 |
423030e3d7169c2323e5c03669fe4433
|
|
| BLAKE2b-256 |
215e2538bbcae46adfa60f3e5395f4dbcce830df30a8fb2ba0f09a8da0ccdb47
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
5fbc720d4e1452a0e7fa5421b20640debec185edeb98e83ba4c572a03525615f
|
|
| MD5 |
fa05f972a7786efcbe003295d8a170ab
|
|
| BLAKE2b-256 |
be63d479236ebffaee8ba05d224d12423a878e46bea560a3e4d861b293805378
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
29cc79d9424a612558f08d3916610823d9cef6d76e203ba18b2d8f0c290705ee
|
|
| MD5 |
7f3c7d050b8800e5e33a3c3240a3193d
|
|
| BLAKE2b-256 |
eb2ccf796692cd811e793e261fe60bb6a77bc10f443710fb2a5abcdd10e5dfd9
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
e177cca0a861e668301ea7b607b3509426fce569dd8df6dc2da970281cbf0de0
|
|
| MD5 |
9d65c63971d5709b0a3b091b7ac3c7c6
|
|
| BLAKE2b-256 |
c3a3d6ccba6e4bcb976ae097b5e8b952893ca6734876edb63f2f15fbff121954
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
1a1f6315d9da8605ff8e8d5113226422649b4247077f784f9deec2b71943833b
|
|
| MD5 |
1293ced9033f9ea18cdd39bfff890cc3
|
|
| BLAKE2b-256 |
8bbe59055c3c404578e833646d578ca7d575fb2e8f37d76636bd8f3e73dd7fdc
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
d5aa7b22007abee30607d038a78053e9039e151a8bf5d29ccd234b9214996419
|
|
| MD5 |
13756ddbf71c918f64a91b443fa9164c
|
|
| BLAKE2b-256 |
57c01f24e043d8b9176cbdd72918923540efb69e43ed16feb9f88ba47c3f492e
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
714bcf88111e2ccda9c47e228ba7fbc5f5d6d681e55f4328a79b42fe21dc2f29
|
|
| MD5 |
fab6330f57a0dbf8ddfc67214927293c
|
|
| BLAKE2b-256 |
829f250b318fb656b4b9c528d8fdad30f5870e8f042c61cb2009ab712801e194
|
File details
Details for the file pretty_mod-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
65c344371c5879c31681beda6284d6d8c87828bdc69038c34388edc4856e91bb
|
|
| MD5 |
5cc64665531a33fcbc3c4569225b390c
|
|
| BLAKE2b-256 |
dc91cc9e8cfc0db1c617518422724be9449cef48711f58f8a895e503a14a54ec
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
e19bc01e8b1068f7f6b44f7b6c4def6d0761e9a1a3a084f74e3471f6c01bbaa9
|
|
| MD5 |
cf94192c3cc11f408d7bdd3986c6c322
|
|
| BLAKE2b-256 |
24d9d0f1b77fda59b4c7e3c32effb4687e508997ff50aca1abdabfbd816a679a
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
520e3cb473caebcdeeb9ef45d8c12aec90ff8c658d5b6783ea83772c4a02d796
|
|
| MD5 |
3c3fe59c8021f90e808903beb4bc63c7
|
|
| BLAKE2b-256 |
41c7ea877acd96c7fceda76cd5222fa592f8ade77b9d8390405e69590d303eb8
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
00ae740adaed08f2a55cf726c80689aef8c65c5104c7811c98e029dc0aaf8977
|
|
| MD5 |
6ad03a273ea87b970df8286e2f33dc44
|
|
| BLAKE2b-256 |
64ff49f8d4e02576b6fb956a7c871ecefb1e72962cd3f6c863588b6782479c8d
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
6eead4b0d02e9fbe5cf0b42a8faea53068fb2c6608d8c11fbb746233151b3864
|
|
| MD5 |
5a9767dd52cd204f0c8474afc49cc479
|
|
| BLAKE2b-256 |
c2bbe0787af621ed14132ecd2baf45b2711e6ba97a780f37e9748c364c6ab1b3
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
28159ac2aa53058fdf75182e5125b7980cc314924bfe7346a0da3470e18f92b5
|
|
| MD5 |
10eba20372239efb2856d1eab0e96533
|
|
| BLAKE2b-256 |
5fc8527d4bc4d34eb574072b4b53a8981d18ebc715a7b900fbf0eb3337c3dffc
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
bb08c6cf05e380464141b4c9db1644f3f45e6d60dd36dc65b0f6a02a79813c65
|
|
| MD5 |
02b931fc14259e20b75477126f08c019
|
|
| BLAKE2b-256 |
b7d66371d79c8c75ad40b1acd322ee987bcb84427eb12632027778ee18e4a27d
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
55ed399b5a9bd2099f26baf1566708fcc4308ca24410a5a9320dc0935f3f2781
|
|
| MD5 |
c89fd3cec82b765ef854c8020329ebf7
|
|
| BLAKE2b-256 |
45746ac0d257cbe47de92ed13261fdfae209236d184c5f60e33c7b3a5dd244ed
|
File details
Details for the file pretty_mod-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
6299a9785af7067aaae6d44580ed2321bdf478a4c928c51712dcc1eef8b2b950
|
|
| MD5 |
fbda751e397a4ac6f6c19e48655832a1
|
|
| BLAKE2b-256 |
bd9c07d6cc26f4fc7378a22c5e0c380976cd001207a60534b219d0ee74405b01
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
657ae6434e632b54a3a26025720471bd5d20a65ced40d679cffab808eb57f691
|
|
| MD5 |
002daaf15be4cd5bb5ab41a7d7f529e4
|
|
| BLAKE2b-256 |
005747a8187b3b52bfe9b4191a93dd967d1c286db33b9b7537f63b89bcc3594b
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
d2ae8cba2aebc3c1cadb6ed81b3265b4fafde4334769e9fdeaefe60a6adc1a95
|
|
| MD5 |
9b8b38405c84b6381a71aaf80f03874d
|
|
| BLAKE2b-256 |
e4108c982c8551020e4d4bca09d2a79731dc16acbe593d18c77e403f90019d6b
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
b4f1e667fe20bc5b4e293bd622ff2fd92bcd930a8c1d81492e936ee503718f68
|
|
| MD5 |
42e132ea317393dff336f4ca96fd983a
|
|
| BLAKE2b-256 |
e7f864bf288bda454490f441102bfe6a34ea6bc66eaf6b77abf8baf397af62ea
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
a603d3ed17df062d6bb140ca4ad6080fc1091a35a1da469cb6e8f09d203f56ce
|
|
| MD5 |
d3d388ac7d8c1f52bffa33a63308ea75
|
|
| BLAKE2b-256 |
9ece436fdaf9e29ac7de3f56388ddb12d701e4e82135a87c2b862fc9bf4c4b6b
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
97954f2e5ab1e4381254b175b0b24a12da3f02434b480727f76b2e96066d1bff
|
|
| MD5 |
a82e559ff176f92b5c7bc62b8472543a
|
|
| BLAKE2b-256 |
386429288f9056e0c3ac78e5e111f76ca51f7d97932c56580b925a0808ac64a1
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
c0c4ab49be44d4b75e9dfc208491d86c1a59f55884d6f6fc292b420066318ad1
|
|
| MD5 |
477b683f5a754f0b7be48901ee49d642
|
|
| BLAKE2b-256 |
3c1f69130d23645fbf0980575e268127d27ef406a3e89d70eb369f0e6789cd46
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
421ff1ce8d9a20459531cbac8864eec348139c0026c517c40e4a514f18c1b2ab
|
|
| MD5 |
75d08b07857a87495030ec500a5704f5
|
|
| BLAKE2b-256 |
a1168d6bec28ceb3e7b69d9a189fa839a5998a8602526042cfae175eb8951816
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
54d890dd1933944f6108a83bc461ce9df8b83115b5360c3aebb779d61ff4943c
|
|
| MD5 |
31eeb0dcb8c6e99d446051e894dec82a
|
|
| BLAKE2b-256 |
bbf3d7b0de2961436d6c5acc3d868687c627ec11485cf16a328ec5ef61b3449f
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.7 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 |
8c21184a0e7eee9b826a1aca0daa9042d4a12b44ca580d7a4fffa7e7ab400c51
|
|
| MD5 |
cb5a085f30e96facbb4db0a6839654f3
|
|
| BLAKE2b-256 |
e0b5011a25c90cf959e529642125dff87122de6e076e541cdb4e43f8886605e5
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-win32.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
6d20432106ddacad861fe1340e98cb3322611578abc30658289555655d97c7d9
|
|
| MD5 |
b726b47cc518904c5fd0583fc2792ddc
|
|
| BLAKE2b-256 |
d0ec3e68b5def2f334a16df058d7216eaf47b9fdc7bd6ee9d3c7a52ba0b09b3c
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
f527949b433ae785f290639ef368c9051a0a76dc77be63d2269888d22b9dbfa7
|
|
| MD5 |
188c71d0fa411649866473e440e7bd12
|
|
| BLAKE2b-256 |
25055960a60642785e7b59f611ad192e326318a32a2c6a0b5f14d44ebb97093d
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
e26aae708599294132b5b035b72ca13bd6cb834174b9c98121948bd816889284
|
|
| MD5 |
c637e8b406dc4603089f45cfc2744a98
|
|
| BLAKE2b-256 |
d6cbd33ec4afe7b78e8ad9666f2c31716d72412cf35024eb89e289beb56ee8dc
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
51eca4cfa27ed474812a12c7ae94814d744d198bd28572f91e87328044523c83
|
|
| MD5 |
7e2b0b40c16b14ed10e404f210eb22ce
|
|
| BLAKE2b-256 |
a8541e1e3b3c5bafca77b163c67fa80ed13dabc4ac00ccbf22845f50b22a97b5
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
dcb1390cee58c4088f3ae3f6ed812df4a377c153eb84c4892367d32acc9c243f
|
|
| MD5 |
2b977289ff9568315790d0196a52ea6a
|
|
| BLAKE2b-256 |
34c3846e9c31a8bca640aefce2b231accc9117745a2f5a69eb751a3ac0007c9a
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
d4666a18c373c5d15ee9f31c0931439e9a8ab75bff8ea8ba2819f395d5b88440
|
|
| MD5 |
e322a437cc099a057191382ccca7ebd7
|
|
| BLAKE2b-256 |
9e237a7f64564331da9caacc6576a39950b261dcbf834256f82e403b44b7a565
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
e8646ada725818ac46961f32fedfc3d8f2f6efaf90ab4dcf30478c4470d5aa3b
|
|
| MD5 |
93d44573192776985d9c2435827d1989
|
|
| BLAKE2b-256 |
e17e14223c689fcd979c0d2cbf1cb3cd8c43ce336df6eef2e7c7774a42f3bb66
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
cb97a9fbeab73fcbb988477fb8d3a5503385395863b8128eced175f7a4d5561d
|
|
| MD5 |
015a5bd662e34eb2363fb94f2728357b
|
|
| BLAKE2b-256 |
7643cc5cd981baf40626a9bc9761d83b632aa1e83b8d0e90125633ce97342575
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
68bb49683b03c930bf24cce0281e2c4bcc575d45c28fbd6023df86b5d2038fc2
|
|
| MD5 |
8bbdd8b93613d0bddfc652bfa0658d40
|
|
| BLAKE2b-256 |
bc49c91f44482b808534ac251c99c8393dd36f709dbfe01c0d403e486a990fc4
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
480ec15c29210eadde59fe405854f3850bb8d678bb3b8c943327748afb1c02fb
|
|
| MD5 |
2590ddf2be2dcbfc47651cb38e0919db
|
|
| BLAKE2b-256 |
2e95ad736b2468f4629fafc18e8cd60e83b7c416e5bc7923b6f74eaea12e5939
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
c10194ff0ac71282fa52a70b43377e22f9a2101d25b9049bd6651fc46d0fece8
|
|
| MD5 |
b778d4386bdbf9efc2ad48fb8424ac8f
|
|
| BLAKE2b-256 |
31c3f5297cbba4ec8136043d0b8752d8c08c1f947aa3cbf863a145aa48571421
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 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 |
8bfbd3739bb647d0bdc72758c497caeabe6c1d891325e8282888706281918906
|
|
| MD5 |
7fdcbba470cb5e5f4c5bc9e413dd0eac
|
|
| BLAKE2b-256 |
9a9772c67c0a3d2d32585220b7c3916c0724e4b279d854d630a51f1506f2d055
|
File details
Details for the file pretty_mod-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 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 |
69877245d83529053b3a4f26e3ff874737458b212f9f053da5bb00eb8238111d
|
|
| MD5 |
4112ed0f19fac8b63e2d1c3ac946bd63
|
|
| BLAKE2b-256 |
107a6b6c178c58c736e8694fb62c202704bccfd557e179db3a3efa32aafc9ce3
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.7 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 |
176ffc69fe09cb09da416d797796d684b6d33bdf6d6fb9f1140cd0086711c7b4
|
|
| MD5 |
33804e678308dda3b9914f70bfe1bf65
|
|
| BLAKE2b-256 |
0972820d6ff8250360cfdedc424e22473a62ee30e25c0204d7e7a7586ea2fd21
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-win32.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
c1ddd693909252b096a95e1f330938d0fb73ded1c60393983b0c5bf3314da236
|
|
| MD5 |
59383310cb38c8ecafc5a64ea9f4e1f5
|
|
| BLAKE2b-256 |
198ee5de76a55e1a73297309adad6e7805cf4db8a0e120dd9ae887c5016f0531
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
5be3e08d6eadc56e5ac03fdf6d290d3f3096dadf946f70a2a389c53fcbe8d9cf
|
|
| MD5 |
5fda333ec768b90b150583eed9ac66df
|
|
| BLAKE2b-256 |
50c8e392b2cf29738974f5ca3556ed96ad42e2f483028dfdcebcea95e762d513
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
ba38b2b6dea1ac646ee1afd744191424cf551dd05effa2540d6c526cd83ea761
|
|
| MD5 |
5c801d3fdd03d9e201a594043f48ec4d
|
|
| BLAKE2b-256 |
08d1e53877e0dd881ea58846ea46cacf3ebdffb722dc7891518684502daa7bd4
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
b6036caa04e2c053b825688a41091b85fc7cf4112e49b75d25a3a871da699608
|
|
| MD5 |
c7de387c88980cfc2aaf339c40877d5e
|
|
| BLAKE2b-256 |
0e31aeab651b833668690a3af30d67faca35044113dc371e51eeb1f030075128
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
11e1bb71465c63912dba3f146b9f495fd77b27f61ad07d5c0cd13bcba270eb6a
|
|
| MD5 |
27c3d64de06a08edbacc9a4d6fc96dc2
|
|
| BLAKE2b-256 |
1a02c48f370e85e057228360fbb84a0c4aebc09f99a44fa70b2dd967daf4cc7e
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
7a382924da95145da875c48b9f6e550d6e8b6c219c2e2c0ecfb7db8e89535297
|
|
| MD5 |
71ca74fcc9730c575edb4ea9eb4a4d7f
|
|
| BLAKE2b-256 |
cbefec6c9edb20b05107faed3e1756f30c6b2404a11c4fce837dbfa8c0bac821
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
eb226a1726d86d6da21aedb6562d599628905e46386172a81685ffbea6b48bad
|
|
| MD5 |
36e56def64cb8ef3f0276baab97cad63
|
|
| BLAKE2b-256 |
5687bff095f235065f14d04cb24c494393c4796f75f99dacd2acec58b120914c
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
0bc5d00e246b5e997b12232d70803e5c880d938792cc4e32b3bfe89039f1bef3
|
|
| MD5 |
8f53e3244dd11363a8ccb64b68b5dc70
|
|
| BLAKE2b-256 |
fcd78f2a909e6bc58d0caf89ea3ccd84ab483a05cddc2174b0ea6aad3ff35d56
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
49adf9a2eaa1352a4d6589d9d061269b8db832bbfbf52aacde82e326316c828f
|
|
| MD5 |
52fdf685775a920bbc42648aedfe2077
|
|
| BLAKE2b-256 |
b47e0672d606357404d421a27781591aeb03eedb16cf75a1e4db4ce8260112db
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
d8e9779205f1722943b36da3bb402a6775d0414d23e2dedd8c7a876938367bbc
|
|
| MD5 |
9cfecaa6503e9027df30e9a74e02ce53
|
|
| BLAKE2b-256 |
4982a8be519a83ec4075c5c452cfaf67060111b7f3f3b87f5d47c2936aa25107
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
8ff5daf42945eb6ea763da4b41134fca4d7e18435b202b054e6c48f7691c52f8
|
|
| MD5 |
02da6876ae24db3fdb4919a02a9e1c2a
|
|
| BLAKE2b-256 |
f0584767e5a8ddb82e54963f4ba6f0b24ca42a6306df72b55a3e5e937ce505b9
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.7 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 |
c0b792c5a98224d5da8ce78025d71cc2eacde4147010d220dc998ada7f238f8d
|
|
| MD5 |
380867b275de6a9d0b88be2c1ee5da64
|
|
| BLAKE2b-256 |
a244e35347965e215aa38c67ec8c6c2a3a03a42ac2101dc843e468cd85867076
|
File details
Details for the file pretty_mod-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 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 |
56573d746d5d8d40713fb86bdfbcdc3ca41e25cb5cc85e7015b95d03a1a68d8c
|
|
| MD5 |
32a0beaf2fda00007d313c641fd237f3
|
|
| BLAKE2b-256 |
9cabb06d4b20ac58517b63620e8e745f14b1e80a1d2dcb7373bd4153fdd09e90
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.7 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 |
a37614160f2af9e1d402cf84062564e9c3d007b97532ab7ab8af4f5c5bc72521
|
|
| MD5 |
25de3a82444a99a6b9a009f08492ba6b
|
|
| BLAKE2b-256 |
efec9d9fd78c8e01c29de09a28756a3aa8ec1366e9c2c6da6ea6009c73d4645d
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-win32.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
3bcc7806ff5e58282851839dcd247ad8ac0389788f53a0b747666a8c03bae4cf
|
|
| MD5 |
8bf27f153c6767ca785fd7aeffb1e6d7
|
|
| BLAKE2b-256 |
65a5cc135b30e4150c8d4f8f1e0eb2f91aab93c0bcba6e15f53e7119dac658a9
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
816c35d328974bdd6405ccb47c5ff7bf343f37949a2c295dd475c4cb965555e7
|
|
| MD5 |
7e45832eea239247c7c178bde013412f
|
|
| BLAKE2b-256 |
29ca7e530c934ff627fe1551a3122295273d054d360b8af63746b91f373ad9ff
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
6230b68603c30cac1ec70d9eccbc6f94888c235d993798ed0e3b7b1d9a0e1f1d
|
|
| MD5 |
cbb7e4739965895349f6932e2b724b39
|
|
| BLAKE2b-256 |
bb60765f05d436e168e941fd26df96be2e53f50f9efa55eeafb900b8eaa883cd
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
4bbcb90d572141e81964687f691de7d2183b32cdc351bb5e6c8f44b41529c42e
|
|
| MD5 |
abaa501eba53bc4a1e0b9d36bc292ff9
|
|
| BLAKE2b-256 |
be7ff885dfaad81430249bc663f9c97b29eb16efdf036612e34786991ececb44
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
b43368bd692dae8aae295d2ce179a602f700dbb75ad6f4bd02514275071117c1
|
|
| MD5 |
5f4c1c7608695b2ad50c4e3e91dcc76a
|
|
| BLAKE2b-256 |
9b4a78e694bd2a00b5c63f0b7a5aa6bdae072164df058b9bdc93d146444daab7
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
0421b127a82c2bb7f6d597c6cdb3eae607266a4580bbe8eefa5b351db30006a2
|
|
| MD5 |
b9a47c5610e3fa2fb7ac273defd0ad54
|
|
| BLAKE2b-256 |
da877155d6bcb55b1ab7aa8118d25dc3a1dd3ee788539043bd2efe97dbeb29b7
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
ae02b7611b280e2470984fb02740058eb4e7a20d42fd8dd9e82d0d65ecc10df8
|
|
| MD5 |
b43af579a7113e7e0613110cfe0c8e59
|
|
| BLAKE2b-256 |
1c8fbc5ee6df3b9b097bd9fad1dba16b910615bc0a1a5a620931d798297d8199
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
2ae76c8b70a05e0cb1e8b06990375c252f75a0a07ad9761db3a87b21387641bb
|
|
| MD5 |
2a44d60d1d85f8d7499104d05ea64a02
|
|
| BLAKE2b-256 |
4429cd2861c408d1ed1d996a698028a584535a7e13ee00aba7ea29727defd35b
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
aac153ddadca8a443577d84f4e6264a9e09879f3be194368561ce486f1b6f6d6
|
|
| MD5 |
a6052cec14da5443a8290f9f6b1e251f
|
|
| BLAKE2b-256 |
cadec4011afd979d84564178a8e58265abd95b620c472f2f51516cc63448c781
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
7fab11371b3067c35fa93c978f5e2e36cd972e546c07a1a741ae7b5b67e022d6
|
|
| MD5 |
18a32f20036e50a8cc6134b78dfeeaa2
|
|
| BLAKE2b-256 |
0b2e49fa81979b2692bab034c0759cb6655fa0a4aa7bf94efdc1e8b2cd8e6469
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
faf5094c769b3d8430a91dd27a2ba092e00325e35d259f60e965766bb1cc9661
|
|
| MD5 |
d8ed076cdc8823127ff7386252777e5b
|
|
| BLAKE2b-256 |
7d2bdfbc8379692af6e3b0f03b9dc66ceedcfaba9ff40ce2f3649f3e60e6b15e
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
61b15a26c08959963a3342641f41c47c3f7d69646f6353b097f85e1750cae53c
|
|
| MD5 |
311ca8090e2f69aeb3bcce47b304830c
|
|
| BLAKE2b-256 |
62144aed7e2c3997a425a78269187d16f9f1315eb0c177ce7d8fb5e82c9ef03d
|
File details
Details for the file pretty_mod-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.9 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 |
0575aea1a6dbf49d6ad822cca8637995516ab2ac13450afdadff9d2fc83d71fc
|
|
| MD5 |
cc50c46e672790f54dc69f1a60277eb8
|
|
| BLAKE2b-256 |
cba34193751c213bcd43ebeab0183ebec34d24fd0f0641d084626604cfa9302c
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.7 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 |
b1a829afd92796c6a9709c21b7811fc04ef1bfab5c5bbf0080dc2b267a31c141
|
|
| MD5 |
181df9ceb30ae8dc2e45ad5a2996f491
|
|
| BLAKE2b-256 |
5f826c20125bf7d01552302f9c60bd4e64eb628ed153340039d353837b67efbe
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-win32.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
bf3604074e77628fc9ceecc5b666babc266eb1d2901685f780b1d5078def2a2b
|
|
| MD5 |
2b951dd7dbf15c84054a71deaf63cab4
|
|
| BLAKE2b-256 |
2a681995ba49a61ca03831ecd9501bdc5b2ce628767dda7869033b7c3bacd3ad
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
ab170e3edb437c63538af35abe22171122dc3b825a4867a71f2221efa1454dc8
|
|
| MD5 |
96fe9aef38b110ff977d28a47bf743da
|
|
| BLAKE2b-256 |
603e729c379b152ebd9361c4820754950f6747e13a342b3492e26bb565d9c9fd
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
db1423a7ef673c7555a7ba2aeb8e8235f6981fdff6d762aa059300068e653a7e
|
|
| MD5 |
cf9c93810fa31aacf51431cef06c6804
|
|
| BLAKE2b-256 |
b35bee1e189e89c06f6ff176c205abf4e7544e44188e3136f45a1c6378dbd654
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
d4e3ca52e66a5245d38aea43f8e2e2d42fc8695b1afb5648bff74a8eafd83eb5
|
|
| MD5 |
0878a755c2d0f84c8dd4019d84c722eb
|
|
| BLAKE2b-256 |
c93b46410eeea69cef684bc397e629ba55dd15d055cf8a3f04ade5c7e975c947
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
90b825418c19ff266688050b9ee9c2584f6cc6cfc1a067a4cde63e52ad3ce202
|
|
| MD5 |
93e6f58c6809e0256d959175eda99640
|
|
| BLAKE2b-256 |
1bd4c8820b9d2b75587d41ec2b41a499cbb3b958897036f9e42822bde34948ec
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
51c5822a3fda758c913a96afb6d990b365573913ba3778331a588d9d1964b5fa
|
|
| MD5 |
1d051a9e88477e229efcfab4cc295956
|
|
| BLAKE2b-256 |
683d6ec870f2a668f45a40f17142013b226a34ba402ae98a9c7c4d93b6b9872a
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
e7629a66a4870d0c94da2ba7010c63e798949c56c03b632cbc9e947ec6191518
|
|
| MD5 |
4beba41cfdb736aa838a06c7db243aab
|
|
| BLAKE2b-256 |
a9ae3397d46b4c01a1f9fd64d4b81115526a9f43074937b74e05b2b2d2799a50
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
9f7e0e8efed292aec9223e077b9df13c4b2c1cc1cd1459c204f0e093080d6a7f
|
|
| MD5 |
ad4c5ce1003cc255b573a3ade211c027
|
|
| BLAKE2b-256 |
98a7fce49c57c88577f0576bf53c7b58ca0fc8169d18a54020bd986f989bb035
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
10baa720fd7fae6ff89ccb17bc31860205542cd6261d5191374bc726af27c7cb
|
|
| MD5 |
5b2d54c6a3bf275ac1e118da977354a8
|
|
| BLAKE2b-256 |
b297a5e68787667521a05af1f719736ecb97d87046ae5e86a04254d94431bccd
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
a6346691c9c673c71722c6c5ac9ed25222b4db7d270c75aebece8e5cf294bc2c
|
|
| MD5 |
1aaffae6f7148011cbca16c7ff2e5aa1
|
|
| BLAKE2b-256 |
e247cebece1c695531007912e8b99e8c07ff1c030f8203ed648c708ae934ab63
|
File details
Details for the file pretty_mod-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
39ed835e19c8698a3d47de8053e533a7164bb5709bee984a8f47796147ef3207
|
|
| MD5 |
616f681a0323b92c7aac06f12d1da33e
|
|
| BLAKE2b-256 |
40c758b4e159b7900818ba0745053a74c04549e885ea633c80f749ff2bfd3426
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.7 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 |
ddc4b1d4284a4786635c740dcf30a3737461fb5607e9d2b76b8d32fe07e2422d
|
|
| MD5 |
f288af8ba6e3251768736e0d56819ad6
|
|
| BLAKE2b-256 |
2559d2d1ea76a110ed3b53454a80cf8ad8350de231ec4178dbe716b092c56d13
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-win32.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
74d6327a14f15aae9e6d70dafe4a19a57bb7c19e040c9413837c8c6a6f5b52fb
|
|
| MD5 |
e73ff4f93355d5a7d009ddbfdf50a013
|
|
| BLAKE2b-256 |
633ea83711ad8eebbc676049a8fd0592fada1cf6f7b78f97b1e86f07a018f718
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 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 |
ca59fb23c7d1312ff05fcf5a1048c051b9ecdbe1befd017ad1f0c2779f03828c
|
|
| MD5 |
48a2d602377a745c68d6373612736413
|
|
| BLAKE2b-256 |
8d9d81fc2576e64aa71c5931ac6fda55c02f2b15c00e7184927c6e707555a3ed
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
f0b61ffd58cd1afdf0b1fd9419f003859e7c59645032ae9ec4774391c88bf85a
|
|
| MD5 |
66980a2d78540c4a8bd9ccd2fd50c675
|
|
| BLAKE2b-256 |
b1cb8695648c3677ac2e35a143e45d22a713b12e584c25e4192f8c28f568a4e1
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.1 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 |
7a571f79be2aaa76503b210ae08b0c4a4a2e80ff3b9a11a0852ed3d2162278e6
|
|
| MD5 |
b1a3b76e9a710e8e9bb176b7ee167ff1
|
|
| BLAKE2b-256 |
79251703f19527e548bf67b42463330e079bcc4eaf3de237e65fae9960c20ce5
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 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 |
5c5126491256ab733ce237faf8798697bdabf3b9f9a3501ddb280f77dbf47dc9
|
|
| MD5 |
b8c5412c6fe90d9abc9b2d1e851f3426
|
|
| BLAKE2b-256 |
f4b85ebfb7ca8625542a37396d54d405c6b43eb4335803e079f2d4a20ccb377e
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 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 |
5f10526e8b355557a018fd88bb6a0aaa609477e37eb6a7c39f19d70a8e6e56e0
|
|
| MD5 |
e5d52069c3b8a427d5eb968d79bdf0a0
|
|
| BLAKE2b-256 |
bf2bb9ddc432a066d9345a2977a54d7f705c2e81c7572d2ffd2b44b15363d7d4
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.1 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 |
850ae9f4439998db3362ce45c23bfa24afa21ffe0cd8a7e758a739bea26f9683
|
|
| MD5 |
b19c365c9aa8af449ea94bee59759146
|
|
| BLAKE2b-256 |
c52277d152f5b0d5530b59a3feef9fdd5aa1bf4570576d7144cefff468d308eb
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.0 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 |
d155ded9e55cb43cae35b910302ae13867a07308b3bdd1ab566db108cd97fa0f
|
|
| MD5 |
e7194df4a7a04f96a9e2f107e4861295
|
|
| BLAKE2b-256 |
5d92810970c5533df21c57799d82573650b7172775557406ec216aded2e641da
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
dcb0fb4d619f7f1e9a061a2244bc26500378f4384150552f010ab6b145b5b4bb
|
|
| MD5 |
14357c2fc948981d0c13a8e2430176dc
|
|
| BLAKE2b-256 |
f4a7e856c4d86bbf79b6865387772c0e0c094cf73e4808eabd75942f6c7feaa8
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.1 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 |
1865484d2ff4277c8edc69e531c6fc6ddebfd922b2d5aad565793f8fa8a1fceb
|
|
| MD5 |
d8384755f612c79951a7d0a370f23fbc
|
|
| BLAKE2b-256 |
180f1f81f81795c5e1cc8e73a22f83e8c7b91368f7db2c6c62e9422071f9a828
|
File details
Details for the file pretty_mod-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pretty_mod-0.1.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 |
4b1c9f823709d5d9b15dbe5d7ddacf91c278a43b76ff58ebf6ff3e05d6b9edcb
|
|
| MD5 |
81fdd94bf5985dd72070c2eccc3d2163
|
|
| BLAKE2b-256 |
d3b92961a3f270223f7a7c42048a733179fb41316381f700eaf598f85060fe50
|