Hi folks,
Here’s a short code snippet that demonstrates how to request sensitive information from a Python application without displaying the details on screen as the user enters it. The tool to use is a library called getpass as well as the subprocess library. Here it is.
import subprocess info_process = subprocess.run([ 'python', '-c', "print(import('getpass').getpass('Enter the details here'))" ], stdout=subprocess.PIPE) details = info_process.stdout.decode('utf-8').strip()
That’s all for now. Happy coding