Metadata-Version: 2.1
Name: sapass
Version: 1.6
Summary: With this module you can easy generate password in python projects
Home-page: https://github.com/hasansajedi/sapass
Author: hasan sajedi
Author-email: hassansajedi@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# sapass

First version of password generator for python projects

Install easy

Use Easy

Use python version bigger than 2.7

```python
import sapass

print(sapass.generate())
```

### you can use below parameters for class inputs
1. length
    Default length for password defined 8 character, by change this value you get new pass with another size.
2. passType
    ```python
    passType = {'mix', # alphabet + numbers + symbols
            'alphabet', # only alphabet
            'number', # only numbers
            }
    ```
3. includeSymbol
    Boolean parameter: if define 'True' generated password contains special characters such as {!@#$%^&*()}
4. includeUppercaseCharacters
    Boolean parameter: if define 'True' generated password contains uppercase characters such as {ABCDEFGHIJ...}


