Metadata-Version: 2.4
Name: PasGen
Version: 0.7.0
Summary: This is a Python package to generate a password easily in one line. You can use your projects for random fill during project development.
Author: Ahmet Yavuzkanat
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: license-file

# Passgen (Password Generator For Python)

This is a Python package to generate a password easily in one line. You can use your projects for random fill during project development. 

## Installation
```bash  
pip install pasgen
```

## Usage 
```python3 
from pasgen import Pasgen
test = Pasgen()
print(test)
```
## Parametres

### lenght (default = 7)
```python3
Pasgen(length=10)
```
This parameter is the password length that you created.

### puncChars (default = False)
```python3
Pasgen(puncChars=True)
```
This parameter adds punctuation characters.

### lowerCase (default = True)
```python3
Pasgen(lowerCase=True)
```
This parameter adds lowercase characters.

### upperCase (default = True)
```python3
Pasgen(upperCase=True)
```
This parameter adds uppercase characters.

### Base64(default = False)
```python3
Pasgen(Base64=True)
```
This parameter encodes the password in base64.

### ROT13(default = False)
```python3
Pasgen(ROT13=True)
```
This parameter encodes the password in ROT13.

### ROT47(default = False)
```python3
Pasgen(ROT47=True)
```
This parameter encodes the password in ROT47.
