网页抓取
Posted jestin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页抓取相关的知识,希望对你有一定的参考价值。
import requests import json page=1 while True: url=‘http://www.kfc.com.cn/kfccda/ashx/GetStoreList.ashx?op=cname‘ data={ ‘cname‘:‘广州‘, ‘pageIndex‘: page, } response=requests.post(url,data=data) print(response.json()) if response.json().get(‘Table1‘,‘‘): page =page+1 else: break
Ajax网页抓取
以上是关于网页抓取的主要内容,如果未能解决你的问题,请参考以下文章