I recently made a custom email sending function, here is a snippet:
def send_custom_email(recipient, custom_message):
...
gmail_user = 'myemail@gmail.com'
gmail_pwd = 'mypassword'
...
Since the project is open source, I don't want to hardcore the password as it will be stored publicly on Github for anyone to see. Are their any ways I can hide this password? How exactly do I do so? Examples would be helpful.