码迷,mamicode.com
首页 > 编程语言 > 详细

Python3——简单获取网页文字的爬虫

时间:2015-08-02 00:49:26      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

# -*- coding: utf-8 -*-

import urllib.request
import re

url=‘http://s.weibo.com/weibo/%25E9%25BE%2599%25E9%25BA%2592&Refer=STopic_box‘

urlfile=urllib.request.urlopen(url).read()
urlfile=urlfile.decode(‘UTF-8‘)

r1=re.compile(‘[\u4e00-\u9fa5]{2,4}‘) #匹配文字

wordList=re.findall(r1,urlfile)
print (wordList)

 

Python3——简单获取网页文字的爬虫

标签:

原文地址:http://www.cnblogs.com/pkmnexp/p/4694884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!