LA2 Requests-BS4-Re庫實(shí)驗(yàn)

Requests-BS4-Re庫實(shí)驗(yàn)

[TOC]

1. 中國大學(xué)排名定向爬蟲

基本流程:爬取內(nèi)容揪漩,分析,輸出

功能描述:

? 輸入:大學(xué)排名URL

? 輸出:大學(xué)排名信息的屏幕輸出(排名吏口,大學(xué)名稱奄容,總分)

技術(shù)路線:requests-bs4

文本分析:

<tbody class="hidden_zhpm" style="text-align:center;">
                <tr class="alt"><td>1</td>
                <td><div align="left">清華大學(xué)</div></td>
                <td>北京市</td><td>95.9</td><td class="hidden-xs need-hidden indicator5">100.0</td><td class="hidden-xs need-hidden indicator6"  style="display:none;">97.90%</td><td class="hidden-xs need-hidden indicator7"  style="display:none;">37342</td><td class="hidden-xs need-hidden indicator8"  style="display:none;">1.298</td><td class="hidden-xs need-hidden indicator9"  style="display:none;">1177</td><td class="hidden-xs need-hidden indicator10"  style="display:none;">109</td><td class="hidden-xs need-hidden indicator11"  style="display:none;">1137711</td><td class="hidden-xs need-hidden indicator12"  style="display:none;">1187</td><td class="hidden-xs need-hidden indicator13"  style="display:none;">593522</td></tr><tr><td>2</td>

可以看到,<tbody>標(biāo)簽下是大學(xué)排行表格产徊,<td>標(biāo)簽內(nèi)是排名昂勒、名稱和位置、總分舟铜,所以只需要提取相應(yīng)標(biāo)簽中的內(nèi)容即可戈盈,使用BS4庫中find_all函數(shù)

main函數(shù)

def main():
        uinfo = []
        url = 'http://www.zuihaodaxue.cn/zuihaodaxuepaiming2016.html'
        html = getHTMLText(url)
        fillUnivList(uinfo, html)
        printUnivList(uinfo, 20)

getHTMLText函數(shù)

def getHTMLText(url):   #input url
        try:
                r = requests.get(url, timeout = 30)
                r.raise_for_status()
                r.encoding = r.apparent_encoding
                return r.text
        except:
                return ''

fillUnivList函數(shù)

def fillUnivList(ulist, html):
        soup = BeautifulSoup(html,"html.parser")
        for tr in soup.find('tbody').children:    #子結(jié)點(diǎn)迭代
                if isinstance(tr, bs4.element.Tag):    #判斷是否是Tag
                        tds = tr('td')  #find_all
                        ulist.append([tds[0].string,tds[1].string,tds[2].string])    #將tag中字符串構(gòu)成新元素添加到表尾

printUnivList函數(shù)

def printUnivList(ulist, num):
        tmp = '{0:^10}\t{1:{3}^10}\t{2:^10}'
        print(tmp.format("排名","學(xué)校名稱","分?jǐn)?shù)", 'c'))    #格式化輸出
        for i in range(num):
                u = ulist[i]
                print(tmp.format(u[0],u[1],u[2],chr(12288)))
        print("suc" + str(num))

2. 淘寶商品比價(jià)定向爬蟲

功能描述:

? 目標(biāo):獲取淘寶搜索頁面的信息,提取商品名稱和價(jià)格

? 內(nèi)容:

? 淘寶搜索接口(URL格式)

? 翻頁的處理

技術(shù)路線:requests-bs4-re

查看robots.txt協(xié)議時(shí)深滚,盡管里面禁止一切爬蟲奕谭,不過考慮到我們這里只有一次訪問,訪問量類人痴荐,所以不用遵循協(xié)議。

此外官册,由于淘寶頁面使用了反爬蟲生兆,所以在getHTML時(shí),將用戶域設(shè)為瀏覽器膝宁。

main函數(shù)

def main():
    goods = 'sd卡'
    depth = 3    #定義頁數(shù)
    start_url = 'http://s.taobao.com/search?q=' + goods    #關(guān)鍵詞接口
    uli = []
    for i in range(depth):
        try:
            url = start_url + '&s=' + str(44 * i)
            html = getHTML(url)
            fillList(uli, html)
        except:
            print('error')
            continue
    printList(uli)

fillList函數(shù)

#從文本獲得商品價(jià)格列表
def fillList(uli, html):
    try:
        tlt = re.findall(r'\"raw_title\"\:\".*?\"', html)    #使用正則表達(dá)式匹配鸦难,最小匹配
        plt = re.findall(r'\"view_price\"\:\"[\d\.]*\"', html)
        for i in range(len(tlt)):
            title = eval(tlt[i].split(':')[1])
            price = eval(plt[i].split(':')[1])
            uli.append([price,title])
    except:
        print("")

printList函數(shù)

#打印商品價(jià)格列表
def printList(uli):
    tplt = '{:4}\t{:8}\t{:16}'
    print(tplt.format("序號(hào)",'價(jià)格','名稱'))
    count = 0
    for u in uli:
        count = count + 1
        print(tplt.format(count, u[0], u[1]))

3. 股票數(shù)據(jù)定向爬蟲

這次采用兩個(gè)網(wǎng)站搭配使用,先從東方財(cái)富網(wǎng)提取所有股票代碼员淫,接著利用百度股票的接口查詢個(gè)股信息合蔽,輸出到文件。

main函數(shù)

def main():
    stock_list_url = 'http://quote.eastmoney.com/stocklist.html'
    stock_info_url = 'https://gupiao.baidu.com/stock/'
    output_file = 'D:/BaiduStockInfo.txt'
    slist = []
    print('start...')
    getStockList(slist, stock_list_url)
    getStockInfo(slist, stock_info_url, output_file)

getStockList函數(shù)

def getStockList(lst, stockURL):
    html = getHTML(stockURL)
    soup = BeautifulSoup(html,'html.parser')
    a = soup.find_all('a')
    for i in a:
        try:
            href = i.attrs['href']
            lst.append(re.findall(r'[s][hz]\d{6}',href)[0])
        except:
            continue

getStockInfo函數(shù)

def getStockInfo(lst, stockURL, fpath):
    for stock in lst:    #對(duì)所有股票代碼遍歷
        url = stockURL + stock + '.html'    #構(gòu)成百度股票URL
        html = getHTML(url)
        try:
            if html == '':
                continue
            infoDict = {}
            soup = BeautifulSoup(html, 'html.parser')
            stockinfo = soup.find('div',attrs = {'class':'stock-bets'})
            name = stockinfo.find('a',attrs = {'class':'bets-name'})
            infoDict.update({'股票名稱':name.text.split()[0]})    #更新字典

            keylist = stockinfo.find_all('dt')
            valuelist = stockinfo.find_all('dd')
            for i in range(len(keylist)):
                key = keylist[i].text
                value = valuelist[i].text
                infoDict[key] = value

            with open(fpath, 'a', encoding = 'utf-8') as f:
                f.write(str(infoDict) + '\n')

        except:
            traceback.print_exc()
            continue
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末介返,一起剝皮案震驚了整個(gè)濱河市拴事,隨后出現(xiàn)的幾起案子沃斤,更是在濱河造成了極大的恐慌,老刑警劉巖刃宵,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件衡瓶,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡牲证,警方通過查閱死者的電腦和手機(jī)哮针,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來坦袍,“玉大人十厢,你說我怎么就攤上這事∥嫫耄” “怎么了蛮放?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)辛燥。 經(jīng)常有香客問我筛武,道長(zhǎng),這世上最難降的妖魔是什么挎塌? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任徘六,我火速辦了婚禮,結(jié)果婚禮上榴都,老公的妹妹穿的比我還像新娘待锈。我一直安慰自己,他們只是感情好嘴高,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布竿音。 她就那樣靜靜地躺著,像睡著了一般拴驮。 火紅的嫁衣襯著肌膚如雪春瞬。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天套啤,我揣著相機(jī)與錄音宽气,去河邊找鬼。 笑死潜沦,一個(gè)胖子當(dāng)著我的面吹牛萄涯,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播唆鸡,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼涝影,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了争占?” 一聲冷哼從身側(cè)響起燃逻,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤序目,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后唆樊,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體宛琅,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年逗旁,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了嘿辟。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡片效,死狀恐怖红伦,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情淀衣,我是刑警寧澤昙读,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布,位于F島的核電站膨桥,受9級(jí)特大地震影響蛮浑,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜只嚣,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一沮稚、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧册舞,春花似錦蕴掏、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至藐石,卻和暖如春即供,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背于微。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國打工募狂, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人角雷。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像性穿,于是被迫代替她去往敵國和親勺三。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容