My favorites | Sign in
Project Home
Search
for
ThirdPartyModules  
What packages work with jsonpickle and what packages need work.
Deprecated
Updated Dec 27, 2009 by john.pau...@gmail.com

Third Party Module Compatibility

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

Works with jsonpickle

Somewhat works with jsonpickle

Unknown

Does not work at all with jsonpickle

Unknown


Sign in to add a comment
Powered by Google Project Hosting