added example code that uses the urls
[wikipedia-api-cdsw] / PKG-INF.simplejson
1 Metadata-Version: 1.1
2 Name: simplejson
3 Version: 3.4.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+
11         and Python 3.3+.  It is pure Python code with no dependencies,
12         but includes an optional C 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 can be specialized to provide serialization in any kind of
22         situation, without any special support by the objects to be serialized
23         (somewhat like pickle). This is best done with the ``default`` kwarg
24         to dumps.
25         
26         The decoder can handle incoming JSON strings of any specified encoding
27         (UTF-8 by default). It can also be specialized to post-process JSON
28         objects with the ``object_hook`` or ``object_pairs_hook`` kwargs. This
29         is particularly useful for implementing protocols such as JSON-RPC
30         that have a richer type system than JSON itself.
31         
32         
33 Platform: any
34 Classifier: Development Status :: 5 - Production/Stable
35 Classifier: Intended Audience :: Developers
36 Classifier: License :: OSI Approved :: MIT License
37 Classifier: License :: OSI Approved :: Academic Free License (AFL)
38 Classifier: Programming Language :: Python
39 Classifier: Programming Language :: Python :: 2
40 Classifier: Programming Language :: Python :: 2.5
41 Classifier: Programming Language :: Python :: 2.6
42 Classifier: Programming Language :: Python :: 2.7
43 Classifier: Programming Language :: Python :: 3
44 Classifier: Programming Language :: Python :: 3.3
45 Classifier: Programming Language :: Python :: Implementation :: CPython
46 Classifier: Programming Language :: Python :: Implementation :: PyPy
47 Classifier: Topic :: Software Development :: Libraries :: Python Modules

Benjamin Mako Hill || Want to submit a patch?