Metadata-Version: 2.1
Name: ppprint
Version: 0.1.0
Summary: An easy to use Python Pretty Print
Home-page: https://github.com/sylvelk/ppprint
Author: Sylvain El-Khoury
Author-email: sylvelk@gmail.com
License: UNKNOWN
Project-URL: Bug Report, https://github.com/sylvelk/ppprint/issues/new?template=bug_report.md
Project-URL: Feature Request, https://github.com/sylvelk/ppprint/issues/new?template=feature_request.md
Project-URL: Documentation, https://github.com/sylvelk/ppprint/tree/master/ppprint
Project-URL: Source Code, https://github.com/sylvelk/ppprint
Keywords: print pretty console progress bar
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Python Pretty Print

A simple and lightweight Python library to use as a replacement of the default `print()` function.

Full documentation available on [Github](https://github.com/sylvelk/ppprint/tree/master/ppprint). Feel free to submit any [feature request](https://github.com/sylvelk/ppprint/issues/new?template=feature_request.md) or [bug report](https://github.com/sylvelk/ppprint/issues/new?template=bug_report.md) !

## Getting started

### Download and install

```bash
pip install ppprint
```

### Standard use

```python
from ppprint import ppprint
```

### JavaScript-like use

```python
from ppprint import console

console.log("Hello World !")
console.warn("Careful ...")
console.error("Ooops something went wrong !")
console.info("Climate change is real.")
console.debug("this code works")
```


