Initial import to Tizen
[profile/ivi/python-simplejson.git] / PKG-INFO
1 Metadata-Version: 1.0
2 Name: simplejson
3 Version: 2.6.0
4 Summary: Simple, fast, extensible JSON encoder/decoder for Python
5 Home-page: http://github.com/simplejson/simplejson
6 Author: Bob Ippolito
7 Author-email: bob@redivi.com
8 License: MIT License
9 Description: simplejson is a simple, fast, complete, correct and extensible
10         JSON <http://json.org> encoder and decoder for Python 2.5+.  It is
11         pure Python code with no dependencies, but includes an optional C
12         extension for a serious speed boost.
13         
14         The latest documentation for simplejson can be read online here:
15         http://simplejson.readthedocs.org/
16         
17         simplejson is the externally maintained development version of the
18         json library included with Python 2.6 and Python 3.0, but maintains
19         backwards compatibility with Python 2.5.
20         
21         The encoder may be subclassed to provide serialization in any kind of
22         situation, without any special support by the objects to be serialized
23         (somewhat like pickle).
24         
25         The decoder can handle incoming JSON strings of any specified encoding
26         (UTF-8 by default).
27         
28         
29 Platform: any
30 Classifier: Intended Audience :: Developers
31 Classifier: License :: OSI Approved :: MIT License
32 Classifier: Programming Language :: Python
33 Classifier: Topic :: Software Development :: Libraries :: Python Modules