/ test_cli.py
test_cli.py
1  #!/usr/bin/env python3
2  import getpass
3  
4  username = input("Username: ")
5  password = getpass.getpass("Password: ")
6  
7  print(f"\nUsername: {username}")
8  print(f"Password: {password}")