タグ付けされた質問 「urllib」

World Wide Web全体でデータをフェッチするための高水準インターフェースを提供するPythonモジュール。urllib2の前身。Python 3では、urllib2とurllibが再編成され、urllibにマージされました。



8
Django:画像のURLからImageFieldに画像を追加します
私の醜い英語で失礼します;-) この非常に単純なモデルを想像してみてください。 class Photo(models.Model): image = models.ImageField('Label', upload_to='path/') 画像のURLから写真を作成したい(つまり、django管理サイトで手動ではない)。 私はこのようなことをする必要があると思います: from myapp.models import Photo import urllib img_url = 'http://www.site.com/image.jpg' img = urllib.urlopen(img_url) # Here I need to retrieve the image (as the same way that if I put it in an input from admin site) photo = Photo.objects.create(image=image) 教えてくれないにしても、問題をうまく説明できたと思います。 ありがとうございました …

3
AttributeError: 'モジュール'オブジェクトに属性 'urlretrieve'がありません
ウェブサイトからmp3をダウンロードして結合するプログラムを作成しようとしていますが、ファイルをダウンロードしようとすると、次のエラーが発生します。 Traceback (most recent call last): File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 214, in <module> main() File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 209, in main getMp3s() File "/home/tesla/PycharmProjects/OldSpice/Voicemail.py", line 134, in getMp3s raw_mp3.add = urllib.urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3") AttributeError: 'module' object has no attribute 'urlretrieve' この問題を引き起こしている行は raw_mp3.add = urllib.urlretrieve("http://www-scf.usc.edu/~chiso/oldspice/m-b1-hello.mp3")
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.