A cross-platform Python module for entering passwords to a stdio terminal and displaying a **** mask, which getpass cannot do.
Project description
Stdio Mask
A cross-platform Python module for entering passwords to a stdio terminal and displaying a **** mask, which getpass cannot do.
Installation
To install with pip, run:
pip install stdiomask
Quickstart Guide
The getpass.getpass()
function in the Python Standard Library won't display "mask" characters as you type; it only displays nothing as you type. If you want mask characters to appear, you can use the stdio.getpass()
function instead.
Typical usage:
>>> import stdiomask
>>> stdiomask.getpass()
Password: *********
'swordfish'
>>> stdiomask.getpass(prompt='PW: ')
PW: *********
'swordfish'
>>> stdiomask.getpass(mask='X')
Password: XXXXXXXXX
'swordfish'
>>> stdiomask.getpass(mask='') # Falls back and calls getpass.getpass()
Password:
'swordfish'
Contribute
If you'd like to contribute to Stdio Mask, check out https://github.com/asweigart/stdiomask
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file stdiomask-0.0.3.tar.gz
.
File metadata
- Download URL: stdiomask-0.0.3.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50445c2d6859fc753ca4dee199bfb71417f56c3f2037189948f29598962d6315 |
|
MD5 | 9280cbfe32177d00fb3219bbd2a23df7 |
|
BLAKE2b-256 | 98492a3a3dbe70ac4da9db6e0a2ada3541fac348fa1e4e53399400bd40916147 |