您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)使用Python怎么爬取淘寶的商品信息,文章內(nèi)容豐富且以專(zhuān)業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
python常用的庫(kù):1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
1、導(dǎo)入需要的包
import timefrom bs4 import BeautifulSoupfrom selenium import webdriver
2、編輯淘寶數(shù)據(jù)抓取的函數(shù)邏輯
# 編輯淘寶數(shù)據(jù)抓取的函數(shù)邏輯 """ 1.登錄淘寶 2.首頁(yè) 3.指定商品的搜索信息 4.提取指定商品的金額、購(gòu)買(mǎi)人數(shù)、商鋪地址、商品名稱(chēng)、商品圖片 """
3、打開(kāi)淘寶網(wǎng)頁(yè),并掃碼登陸點(diǎn)擊淘寶網(wǎng)首頁(yè)
def login_info(self): # 1.打開(kāi)網(wǎng)頁(yè) self.browser.get(self.url) # 2.通過(guò)掃碼的形式去登錄淘寶賬號(hào) if self.browser.find_element_by_xpath('//*[@id="login"]/div[1]/i'): self.browser.find_element_by_xpath('//*[@id="login"]/div[1]/i').click() # 讓程序等待休眠5秒,通過(guò)手機(jī)掃碼登錄 time.sleep(8) # 3.點(diǎn)擊淘寶網(wǎng)首頁(yè) taobao_index = self.browser.find_element_by_xpath('//*[@id="J_SiteNavHome"]/div/a') taobao_index.click() time.sleep(1)
4、自動(dòng)的在淘寶首頁(yè)中輸入自己想要搜索的商品名稱(chēng),并且自動(dòng)點(diǎn)擊搜索
search_input = self.browser.find_element_by_xpath('//*[@id="q"]') shop_name = input("請(qǐng)輸入你想搜索的商品名稱(chēng):") search_input.send_keys(shop_name) time.sleep(0.5) search_submit = self.browser.find_element_by_xpath('//*[@id="J_TSearchForm"]/div[1]/button') search_submit.click()
5、獲取商品信息
# 商品金額 shop_price_data = shop_data.find_all('div', class_='price g_price g_price-highlight') for shop_price in shop_price_data: shop_price_list.append(shop_price.text.strip()) # 購(gòu)買(mǎi)人數(shù) shop_people_number_data = shop_data.find_all('div','deal-cnt') for shop_people_number in shop_people_number_data: shop_people_list.append(shop_people_number.text) # 店鋪地區(qū) shop_location_data = shop_data.find_all('div','location') for shop_location in shop_location_data: shop_location_list.append(shop_location.text)
上述就是小編為大家分享的使用Python怎么爬取淘寶的商品信息了,如果剛好有類(lèi)似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。