You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make command line execution easier, add in a check to prompt for e-mail address and password when the environment variables are not populated.
Proposed change
At the end of the imports, add:
import getpass
Just after the environment variable read in:
if not USERNAME:
USERNAME = input('Enter e-mail address: ')
if not PASSWORD:
try:
PASSWORD = getpass.getpass()
except Exception as error:
print('ERROR: ', error)
The text was updated successfully, but these errors were encountered:
Description
To make command line execution easier, add in a check to prompt for e-mail address and password when the environment variables are not populated.
Proposed change
At the end of the imports, add:
Just after the environment variable read in:
The text was updated successfully, but these errors were encountered: