5.0.0 Import a Password from a file stored outside your code
Example:
#create a text file and add your pw to the text file
# store the path to the password file
path_password = '\path\to\where\your\password\textfile\'
# read in the file containing your password and save your password as a var
file_password = open(path_password, "r")
password = file_password.read()