Last updated:
0 purchases
pprinty 1.1.0
pprinty
pprinty is a Python package for beautiful printing of objects.
Installation
pip install pprinty
Usage
>>> from pprinty import pprint
>>>
>>> pprint({"a": {"d": "e"}, "b": "f", "c": ["I read the letter.", "Stood up.", "Sat down.", "Pondered for a minute."]})
{
'a': {
'd': 'e'
},
'b': 'f',
'c': [
'I read the letter.',
'Stood up.',
'Sat down.',
'Pondered for a minute.'
]
}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.