plistlib
Stdlib — MiscPython 2.0+Intermediate
Read and write Apple plist (property list) files
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 plistlib print(f"Module: plistlib") print(f"Contents: {dir(plistlib)[:10]}")
The plistlib module is part of Python's standard library. Read and write Apple plist (property list) files.
Try in PlaygroundTags
stdlibutility