Metadata-Version: 2.4
Name: passwordtoolpro
Version: 1.0.0
Summary: Python Password Utility Library
Author: KHAN
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# PasswordTools

PasswordTools is a simple Python library for password utilities.

## Installation

```bash
pip install passwordtools
```

## Features

- Password Generator
- Password Strength Checker
- OTP Generator
- PIN Generator
- Username Generator
- Passphrase Generator
- Password Entropy Calculator
- Hashing
- Password Validation
- Password Policy

## Example

```python
from passwordtools import *

password = generate()

print(password)

print(check(password))

print(generate_otp())

print(generate_pin())

print(generate_username())

print(generate_passphrase())

print(calculate_entropy(password))

print(sha256(password))
```
