https://github.com/farcaller/bplist-python
Apple binary Property List reader/writer for Python
https://github.com/farcaller/bplist-python
Last synced: 3 months ago
JSON representation
Apple binary Property List reader/writer for Python
- Host: GitHub
- URL: https://github.com/farcaller/bplist-python
- Owner: farcaller
- License: mit
- Created: 2009-11-19T18:16:53.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2020-11-18T16:06:52.000Z (over 4 years ago)
- Last Synced: 2025-04-16T11:06:28.331Z (3 months ago)
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 76
- Watchers: 5
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bplist-python
Apple binary Property List reader/writer for Python## Simple parsing
from bplist import BPListReader
with open('file.bplist', 'rb') as fp:
reader = BPListReader(fp.read())
parsed = reader.parse()
# Now 'parsed' is a dictionary of values.
## even simpler run
python3 -m bplist [file_path]
(auto-outputs file_path+".json")