だから私は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のドキュメントを読んでいますが、その方法がわかりません。サンプルコードを教えてください。