skadogg / personal-tv-guide

Python-based JustWatch scraper
GNU General Public License v3.0
6 stars 7 forks source link

🔐 Masked password input in auto_sign_in.py #78

Closed code-master-ajay closed 7 months ago

code-master-ajay commented 7 months ago

This fixes #71

I have replaced

password = input("Password:")

with

password = getpass.getpass("Password: ")

This will make it such that the password is not visible when typing.

I have also moved the saving credentials code down After the user is logged in successfully, so that the credentials are saved only if the login is successful.