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抓取网页小例子的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段

beautifulsoup库简单抓取网页--获取所有链接例子

python抓取局域网内数据

小程序素材抓取软件,可抓取小程序网页APP等素材

分享几个实用的代码片段(附代码例子)

分享几个实用的代码片段(附代码例子)