imaplib
Stdlib — NetworkingPython 2.0+Advanced
IMAP4 protocol client for reading email
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import imaplib print(f"Module: imaplib") print(f"Contents: {dir(imaplib)[:10]}")
The imaplib module is part of Python's standard library. IMAP4 protocol client for reading email.
Try in PlaygroundTags
stdlibnetworkinginternet