An open API service indexing awesome lists of open source software.

https://github.com/j16n/getpass3

A module similar like getpass in python except that echos are being encrypted before being displayed in the terminal.
https://github.com/j16n/getpass3

python27

Last synced: 11 months ago
JSON representation

A module similar like getpass in python except that echos are being encrypted before being displayed in the terminal.

Awesome Lists containing this project

README

          

# getpass3

A module similar like getpass in python except that echos are being encrypted before being displayed in the terminal.
You can even change the the symbol with which the echos are being displayed.
The default symbol for the encryption is '*'.

## Usage:
Similar like getpass.
```python
#INPUT
import getpass3
getpass3.set_echo = '#' # Setting the symbol for encryption which will going to be displayed. (Optional)
getpass3.getpass("Password: ") # Giving a label to the input (One arguement is mandatory).
# getpass2.getpass("") (If you don't want to give any label)

#OUTPUT
#Password: ####
```

## Dependency
*Works currently with **Python 2.7.x**.*

#### Linux and MacOS 10.x.x
Requires getch 1.0
#### Windows
Requires colorama 0.3.9