इसलिए मैं एक पायथन स्क्रिप्ट बनाने की कोशिश कर रहा हूं जो वेबकॉमिक्स डाउनलोड करती है और उन्हें अपने डेस्कटॉप पर एक फ़ोल्डर में रखती है। मुझे यहाँ कुछ ऐसे ही प्रोग्राम मिले हैं जो कुछ ऐसा ही करते हैं, लेकिन मुझे जैसा चाहिए वैसा कुछ भी नहीं। जो मुझे सबसे मिलता-जुलता लगा, वह यहीं है ( http://bytes.com/topic/python/answers/850927-problem-use-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' को सबसे बड़ी संख्या तक बढ़ाता है, जिसे मुझे किसी तरह निर्धारित करना होगा। सबसे अच्छा तरीका यह करने के लिए या फ़ाइल को सही ढंग से डाउनलोड करने के लिए कोई भी रसीदें?
धन्यवाद!
EDIT 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
प्रश्न की सूची में