Metadata-Version: 2.1
Name: shifre
Version: 0.1
Summary: Shifre is a Python password generator library.
Home-page: UNKNOWN
Author: Yavuz Tezgel
Author-email: yavuztzgl@gmail.com
License: UNKNOWN
Keywords: python,password,password generator,secure password,security,secure,generator
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# shifre

Shifre is a Python password generator.

This library creates highly secure password with randomness and pure Python.



You can generate passwords like this:

```text

2X3i;6Z364dMR0v7SViyafwBx8>,20xybH232;Zp69875i!7LL")cN2F5rh^h

?r018u91>J0hEld6(NMC1Xot7el!ojh)7ualOxP

%Y85Ibq}:aEVjX0'6$C)>8>6L_7Abb#5+;Dvxi0-Le"

```



### Installation

```sh

$ pip install shifre

```



### Usage

```python

import shifre

# Character count, digit count, symbol count and allow upper case

# returns a string password

password = shifre.generatePassword(64,10,15,True)

```

