pankon / bplist-python

Apple binary Property List reader/writer for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Apple binary Property List reader/writer for Python

License:MIT License


Languages

Language:Python 100.0%