OLD | NEW |
(Empty) | |
| 1 Metadata-Version: 1.0 |
| 2 Name: simplejson |
| 3 Version: 2.1.0 |
| 4 Summary: Simple, fast, extensible JSON encoder/decoder for Python |
| 5 Home-page: http://undefined.org/python/#simplejson |
| 6 Author: Bob Ippolito |
| 7 Author-email: bob@redivi.com |
| 8 License: MIT License |
| 9 Description: |
| 10 simplejson is a simple, fast, complete, correct and extensible |
| 11 JSON <http://json.org> encoder and decoder for Python 2.4+. It is |
| 12 pure Python code with no dependencies, but includes an optional C |
| 13 extension for a serious speed boost. |
| 14 |
| 15 simplejson was formerly known as simple_json, but changed its name to |
| 16 comply with PEP 8 module naming guidelines. |
| 17 |
| 18 The encoder may be subclassed to provide serialization in any kind of |
| 19 situation, without any special support by the objects to be serialized |
| 20 (somewhat like pickle). |
| 21 |
| 22 The decoder can handle incoming JSON strings of any specified encoding |
| 23 (UTF-8 by default). |
| 24 |
| 25 Platform: any |
| 26 Classifier: Intended Audience :: Developers |
| 27 Classifier: License :: OSI Approved :: MIT License |
| 28 Classifier: Programming Language :: Python |
| 29 Classifier: Topic :: Software Development :: Libraries :: Python Modules |
OLD | NEW |