Metadata-Version: 2.1
Name: pprinty
Version: 1.0.0
Summary: A package for beautiful printing of objects.
Home-page: https://github.com/Abstract-X/pprinty
Author: Abstract-X
Author-email: abstract-x-mail@protonmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# pprinty

[![PyPI version](https://badge.fury.io/py/pprinty.svg)](https://badge.fury.io/py/pprinty)
[![Python](https://img.shields.io/badge/python-3.7%2B-blue)](https://www.python.org)
[![GitHub license](https://img.shields.io/github/license/Abstract-X/pprinty)](https://github.com/Abstract-X/pprinty/blob/main/LICENSE)

`pprinty` is a Python package for beautiful printing of objects. 

---

### Installation

```commandline
pip install pprinty
```

---

### Usage
```python3
>>> 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.'
    ]
}
```


