我在使用在IronPython中转储的Python加载pickle时遇到了困难。
当我在IronPython中挑选像“[1,2,3]”这样的基本内容时,pickle在Python中加载得很好。但是,当我在IronPython中从下面的数据库查询中挑选结果时,在尝试使用Python加载pickle时,我收到错误“没有名为clr的模块”。
可能出现什么问题? (有没有更好的方法在Python和IronPython之间共享数据?)
def GetData(id):
TheConnection = SqlClient.SqlConnection("server=MyServer;database=MyDB;Trusted_Connection=yes")
TheConnection.Open()
sqlcommand = "MyStoredProcedure#GetMyData '%s'" %id
MyAction = SqlClient.SqlCommand(sqlcommand, TheConnection)
MyReader = MyAction.ExecuteReader()
results = list()
while MyReader.Read():
row = {
'Type':'LolCat',
'Date':datetime.datetime(MyReader[1]),
'Location':str(MyReader[3]),
'Weight':float(MyReader[6])/float(MyReader[7]),
}
results.append(row)
TheConnection.Close()
MyReader.Close()
return results
results1 = GetData(1234)
results2 = GetData(2345)
...
picklefile= open("testpickle","w")
cPickle.dump((results1,results2),picklefile)
...
picklefile = open("testpickle","r")
p = cPickle.load(file) # this is the line that gives the error "ImportError: No module named clr"
答案 0 :(得分:4)
酸洗确实是在蟒蛇之间共享数据的一种很好的通用方法(当你可以信任数据并知道它没有被篡改时)。但它对于简单的内置类型来说真的很好。如果你有特殊类型的对象(比如GetData()
的结果),那么pickle将嵌入类的完全限定名,并希望另一端的python知道如何找到它上课并重新实例化。毋庸置疑,如果你不小心,这会变得非常混乱。
尝试将您的results1
,results2
值转换为简单类型,例如(可能是嵌套的)元组,dicts,列表等。
答案 1 :(得分:2)
您正在挑选的数据不是由通用Python对象组成,而是有一些与实现相关的对象。 clr
是特定于IronPython的模块,因为它的名称暗示了与.NET的连接。查看您的数据,我猜这与您的日期时间对象有关。
尝试使用日期时间以外的格式作为序列化数据,例如UNIX纪元时间:
import time
results['Date'] = time.mktime(datetime.datetime(MyReader[1]).timetuple())