poplib
Stdlib — NetworkingPython 2.0+Advanced
POP3 protocol client for retrieving 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 poplib print(f"Module: poplib") print(f"Contents: {dir(poplib)[:10]}")
The poplib module is part of Python's standard library. POP3 protocol client for retrieving email.
Try in PlaygroundTags
stdlibnetworkinginternet