Metadata-Version: 2.1
Name: chibp
Version: 1.1.0
Summary: A package for utilising the Haveibeenpwned API
Home-page: https://github.com/chrisdunne/hibp
Author: Christopher Dunne
Author-email: contact@chrisdunne.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

![PyPI](https://img.shields.io/pypi/v/chibp?style=for-the-badge)
![PyPI - License](https://img.shields.io/pypi/l/chibp?style=for-the-badge)

# chibp

## A package for interacting with the Haveibeenpwned API

Install package:

```
pip install chibp
```

Import the package:

```
import chibp
```

Example string request:

```
chibp.get("example@chrisdunne.net", API_KEY)
```

Example list request:

```
chibp.get(["example@chrisdunne.net", "example2@chrisdunne.net"], API_KEY)
```

