|
ThirdPartyModules
What packages work with jsonpickle and what packages need work.
Deprecated Third Party Module CompatibilityPlease 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']
TrueWorks with jsonpickle
Somewhat works with jsonpickleUnknown Does not work at all with jsonpickleUnknown |
► Sign in to add a comment