34 lines
842 B
Python
34 lines
842 B
Python
#!/usr/bin/env python2
|
|
|
|
import requests
|
|
from bs4 import BeautifulSoup
|
|
|
|
FIRST_COMIC = 1
|
|
LAST_COMIC = 575
|
|
|
|
def download(img_url, i):
|
|
img = requests.get(img_url, stream=True)
|
|
file_name = "%04d_%s" %(i, img_url.split("/")[-1])
|
|
with open(file_name ,"wb") as f:
|
|
for chunk in img.iter_content(chunk_size=1024):
|
|
if chunk:
|
|
f.write(chunk)
|
|
print "Got %s" %file_name
|
|
|
|
|
|
def run():
|
|
for i in range(FIRST_COMIC, LAST_COMIC + 1):
|
|
p = requests.get("http://abstrusegoose.com/%d" %i)
|
|
soup = BeautifulSoup(p.text, "html.parser")
|
|
section = soup.find("section")
|
|
if section:
|
|
img = section.find("img")
|
|
if img:
|
|
src = img["src"]
|
|
if src:
|
|
download(src, i)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run()
|