Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/farcaller/bplist-python

Apple binary Property List reader/writer for Python
https://github.com/farcaller/bplist-python

Last synced: 2 months ago
JSON representation

Apple binary Property List reader/writer for Python

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")