Metadata-Version: 2.4
Name: randpassgen
Version: 0.1.0
Summary: A simple random password generator for Python.
Author-email: Charles Shaju <charlesshaju00@gmail.com>
License: MIT License
        
        Copyright (c) 2025 Charles Shaju
        
        Permission is hereby granted...
Project-URL: Homepage, https://github.com/charles-shaju/randpassgen
Keywords: password,generator,random,security
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# randpassgen

A simple and customizable random password generator for Python.

## Features
- Choose length
- Enable/disable uppercase, lowercase, digits, and symbols
- Easy and lightweight

## Installation
```python 
pip install randpassgen
```

## Usage
```python
from randpassgen import generate_password

pwd = generate_password(length=16, symbols=True)
print(pwd)
```
