/usr/share/doc/python-demjson/README.txt is in python-demjson 1.6-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 'demjson' is a Python language module for encoding and decoding JSON data.
REQUIRES PYTHON 2.3 OR HIGHER, DOES NOT WORK IN PYTHON 3000 (3.x)
To install, type:
python setup.py install
or optionally just copy the file "demjson.py" to whereever you want.
See INSTALL.txt for mo detailed instructions.
In addition to the module "demjson", there is also an included script
"jsonlint" which is meant to be used as a command-line tool. You can
invoke "jsonlint --help" for its usage instructions.
The module is self-documented, so within the python interpreter type:
import demjson
help(demjson)
or from a command line:
pydoc demjson
This software is Free Software and is licensed under the terms of the
GNU LGPL (GNU Lesser General Public License). More information is
found at the top of the demjson.py source file and the included
LICENSE.txt file.
Written by Deron Meranda
http://deron.meranda.us/python/demjson/
|