1 Star 0 Fork 0

bluedream_pp/pythonFirstInHead

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.py 714 Bytes
一键复制 编辑 原始数据 按行查看 历史
#coding:UTF-8
from bs4 import BeautifulSoup
import urllib2
import sys
reload(sys)
sys.setdefaultencoding('utf8')
url = "http://www.csrc.gov.cn/pub/zjhpublicofbj/gongg/201708/t20170825_322575.htm"
user_agent = 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.82 Safari/537.36'
headers = {'User-Agent': user_agent, 'timeout': 60}
request = urllib2.Request(url, headers=headers)
response = urllib2.urlopen(request)
content = response.read()
# print content
soup = BeautifulSoup(content,'lxml')
c = soup.select('#lTitle')
for t in c:
print t.get_text().encode('utf-8')
cc = soup.select('#ContentRegion > div > p')
for tt in cc:
print tt.get_text().encode('utf-8') + "\n"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/bluedream_pp/pythonFirstInHead.git
git@gitee.com:bluedream_pp/pythonFirstInHead.git
bluedream_pp
pythonFirstInHead
pythonFirstInHead
master

搜索帮助