Pretty formatter enables pretty formatting using hanging indents, dataclasses, ellipses, and simple customizability by registering formatters.
Project description
prettyformatter
Pretty formatter enables pretty formatting using hanging indents, dataclasses, ellipses, and simple customizability by registering formatters.
Installation
Windows:
py -m pip install prettyformatter
Unix/MacOS:
python3 -m pip install prettyformatter
Imports
from prettyformatter import PrettyDataclass, pprint, pformat, register
Basic Usage
Long containers are truncated.
pprint(list(range(1000)))
"""
[0, 1, 2, 3, 4, ..., 997, 998, 999]
"""
Large nested structures are split into multiple lines, while things which (reasonably) fit on a line will remain on one line.
Notice that trailing commas are used.
Notice that multi-line dictionaries have key-value pairs indented at different levels.
pprint([{i: {"ABC": [list(range(30))]} for i in range(5)}])
"""
[
{
0:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
1:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
2:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
3:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
4:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
},
]
"""
The current depth and indentation size can be modified.
pprint([{i: {"ABC": [list(range(30))]} for i in range(5)}], indent=2)
"""
[
{
0:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
1:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
2:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
3:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
4:
{'ABC': [[0, 1, 2, 3, 4, ..., 27, 28, 29]]},
},
]
"""
Dataclasses are supported by subclassing the PrettyDataclass.
from dataclasses import dataclass
from typing import List
bit_data = list(range(1000))
@dataclass
class Data(PrettyDataclass):
data: List[int]
print(Data(big_data)) # Normal print.
"""
Data(data=[0, 1, 2, 3, 4, ..., 997, 998, 999])
"""
@dataclass
class MultiData(PrettyDataclass):
x: List[int]
y: List[int]
z: List[int]
print(MultiData(big_data, big_data, big_data))
"""
MultiData(
x=[0, 1, 2, 3, 4, ..., 997, 998, 999],
y=[0, 1, 2, 3, 4, ..., 997, 998, 999],
z=[0, 1, 2, 3, 4, ..., 997, 998, 999],
)
"""
Custom formatters can be registered.
import numpy as np
@register(np.ndarray)
def pformat_ndarray(obj, specifier, depth, indent):
with np.printoptions(formatter=dict(all=lambda x: format(x, specifier))):
return repr(obj).replace(\"\\n\", \"\\n\" + \" \" * depth)
pprint(dict.fromkeys("ABC", np.arange(9).reshape(3, 3)))
"""
{
'A':
array([[0, 1, 2],
[3, 4, 5],
[6, 7, 8]]),
'B':
array([[0, 1, 2],
[3, 4, 5],
[6, 7, 8]]),
'C':
array([[0, 1, 2],
[3, 4, 5],
[6, 7, 8]]),
}
"""
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 Distribution
File details
Details for the file prettyformatter-1.0.2.tar.gz
.
File metadata
- Download URL: prettyformatter-1.0.2.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 727acb7ee424d32aa27ca137c43bbe80d810184f3266c1e88d84b752ada344c1 |
|
MD5 | fe8929ada06e4d238052cc4562274a0d |
|
BLAKE2b-256 | 8b383db95a14cbda527401c7e9741aa6ef46861bafaf0424b1d3e8e6ce7e25f9 |
File details
Details for the file prettyformatter-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: prettyformatter-1.0.2-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b93167abcf867c31d1156197b4f024b21d937d227de174094ffd42f7ccdb61d |
|
MD5 | eaf70ec19f451df45a4abdb948e6e496 |
|
BLAKE2b-256 | f9d2607ba6015421a497c58249c6a6eeecb28376c27313463fbae7251698ea93 |