ABOUT
Python 2.x bindings for Parsley. Tested with Python 2.5 and 2.6.
INSTALLATION
= Get Parsley and Dependancies =
Download Parsley from http://github.com/fizx/parsley/tree/master following the installation directions located at http://github.com/fizx/parsley/blob/master/INSTALL
For Python 2.5, the simplejson library is required. For Python 2.6 and later, the stdlib json library is used.
= Install pyparsely =
sudo python setup.py install
= Example Code =
from pyparsley import PyParsley
#
#
parselet = PyParsley({ "title": "title", "links(a)": [ { "name": ".", "href": "@href" } ] }) json_string = parselet.parse(file = some_file, output = "json")
json_string = parselet.parse(file = "http://www.example.com/", output = "json")