Getting csv files from your gmail

TL;DR If you want to skip all the details in this post I've put together a Github repo that makes getting csv data from gmail as simple as: from gmail import * service = get_gmail_service() # get all attachments from e-mails containing 'test' search_query = "test" service = get_gmail_service() csv_dfs = query_for_csv_attachments(service, search_query) print(csv_dfs) here … Continue reading Getting csv files from your gmail

Perception is Everything…as far as I know (and S3 Buckets)

So we've just started transitioning to using AWS S3 buckets at work (finally!).  Moving away from a Windows OS fileserver that was being used to store data for people using both windows and unix ec2 instances. Switching to s3 and moving our data in, will make it much easier for us to write code that … Continue reading Perception is Everything…as far as I know (and S3 Buckets)