Python module for reading/editing/writing .bsi files. See http://bitsquid.blogspot.com/2009/10/simplified-json-notation.html for documentation on the format.
- Install requirements: `pip install -r requirements.txt
- Run tests:
nosetests
- To install, run
python setup.py install
import bsi
data = open("filename.bsi", 'r').read()
bsi_object = bsi.bsi_parse(data)
print bsi_object.get('zombie1')
This is not a polished product and will need some work in order to be easier to work with. For example, the BsiArray class should implement an iterator. I'll gladly accept pull requests!