Is there Any way to convert Text to Dots while Inputting In python 3 Terminal.
my Code is:
[........
user = input('Enter Your UserName:')
pass = input('Enter Your Password:')
........]
I know the Module getpass.But it don't work in Terminal , It gives warning:
Warning (from warnings module):
return fallback_getpass(prompt, stream)
GetPassWarning: Can not control echo on the terminal.
Warning: Password input may be echoed.
If it can work without warning and hide text,Please tell me.
Is there any Otherway somthing like:
import sys
shell = sys.stdout.shell
shell.show input as '0';
....
I am creating a script that asks the user to give Password but it looks bad if Password is being showed while typing.
I am here with a hope that you may help me.
If you want more information,I am ready to provide to you.
Thanks....