python – XML-RPC – 无法编组递归字典

前端之家收集整理的这篇文章主要介绍了python – XML-RPC – 无法编组递归字典前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个通过xml-rpc发送字典的简单示例:

 class CTest(object):
    def __init__(self):
        self.node1 = {'data':'zek','parent':{},'children':[]}
        self.node2 = {'data':'bill','children':[]}
        self.node1['children'].append(self.node2)
        self.node2['parent'] = self.node1

    def getNode(self):
        return self.node1

我有两个字典:node2是node1的子节点,同时node2将node1的引用作为父变量.
所以它是一个递归字典.当我尝试通过XML-RPC发送node1时,我得到了以下异常:

#Command to execute xml-rpc dump method for serialization
test = CTest()
xmlrpclib.dumps((test,),'Node Object')
#Exception
raise TypeError,"cannot marshal recursive dictionaries"

是否可以通过XML-RPC发送node1(不更改字典结构)?

谢谢.

最佳答案
使用Python的’pickle’模块自行序列化和反序列化’test’.

cPickle.dumps(test)

工作中.在您使用的电线的另一侧

cPickle.loads(received_test_pickle)

可能有必要在XMLRPC调用之前/之后对pickle进行base-64编码/解码.

但也要看看PyRo

http://pyro.sourceforge.net/

原文链接:https://www.f2er.com/python/439143.html

猜你在找的Python相关文章