tags:

views:

84

answers:

1

does python have built in libraries for accessing email?

smtp, pop3, mime parsers etc?

(coming from .net where these libraries are usually from 3rd party commercial companies)

+3  A: 

Absolutely:

They are all included in the Python standard library.

RichieHindle
Python also has excellent documentation at http://docs.python.org including the Library Reference which includes all the above and much more.
Peter Hansen