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