Python基於urllib,re爬取百度的國內即時新聞

Python應用於爬蟲領域業界已經至關的普遍了,今天就採用urllib + re 爬取下百度國內即時新聞。html

Image 2.png


軟件環境:python


Python    : 3.6.0   windows

PyCharm: Community 2017.2 ide


Python 下載地址 https://www.python.org/downloads/url

Pycharm 下載地址(Community是免費的) https://www.jetbrains.com/pycharm/download/#section=windows spa


主要思路:code

採用urllib請求制定url,拿到網頁的html,而後採用re進行正則匹配找到新聞標題htm


爬取過程:blog


1. 導入urllib 和 re 兩個模塊utf-8

import urllib
from urllib import request
import re


2. 採用urllib.request.urlopen 打開百度信息url,並取得全部html

url = "http://news.baidu.com/guonei"
response = urllib.request.urlopen(url)
html = response.read().decode('utf-8')


urllib.urlopen()方法用於打開一個url地址。

read()方法用於讀取URL上的數據,並把整個頁面下載下來。


3. 在Chrome中按F12能夠查看到網頁的源代碼,能夠看到新聞位於 div id="instant-news"下面

image.png

4. 獲取即時信息的整個div的html並存儲到變量: instant_news_html

pattern_of_instant_news = re.compile('<div id="instant-news.*?</div>',re.S)
instant_news_html = re.findall(pattern_of_instant_news, html)[0]


5. 從所有news的html中匹配出每個新聞標題

pattern_of_news = re.compile('<li><a.*?>(.*?)</a></li>', re.S)
news_list = re.findall(pattern_of_news, instant_news_html)
for news in news_list:
    print(news)

將會看到如入結果

image.png

完整源代碼:

import urllib
from urllib import request
import re

url = "http://news.baidu.com/guonei"
response = urllib.request.urlopen(url)
html = response.read().decode('utf-8')

pattern_of_instant_news = re.compile('<div id="instant-news.*?</div>',re.S)
instant_news_html = re.findall(pattern_of_instant_news, html)[0]

pattern_of_news = re.compile('<li><a.*?>(.*?)</a></li>', re.S)
news_list = re.findall(pattern_of_news, instant_news_html)

for news in news_list:
    print(news)


參考資料:

urllib  

re

相關文章
相關標籤/搜索