simplegmail icon indicating copy to clipboard operation
simplegmail copied to clipboard

A simple Gmail API client for applications in Python

Results 52 simplegmail issues
Sort by recently updated
recently updated
newest added

Hello, please I need help building a buildozer recipe from your awesome project. Thanks.

Hi, This is a really useful project - thank you. One small niggle: I have a script which checks my inbox every few minutes, but unfortunately simplegmail seems to leave...

This may be related to KrishGarg's issue. It seems that I am periodically required to re-authorize via the Google web interface, despite the readme saying this should only occur once....

Hello. This is my first contribution to open source. I have addressed the issue #55 by unification of message text (plain or html) into a single 'alternative' Multipart MIME, to...

FOUND: The error appears occasionally (1-2 times from 10) HERE IS SOURCE: ``` from simplegmail import Gmail from simplegmail.query import construct_query def get_verification_code_from_inbox(): print(f"EMAILS RECIPIENT-> {EMAIL_RECIPIENT}") email = Gmail() query_params...

give an update and add reply message ``` def _create_reply( self, sender: str, to: str, subject: str = '', msg_html: str = None, msg_id: int = None, msg_plain: str =...

First of all , thank you for this package. It hides a lot of complicated stuff that one has to go through while finding in google API docs. I would...

This adds all the fields returned by the labels.list API. Example: ```python gmail = simplegmail.Gmail() labels = gmail.list_labels() for label in labels: print(label.name, label.id, label.type, label.messageListVisibility, label.labelListVisibility) ``` It also...

My editor removed trailing spaces, sorry 'bout that. Example usage: ```python from simplegmail import Gmail gmail = Gmail() messages = gmail.get_unread_inbox() message = messages[0] if message.attachments: for attm in message.attachments:...

From https://support.google.com/mail/answer/7190 Example usage: ```python from simplegmail import Gmail from simplegmail.query import construct_query gmail = Gmail() query_params = { "list": "[email protected]", "chat": "movie", "deliveredto": "[email protected]", "size": 1000000, "larger": "10M", "smaller":...