Metadata-Version: 2.1
Name: pylockgen
Version: 1.6.7
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
Description: # PyLockGen
        
        ![version](https://img.shields.io/badge/version-1.6.7-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
        -  Check passwords that if they are in the breached list 
        
        ## Installation
        
        ```
        pip install pylockgen
        ```
        
        ## Usage
        ```
        import pylockgen
        
        # Generate a secure password
        password = pylockgen.generate()
        print(f"Generated: {password}")
        
        # Check entropy
        print("Entropy:", pylockgen.entropy(password))
        
        # Get strength 
        print("Strength:", pylockgen.strength(password))
        
        # Check if the password is breached
        print("Boolean:", pylockgen.isbreached(password)) # Returns a boolean
        
        print(check_breach(password)) # Returns a string
        
        ```
        
        ## License
        This project is licensed under the MIT License.
        MIT © 2025 Hadi Raza
        
Platform: UNKNOWN
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
