根據關鍵詞抓取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)
~
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章