Skip to content

Tag: imaplib

How to search for email where the subject contains numbers

I’m looking for emails where the title has information on how many Bitcoin I received, but as there’s a number in the email title, I want a way to find emails where the number is equal to or greater than that number. Example… I have an email title like “You received 0.000666703 BTC&#82…

Parse multipart/related emails

I’m trying to parse emails and convert tables within them into pandas dataframes. Since some of the emails are multipart, I took some code from this answer. The following code works fine but it breaks with multipart/related emails (no tables are found). Here’s the header of one of the multipart/re…