爬取今日頭條Ajax請(qǐng)求
網(wǎng)址:#
搜索頭條
可以得到這個(gè)網(wǎng)址:
#search/?keyword=%e8%a1%97%e6%8b%8d
開發(fā)者工具查看:
我們?cè)谒阉髦胁](méi)有發(fā)現(xiàn)上面的文字,那么我們可以初步判定,這個(gè)由ajax加載,然后渲染出來(lái)的。此時(shí)切換到xhr過(guò)濾,可以看到確實(shí)是ajax請(qǐng)求。
觀察請(qǐng)求的特點(diǎn),發(fā)現(xiàn)只有offset是改變的,而且一次加20,。
我們可以用它來(lái)控制數(shù)據(jù)分頁(yè),然后把圖片下載下來(lái)。代碼如下:
import requests import os from urllib.parse import urlencode from hashlib import md5 from multiprocessing.pool import pool from requests import codes def get_page(offset): params = { "offset":offset, "format":"json", "keyword":"街拍", "autoload":"true", "count":"20", "cur_tab":"1", "from":"search_tab" } url = '#search_content/?'+urlencode(params) try: response = requests.get(url) if response.status_code == 200: # print(url) return response.json() except requests.connectionerror: return none # get_page(0) def get_images(json): if json.get('data'): for item in json.get('data'): if item.get('cell_type') is not none: continue title = item.get('title') images = item.get('image_list') for image in images: yield { 'title':title, 'image':'https:' + image.get('url'), } def save_image(item): #os.path.sep 路徑分隔符‘//' img_path = 'img' + os.path.sep + item.get('title') if not os.path.exists(img_path): os.makedirs(img_path) try: resp = requests.get(item.get('image')) # print(type(resp)) if codes.ok == resp.status_code: file_path = img_path + os.path.sep + '{file_name}.{file_suffix}'.format( file_name=md5(resp.content).hexdigest(),#md5是一種加密算法獲取圖片的二進(jìn)制數(shù)據(jù),以二進(jìn)制形式寫入文件 file_suffix='jpg') if not os.path.exists(file_path): with open(file_path,'wb')as f: f.write(resp.content) print('downladed image path is %s' % file_path) else: print('already downloaded',file_path) except requests.connectionerror: print('failed to save image,item %s' % item) def main(offset): json = get_page(offset) for item in get_images(json): print(item) save_image(item) group = 0 group_end = 2 if __name__ == '__main__': pool = pool() groups = ([x*20 for x in range(group,group_end)]) pool.map(main,groups) #將groups一個(gè)個(gè)調(diào)出來(lái)傳給main函數(shù) pool.close() pool.join() #保證子進(jìn)程結(jié)束后再向下執(zhí)行 pool.join(1) 等待一秒
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)碩編程的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接