一,尝试用BeautifulSoup抓取
先打开KFC网站门店列表页面:http://www.kfc.com.cn/kfccda/storelist/index.aspx
可以看到门店列表如下图:
打开Chrome Developer Tools观察页面结构,找到标签如下:
发现要的数据位于id='listhtml'的表里,门店地址数据位于第二个tr开始的行里,尝试用bs抓取:
url = 'http://www.kfc.com.cn/kfccda/storelist/index.aspx'
html = urllib.urlopen(url).read().decode('utf-8')
bsObj = Beau