-
Notifications
You must be signed in to change notification settings - Fork 1
Simple YAJL wrapper for Python.
License
fireteam/yajs
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
yajs
yajs is a simple package that provides a wrapper to the YAJL JSON
lexer functions that allow tokenization of streams of JSON data
without having to buffer up the whole data.
Examples:
>>> from cStringIO import StringIO
>>> from yajs import tokenize
>>> for token in tokenize(StringIO('[1, 2, 3]')):
... print token
...
('start_array', None)
('value', 1)
('value', 2)
('value', 3)
('end_array', None)
About
Simple YAJL wrapper for Python.
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published