根据关键词抓取tmall数据

import urllib.request
url = "https://list.tmall.com/search_product.htm?q=%C3%A2%B9%FB%B8%C9&type=p&spm=a220m.1000858.a2227oh.d100&xl=%C3%A2%B9%FB_1&from=.list.pc_1_suggest"
headers = {
"User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36"
}
req = urllib.request.Request(url=url,headers=headers)
res = urllib.request.urlopen(req)
html = res.read().decode("GBK")
print(html)
~

猜你喜欢

转载自blog.51cto.com/suyanzhu/2417164
今日推荐