Тому я намагаюся зробити скрипт Python, який завантажує веб-файли і поміщає їх у папку на робочому столі. Тут я знайшов кілька подібних програм, які роблять щось подібне, але нічого не схожого на те, що мені потрібно. Той, який я знайшов найбільш схожим, знаходиться тут ( http://bytes.com/topic/python/answers/850927-problem-using-urllib-download-images ). Я спробував використати цей код:
>>> import urllib
>>> image = urllib.URLopener()
>>> image.retrieve("http://www.gunnerkrigg.com//comics/00000001.jpg","00000001.jpg")
('00000001.jpg', <httplib.HTTPMessage instance at 0x1457a80>)
Потім я шукав у своєму комп’ютері файл "00000001.jpg", але все, що я знайшов, - це кешоване зображення. Я навіть не впевнений, що він зберег файл на моєму комп’ютері. Коли я зрозумію, як завантажити файл, я думаю, що знаю, як впоратися з рештою. По суті, просто використовуйте для циклу і розділіть рядок на '00000000'. 'Jpg' і збільшуйте '00000000' до найбільшої кількості, яку мені доведеться якось визначити. Будь-які рекомендації щодо найкращого способу зробити це чи як правильно завантажити файл?
Дякую!
РЕДАКЦІЯ 6/15/10
Ось завершений сценарій, він зберігає файли у будь-який обраний вами каталог. З якихось дивних причин файли не завантажувалися, і вони просто були. Будь-які вдячності щодо того, як його почистити, були б дуже вдячні. В даний час я розробляю, як дізнатися, чи багато коміксів існує на сайті, щоб я міг отримати найсвіжіший, а не змушений програму виходити після збільшення певної кількості винятків.
import urllib
import os
comicCounter=len(os.listdir('/file'))+1 # reads the number of files in the folder to start downloading at the next comic
errorCount=0
def download_comic(url,comicName):
"""
download a comic in the form of
url = http://www.example.com
comicName = '00000000.jpg'
"""
image=urllib.URLopener()
image.retrieve(url,comicName) # download comicName at URL
while comicCounter <= 1000: # not the most elegant solution
os.chdir('/file') # set where files download to
try:
if comicCounter < 10: # needed to break into 10^n segments because comic names are a set of zeros followed by a number
comicNumber=str('0000000'+str(comicCounter)) # string containing the eight digit comic number
comicName=str(comicNumber+".jpg") # string containing the file name
url=str("http://www.gunnerkrigg.com//comics/"+comicName) # creates the URL for the comic
comicCounter+=1 # increments the comic counter to go to the next comic, must be before the download in case the download raises an exception
download_comic(url,comicName) # uses the function defined above to download the comic
print url
if 10 <= comicCounter < 100:
comicNumber=str('000000'+str(comicCounter))
comicName=str(comicNumber+".jpg")
url=str("http://www.gunnerkrigg.com//comics/"+comicName)
comicCounter+=1
download_comic(url,comicName)
print url
if 100 <= comicCounter < 1000:
comicNumber=str('00000'+str(comicCounter))
comicName=str(comicNumber+".jpg")
url=str("http://www.gunnerkrigg.com//comics/"+comicName)
comicCounter+=1
download_comic(url,comicName)
print url
else: # quit the program if any number outside this range shows up
quit
except IOError: # urllib raises an IOError for a 404 error, when the comic doesn't exist
errorCount+=1 # add one to the error count
if errorCount>3: # if more than three errors occur during downloading, quit the program
break
else:
print str("comic"+ ' ' + str(comicCounter) + ' ' + "does not exist") # otherwise say that the certain comic number doesn't exist
print "all comics are up to date" # prints if all comics are downloaded
beautifulsoup
? Ця публікація відображається у списку головного beautifulsoup
питання