pythn抓取网页小例子
Posted 無碼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pythn抓取网页小例子相关的知识,希望对你有一定的参考价值。
import urllib.request import re from tkinter import * win = Tk() win.geometry(‘500x300+400+300‘) t = Text(win) t.pack() url = ‘http://stock.sohu.com/news/‘ html = urllib.request.urlopen(url).read() html = html.decode(‘GBK‘) pattern = re.compile("<a test=a href=‘http://stock.sohu.com/(.*?)/(.*?).shtml‘ target=‘_blank‘>(.*?)</a>",re.S) items = re.findall(pattern,html) for item in items: t.insert(END,item[2]) t.insert(END,‘\n‘)
以上是关于pythn抓取网页小例子的主要内容,如果未能解决你的问题,请参考以下文章