Quickstart¶
Installing IMAPClient¶
imapclient is listed on the PyPi. The easiest way to install it is to use pip or easy_install:
$ pip install imapclient
# or
$ easy_install IMAPClient
The source distributions of all IMAPClient versions are available at http://menno.io/projects/IMAPClient/. Alternatively you can also use the PyPI page at https://pypi.python.org/pypi/IMAPClient/.
To install from source run:
python setup.py install
The project is packaged using Distribute (mostly compatible with setuptools) and all the usual setup.py installation options are available. See http://packages.python.org/distribute/ for more info.
Connect to a server and send our first commands¶
TODO