Python 获取页面title

复制代码
#!/usr/bin/python
#coding=utf-8

#urllib2是python自带的模块,在python3.x中被改为urllib.request
import urllib.request
import re

page = urllib.request.urlopen('http://www.baidu.com')
html = page.read().decode('utf-8')
# Python3 findall数据类型用bytes类型
# or html=urllib.urlopen(url).read()

title=re.findall('<title>(.+)</title>',html)
print (title)
复制代码

 

posted @   OnePiece!  阅读(10548)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示