Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hhatto/pyjsmn
Python extension for jsmn
https://github.com/hhatto/pyjsmn
Last synced: 2 months ago
JSON representation
Python extension for jsmn
- Host: GitHub
- URL: https://github.com/hhatto/pyjsmn
- Owner: hhatto
- Created: 2012-08-19T16:18:15.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-11-01T14:58:06.000Z (about 9 years ago)
- Last Synced: 2024-09-17T15:49:56.352Z (3 months ago)
- Language: C
- Size: 145 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
pyjsmn
======
.. image:: https://travis-ci.org/hhatto/pyjsmn.png?branch=master
:target: https://travis-ci.org/hhatto/pyjsmn
:alt: Build statusAbout
-----
pyjsmn is a wrapper for `JSMN`_ (minimalistic JSON parser).
pyjsmn is not support encoding method(obj->str)... _`JSMN`: https://github.com/zserge/jsmn
Installation
------------
from pip::$ pip install pyjsmn
from easy_install::
easy_install -ZU pyjsmn
Requirements
------------
Python2.7.Usage
-----basic usage::
>>> import pyjsmn
>>> pyjsmn.loads('[1, 2, {"test": "hoge"}]')
>>> [1, 2, {"test": "hoge"}]Links
-----
* PyPI_
* GitHub_
* `Travis-CI`_.. _PyPI: http://pypi.python.org/pypi/pyjsmn/
.. _GitHub: https://github.com/hhatto/pyjsmn
.. _`Travis-CI`: https://travis-ci.org/hhatto/pyjsmn