Metadata-Version: 2.4
Name: pylockgen
Version: 1.3.1
Summary: Secure password generator and strength checker
Home-page: https://github.com/unknownmeovo/pylockgen
Author: Hadi Reza
Author-email: hadiraza.9002@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/unknownmeovo/pylockgen/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Security
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# PyLockGen

![version](https://img.shields.io/badge/version-1.3.1-blue.svg)
![license](https://img.shields.io/badge/license-MIT-green)

**PyLockGen** is a simple and secure Python module that can:
-  Generate strong passwords
-  Calculate entropy of a password
-  Check password strength

## Installation

```
pip install pylockgen
```

## Usage
```
import pylockgen

# Generate a secure password
password = pylockgen.generate()
print("Generated:", password)

# Check entropy
print("Entropy:", pylockgen.entropy(password))

# Get strength 
print("Strength:", pylockgen.strength(password))

```

## License
This project is licensed under the MIT License.
MIT © 2025 Hadi Raza
