[python] BeautifulSoup 을 이용 하여 간단 한 그림 캡 처 를 진행 합 니 다.

755 단어 python파충
BeautifulSoup, 홈 페이지 를 미리 설치 해 야 합 니 다.https://www.crummy.com/software/BeautifulSoup/bs4/doc/index.zh.html
캡 처 주소:http://tieba.baidu.com/p/2772656630
코드
#-*- coding:utf-8 -*-

import urllib
from bs4 import BeautifulSoup

def get_content(url):
	
	html = urllib.urlopen(url)
	content = html.read()
	html.close()

	return content

def get_images(content):
	
	oSoup = BeautifulSoup(content)
	
	all_images = oSoup.find_all('img', class_="BDE_Image")

	x = 1
	for img in all_images:
		print img['src']
		image_name = "%s.jpg" % x

		urllib.urlretrieve(img['src'], image_name)
		x+=1
		

url = "http://tieba.baidu.com/p/2772656630"	

content = get_content(url)

get_images(content)

좋은 웹페이지 즐겨찾기