Metadata-Version: 2.1
Name: pypassword
Version: 0.1.0
Summary: Simple password generator module
Home-page: https://github.com/Pipoline/random-password
Author: Peter Gonda
Author-email: peter@pipoline.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# random-password

This is a simple password generator written in python.

[![Build Status](https://travis-ci.org/Pipoline/random-password.svg?branch=master)](https://travis-ci.org/Pipoline/random-password)
[![Docker pulls](https://img.shields.io/docker/pulls/pipoline/random-password.svg)](https://hub.docker.com/r/pipoline/random-password)  
If you want to buy me some coffee :D [![ko-fi](https://www.ko-fi.com/img/donate_sm.png)](https://ko-fi.com/G2G8LB08)

## Usage

Basic usage:

```
usage: pypassword.py [-h] [-s SIZE] [-x]

optional arguments:
  -h, --help            show this help message and exit
  -s SIZE, --size SIZE  Random string size
  -x                    When set, use special characters
```

 Get random password with default size(14):

`docker run --rm pipoline/random-password`  
output:  
`a8xlHjNEQ1sLFj`

When you want to change password length just add -s/--size parameter e.g.:

`docker run --rm pipoline/random-password -s 20`  
output:  
`bjMhaBqnw5Y8TvsmNLZV`

Usage with special characters:  

`docker run --rm pipoline/random-password -s 20 -x`  
output:  
```O`v5|!XnV#N@[UXtg%Ei```



