Metadata-Version: 2.4
Name: pretty_warnings
Version: 0.1.2
Summary: A Python module for displaying formatted warnings.
Author-email: Hal Kolb <hal@kolb.com>
License: MIT License
Project-URL: homepage, https://github.com/hal609/pretty_warnings
Project-URL: repository, https://github.com/hal609/pretty_warnings
Project-URL: bug-tracker, https://github.com/hal609/pretty_warnings/issues
Keywords: warning,formatting,text,pretty,python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: license-file

# pretty_warnings

A Python module for displaying formatted warnings.

## Installation

```
pip install pretty_warnings
```

## Usage

```python
from pretty_warnings import warn

try:
    bad_function()
except Exception as e:
    warn("Bad function has run.")
```
