ImapClient
index
imapclient.py

This file implement the ImapClient class.

 
Modules
       
imaplib

 
Classes
       
builtins.object
ImapClient

 
class ImapClient(builtins.object)
    ImapClient(server='', port=None, username=None, password=None, ssl=True, debug=0)
 
This class is a imap client to receive email.
 
  Methods defined here:
__init__(self, server='', port=None, username=None, password=None, ssl=True, debug=0)
Initialize self.  See help(type(self)) for accurate signature.
create_connection(self)
This method make imap client and authentication.
end_connection(self)
This method close imap client and connection.
get_all_mail(self, reverse=False)
This method is a generator to get all emails.

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
Data
        __all__ = ['ImapClient']