Metadata-Version: 2.4
Name: rufat_project
Version: 0.1.0
Summary: A secure password generator with strength checker
Author-email: Rufat Musayev <musayevrufat13@gmail.com>
Project-URL: Homepage, https://github.com/musayevrufat/rufat_project
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# rufat_project

A secure password generator with strength checker.

## Installation

```bash
pip install rufat_project
```

## Usage

```python
from rufat_project import generate_password, generate_passphrase, check_strength

# Generate a 16-character password
password = generate_password(length=16)
print(password)

# Generate without symbols
password = generate_password(length=12, symbols=False)
print(password)

# Generate a passphrase
phrase = generate_passphrase(word_count=4, separator="-")
print(phrase)  # e.g. "brave-ocean-tiger-frost"

# Check password strength
result = check_strength("MyP@ssw0rd!")
print(result["level"])     # "strong"
print(result["score"])     # 6
print(result["feedback"])  # suggestions to improve
```
