gmail icon indicating copy to clipboard operation
gmail copied to clipboard

A Pythonic interface for Google Mail

Results 61 gmail issues
Sort by recently updated
recently updated
newest added

I'm not sure if this project is still active or if the devs want to port over to python 3, however, for a personal project, I used this this repo....

When I try to import the lib with Python 3.7. ``` ModuleNotFoundError: No module named 'exceptions' ```

I noticed the sent_at attribute was showing a different value than what it was showing in my gmail inbox. I used the information found [here](https://docs.python.org/2/library/email.util.html) to make sure the timezone...

``` AuthenticationError Traceback (most recent call last) in () ----> 1 g.login ('**********', '**********') /home/debdut/Code/workspace/gmail/gmail/gmail.pyc in login(self, username, password) 104 self.fetch_mailboxes() 105 except imaplib.IMAP4.error: --> 106 raise AuthenticationError 107 108...

Is there a way to mark an email as not spam using this API?

No module named 'utf' python3

Quick (and ugly) fix for UTF-8 characters on email subject causing UnicodeEncodeError exception due to default ASCII encoding.