Metadata-Version: 2.1
Name: pwdsafe
Version: 1.0.0
Summary: Python package to check if a given password is safe to use.
Home-page: https://github.com/arunnalla/pwdsafe/
License: MIT
Keywords: password checker,pawned,safe password,password
Author: Arun Nalla
Author-email: hello@arunnalla.com
Requires-Python: >=3.6.2,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.27.1,<3.0.0)
Project-URL: Repository, https://github.com/arunnalla/pwdsafe/
Description-Content-Type: text/markdown

<div align="center">
  <h2>pwdsafe</h2>
</div>

Python package to check if a given password is safe to use.

pwdsafe is a thin wrapper around [have i been pwned](https://haveibeenpwned.com/) that checks if a given password is compromised.

### Install

```sh
pip install pwdsafe
```

### Usage

```python
from pwdsafe import is_safe

is_pwd_safe = is_safe("password")
```

