Metadata-Version: 2.4
Name: password-gen-demo95
Version: 0.1.0
Summary: A simple, customizable random password generator
Author: Abhishek
Author-email: fortune.air9@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# Simple Password Generator

A simple Python package to generate secure random passwords.

## Installation

You can install this package via pip:

```bash
pip install simple-pass-gen-your_username
```

*(Note: Replace `your_username` with the actual name you publish it under)*

## Usage

```python
from simple_pass_gen import generate_password

# Generate a default 12-character password
password = generate_password()
print(f"Generated Password: {password}")

# Generate a 16-character password with no symbols
custom_password = generate_password(length=16, use_symbols=False)
print(f"Custom Password: {custom_password}")
```
