所以我已经安装了pymox,我想测试这个方法:
class HttpStorage():
def download(self, input, output):
try:
file_to_download = urllib2.urlopen(input)
except URLError:
raise IOError("Opening input URL failed")
f = open(output, "wb")
f.write(file_to_download.read())
f.close()
return True
我正在阅读 pymox 文档,但我不知道该怎么做。你能帮我一些示例代码吗?