I'm developing a python application that will work through the terminal
At some point, I need to login:
print('É necessário informar suas credenciais para se comunicar com a API')
email = input('Email: ')
password = input('Senha: ')
The problem is that the output on the console looks like this:
É necessário informar suas credenciais para se comunicar com a API:
Email: [email protected]
Senha: senhaTeste
I need the password field not to display the characters, to replace with "*" or something like:
The output that I look for in the terminal is something like this:
É necessário informar suas credenciais para se comunicar com a API:
Email: [email protected]
Senha: **********