爬蟲如何爬取貓眼電影TOP榜資料

阿布多abu發表於2019-06-17

爬蟲是如何爬取貓眼電影TOP榜資料的。主要抓取的內容有排名、圖片、電影名稱、主演、上映時間和評分資訊。在抓取之前,我們先開啟貓眼電影TOP100頁面,研究分析頁面,查詢我們需要的資訊位置,然後抓取。

程式碼如下:

import json

import requests

from requests.exceptions import RequestException

import re

import time

def get_one_page(url):

try:
    headers = { 'User-Agent': 'agent資訊'}
    response = requests.get(url, headers=headers)
    if response.status_code == 200:
        return response.text
    return None
except RequestException:
    return None

def parse_one_page(html):

pattern = re.compile('<dd>.*?board-index.*?>(\d+)</i>.*?data-src="(.*?)".*?name"><a'
                     + '.*?>(.*?)</a>.*?star">(.*?)</p>.*?releasetime">(.*?)</p>'
                     + '.*?integer">(.*?)</i>.*?fraction">(.*?)</i>.*?</dd>', re.S)
items = re.findall(pattern, html)
for item in items:
    yield {
        'index': item[0],
        'image': item[1],
        'title': item[2],
        'actor': item[3].strip()[3:],
        'time': item[4].strip()[5:],
        'score': item[5] + item[6]
    }

def write_to_file(content):

with open('result.txt', 'a', encoding='utf-8') as f:
    f.write(json.dumps(content, ensure_ascii=False) + '\n')

def main(offset):

url = '(offset)
html = get_one_page(url)
for item in parse_one_page(html):
    print(item)
    write_to_file(item)

if  name  == ' main ':

for i in range(10):
    main(offset=i * 10)
    time.sleep(1)

透過上述程式碼,我們就可以獲取到貓眼電影TOP榜資料資訊了。



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69903461/viewspace-2647880/,如需轉載,請註明出處,否則將追究法律責任。

相關文章