Metadata-Version: 2.4
Name: pasgen
Version: 0.5
Summary: Password Generator For Python
Home-page: https://github.com/yavuzkanat/PasGen
Author: ahmetyavuzkanat@outlook.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# 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
```python3  
    pip install pasgen
```

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

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

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

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

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

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

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

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