eenblam

Results 12 comments of eenblam

Page is stuck scrolled all the way to the right in both Chrome and Firefox on Android. Using Reader View in Firefox did work, though. Since I'm here, I'll add...

I'm not in any way an email expert, but what do y'all think about POP? My understanding is that it's been deprecated in favor of IMAP, and the IMAP plumbing...

[Updated version](https://gist.github.com/robulouski/7441883#file-gmail_imap_python3-py) of the above imaplib example, this time compatible with Python 3.

Regarding the question of what to parse out of the email, would that functionality not be best left to `scraper.email_scraper`? (i.e. just call `self.scrape(msg)` as is currently implemented) EDIT: I...

Note that above I'm getting `(body, header, b')')` due to a silly choice of `message_parts` like `'(BODY[TEXT] BODY[HEADER.FIELDS SUBJECT TO FROM DATE])'`. If we just use `'(RFC822)'`, the parser can...

I'm currently working on this. I'll probably have a PR soon-ish for small stuff, but the more involved bits might have to wait until next weekend. If someone else wants...

What are our example use cases for handling these differently? Anything less straightforward than something like this? 1. Identify attachments 2. Write attachment to disk 3. Persist `email_body`, `email_header`, `(attachment_path,...

References relevant to this issue: - [IANA's tldr on Content Disposition](https://www.iana.org/assignments/cont-disp/cont-disp.xhtml) - [RFC2182 - Content Disposition](https://tools.ietf.org/html/rfc2183) - [email.message.EmailMessage](https://docs.python.org/3/library/email.message.html#email.message.EmailMessage) - [email.parser.BytesParser](https://docs.python.org/3/library/email.parser.html#email.parser.BytesParser)

@mlukjanska `libxml2` is a C library. You probably needed the development versions of `libxml2` and `libxslt`. I guess it's good that `easy_install` took care of that for you. @spizeck Is...

The directory structure described above is intended to keep the code provided by authors separate from the code you write. The main reason one might want both is to be...