python beautifulsoup获取特定html源码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python beautifulsoup获取特定html源码相关的知识,希望对你有一定的参考价值。
beautifulsoup 获取特定html源码
import re
from bs4 import BeautifulSoup
import urllib2
url = ‘http://www.cnblogs.com/vickey-wu/‘
# connect to a URL
web = urllib2.urlopen(url)
# read html code
html = web.read()
# print html
soup = BeautifulSoup(html,‘html.parser‘)
prety = soup.prettify()
# print prety
pointed_div = soup.findAll(name="div", attrs={"class":re.compile("forFlow")}) # 筛选标签为div且属性class为forFlow的源码
print pointed_div
以上是关于python beautifulsoup获取特定html源码的主要内容,如果未能解决你的问题,请参考以下文章
Python BeautifulSoup 提取特定的 URL