Metadata-Version: 2.1
Name: rrprettier
Version: 0.1.0
Summary: My awesome Python project
Author: RadoTheProgrammer
Author-email: rado@arazakar.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
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
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# RRPrettier
A tool to prettify data of python objects

A simple example:

```python
import rrprettier
data={
"name": "John Doe",
"age": 30,
"city": "New York",
"isStudent": False,
"courses": ["Math", "Science", "English"],
"address": {
    "street": "123 Main St",
    "zipCode": "10001"
}
}
rrprettiernew.pprint(data)
```
