Metadata-Version: 2.1
Name: rpass
Version: 0.0.1
Summary: A simple commandline app for generating strong random passwords
Home-page: https://github.com/surajkarki66/rpass
Author: Suraj Karki
Author-email: suraj.karki500@protonmail.com
License: MIT
Keywords: rpass,generate,passlist
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE

# rpass

simple command line app for generating strong random passwords. It also shows all the passwords you generated.

## Installation

### Using Pip

```bash
  $ pip install rpass
```

### Manual

```bash
  $ git clone https://github.com/surajkarki66/rpass
  $ cd rpass
  $ python setup.py install
```

## Usage

```bash
  $ rpass [Options]
```

**Options**

-h, --help<br>
Display help

-v<br>
Display version

-l, --length LENGTH<br>
Passwords should contain LENGTH characters. Defaults to 12.

-ns, --no-symbols<br>
Don't use symbols

-nd, --no-digits<br>
Don't use digits

--upper<br>
Use only upper case letters

--lower<br>
Use only lower case letters

---

## Help

```bash
  $ rpass --help
```

## Examples

Below are some examples of rpass usage.

- Generate password:

```bash
  $ rpass
```

Your password is 9CI=OydGufZm<br>
Saved! to clipboard

- Generate password with eight characters:

```bash
  $ rpass -l 8
```

Your password is TgRt6ZU?<br>
Saved! to clipboard

- Generate password with all upper case letters:

```bash
  $ rpass --upper
```

Your password is 8#ZS"=]FG#qW<br>
Saved! to clipboard

- Generate password without symbols and save:

```bash
  $ rpass -ns -s
```

Your password is D3PDbbePwcYE<br>
Saved! to clipboard<br>
Saved! to file<br>


