私は自分のサイトにページを作成しましたhttp://shedez.com/test.html このページは、ユーザーをサーバー上の jpg にリダイレクトします
Python スクリプトを使用して、このイメージをローカル ドライブにコピーしたいと考えています。Pythonスクリプトで最初にメインURLに移動してから、写真の宛先URLに移動する必要があります
そして画像をコピーします。現在のところ、宛先 URL はハードコーディングされていますが、将来的には動的になります。ジオコーディングを使用して IP 経由で都市を検索し、ユーザーをその都市からその日の写真にリダイレクトするためです。
== 現在のスクリプト ===
import urllib2, os
req = urllib2.urlopen("http://shedez.com/test.html")
final_link = req.info()
print req.info()
def get_image(remote, local):
imgData = urllib2.urlopen(final_link).read()
output = open(local,'wb')
output.write(imgData)
output.close()
return local
fn = os.path.join(self.tmp, 'bells.jpg')
firstimg = get_image(final_link, fn)