python爬蟲知識點總結(九)Requests+Regex爬取貓眼電影

來源:互聯網
上載者:User

標籤:pat   author   imp   code   str   cti   ima   findall   分享   

一、爬取流程

 

二、代碼示範

#-*- coding: UTF-8 -*-#_author:AlexCthon#mail:[email protected]#date:2018/8/3import requestsfrom multiprocessing import Pool # 進程池,用來實現秒抓from requests.exceptions import RequestExceptionimport reimport jsondef get_one_page(url):    try:        response = requests.get(url)        #print(response.text)        if(response.status_code == 200):            return response.text        return None    except RequestException:        return Nonedef 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‘)        f.close()def main(offset):    url = ‘http://maoyan.com/board/4?offset=‘+str(offset)    html = get_n=get_one_page(url)    for item in parse_one_page(html):        print(item)        write_to_file(item)if __name__ == ‘__main__‘:    pool = Pool()    pool.map(main,[i*10 for i in range(10)])

  

python爬蟲知識點總結(九)Requests+Regex爬取貓眼電影

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.