我有来自此格式的网址的回复.
'history': {'all': [[u'09 Aug', 1,5'],[u'16 Aug', 2, 6]]}
代码是:
response = urllib.urlopen(url) data = json.loads(response.read()) print data["fixture_history"]['all'] customObject = MyObject ( history = data["history"]['all'] )
打印工作但在我的自定义类中我看到此错误:
history = data["history"]['all'] TypeError: 'module' object is not callable
我的班级是:
class MyObject: #init def _init_(self,history): self.hstory = history
bruno desthu.. 6
打印工作,但在我的自定义类中我看到此错误:TypeError:'module'对象不可调用
我敢打赌你的类是在一个名为模块的模块中定义的,而是MyObject.py
你导入它import MyObject
而不是from MyObject import MyObject
,因此在你的调用代码中,name MyObject
被绑定到模块而不是类.
打印工作,但在我的自定义类中我看到此错误:TypeError:'module'对象不可调用
我敢打赌你的类是在一个名为模块的模块中定义的,而是MyObject.py
你导入它import MyObject
而不是from MyObject import MyObject
,因此在你的调用代码中,name MyObject
被绑定到模块而不是类.