Top "Imaplib" questions

Python module to provide an Internet Message Access Protocol (IMAP) client implementation.

TypeError: initial_value must be str or none, not bytes in python 3?

Here is my code: import imaplib from email.parser import HeaderParser conn = imaplib.IMAP4_SSL('imap.gmail.com') conn.login(…

python python-3.x imaplib
use imaplib and oauth for connection with Gmail

I want to use Oauth to connect to Gmail in Python. Right now I've got the xoauth.py script from …

python django oauth imaplib
Parsing IMAP responses in python

I am using imaplib to work with imap in python, however it looks like it doesn't have means to parse …

python imap imaplib
I cannot search sent emails in Gmail with Python

I am trying to search for messages in the Sent (actually i care for both) but I only get incoming …

python gmail imaplib
How do I download only unread attachments from a specific gmail label?

I have a Python script adapted from Downloading MMS emails sent to Gmail using Python import email, getpass, imaplib, os …

python gmail attachment imaplib
Get the Gmail attachment filename without downloading it

I'm trying to get all the messages from a Gmail account that may contain some large attachments (about 30MB). I …

python gmail attachment imaplib
How do I reply to an email using the Python imaplib and include the original message?

I'm currently using imaplib to fetch email messages from a server and process the contents and attachments. I'd like to …

python django email mime imaplib
How to efficiently parse emails without touching attachments using Python

I'm playing with Python imaplib (Python 2.6) to fetch emails from GMail. Everything I fetch an email with method http://docs.…

python parsing gmail imap imaplib
Problem deleting emails in gmail using imaplib

I try to remove message from inbox folder and all alright, but when i switched to All Mail folder the …

python gmail imap imaplib gmail-imap
Fetch an email with imaplib but do not mark it as SEEN

I want to parse some emails from a user 's inbox but when I do: typ, msg_data = imap_conn.…

python gmail imaplib