Metadata-Version: 2.4
Name: DuckyPass
Version: 1.0.3
Summary: A Python module for generating passwords using the DuckyPass API.
Home-page: https://github.com/maxrhys/PythonDuckyPassAPI
Author: Rhys Wills
Author-email: Rhys Wills <rhys@rwills.net>
License: gpl3
Keywords: password,generator,API,DuckyPass
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: license-file

# DuckyPassAPI

A Python module for generating passwords using the DuckyPass API.

## Installation

```bash
pip install DuckyPass
```

## Usage

```python
from DuckyPass import DuckyPassAPI

# Generate a single secure password
password = DuckyPass("secure", 1)
print(password)

# Generate 5 simple passwords
passwords = DuckyPass("simple", 5)
print(passwords)
```

## License

GPLv3
