Python imap lib

Where can I find a complete description of all imap4 functions; especially with a possible parameter option and return values ​​and / or data created by some functions? http://docs.python.org/dev/library/imaplib simply lists all the functions, but not their possible parameters and the data that they can create.

+5
source share
2 answers

The imaplib module is a really thin shell over IMAP4rev1 and expects you to know almost all of this. The protocol is described in RFC 3501 (although imaplib was actually written against the obsolete RFC 2060. ) There are several less ... esoteric IMAP4 implementations for Python, such as those twisted.mailthat are much more difficult to work with.

+4
source

@ thomas-wouters correctly points to RFC3501, but there are many extensions.

Here are a few more extensive lists:

0
source

All Articles