Date: Time:
Welcome, Log in by clicking  Here!

Parsing with python cont….

This is a copy of my code. I don’t have my github set up. import imaplib import email import yaml with open(“credentials.yml”) as f:content = f.read() my_credentials = yaml.load(content, Loader=yaml.FullLoader) user, password = my_credentials[“user”], my_credentials[“password”] imap_url = ‘imap.gmail.com’ # Connection with GMAIL using SSLmy_mail = imaplib.IMAP4_SSL(imap_url) # Log in using your credentialsmy_mail.login(user, password) # Select […]

Posted on August 18, 2023 in coding by henryoviedo93
Tags: ,

Parsing with python

Downloading your data from google takes DAYS If you’re anything like me, your Gmail account tends to accumulate a lot of emails over time. While you can resort to exporting your data to free up some space, this process can be quite time-consuming, often stretching over hours or even days. However, with the advancements of […]

Posted on August 18, 2023 in coding by henryoviedo93
Tags: ,