![alt text][logo]

[![N|Solid](https://www.python.org/static/community_logos/python-powered-w-100x40.png)](https://www.python.org/)
PrettyOutput allows you to print pretty colors with ease. What more do you want?

### Usage
```py
import prettyoutput

prettyoutput.info('Well, isn't this neat?')
prettyoutput.success('Yes! Yes it is.')
prettyoutput.error('Oh noes!')
prettyoutput.warning('Get outta here!')
```

# PrettyOutput also supports printing without args!
```py
import prettyoutput

prettyoutput.info()
prettyoutput.success()
prettyoutput.error()
prettyoutput.warning()
```

Notice when executed, everything is aligned perfectly!

# Got the time? We do!
```py
import prettyoutput

prettyoutput.error(time=True)
```
