forked from jsonpickle/jsonpickle
-
Notifications
You must be signed in to change notification settings - Fork 7
Third Party Modules
davvid edited this page Sep 13, 2010
·
1 revision
What packages work with jsonpickle and what packages need work.
Please help contribute to jsonpickle by identifying other Python modules that you have found are compatible with jsonpickle, and which modules jsonpickle does not work well for. We will actively try to adapt jsonpickle to get coverage of other Python modules.
To test a module, ensure that you can recreate an object by reading with jsonpickle.loads() the output of jsonpickle.dumps() on that object.
For example:
>>> import feedparser, jsonpickle
>>> doc = feedparser.parse("http://feedparser.org/docs/examples/atom10.xml")
>>> pickled = jsonpickle.encode(doc)
>>> unpickled = jsonpickle.decode(pickled)
>>> doc['feed']['title'] == unpickled['feed']['title']
True
- Universal Feed Parser
- CouchDB – JSON acceptable to place in CouchDB
- Joose – see http://joose-js.blogspot.com/2008/08/joose-now-supports-jsonpickle.html
- Unknown
- Unknown