ebayno



1

import logging
import random
import threading
import urllib.parse
import urllib.parse
import urllib.request
from queue import Queue
import pymysql
from bs4 import BeautifulSoup
import time


class EbaySpider(object):
    def randHeader(self):
        head_connection = ['Keep-Alive', 'close']
        head_accept = ['text/html, application/xhtml+xml, */*']
        head_accept_language = ['zh-CN,fr-FR;q=0.5', 'en-US,en;q=0.8,zh-Hans-CN;q=0.5,zh-Hans;q=0.3']
        head_user_agent = ['Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko',
                           'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36',
                           'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; rv:11.0) like Gecko)',
                           'Mozilla/5.0 (Windows; U; Windows NT 5.2) Gecko/2008070208 Firefox/3.0.1',
                           'Mozilla/5.0 (Windows; U; Windows NT 5.1) Gecko/20070309 Firefox/2.0.0.3',
                           'Mozilla/5.0 (Windows; U; Windows NT 5.1) Gecko/20070803 Firefox/1.5.0.12',
                           'Opera/9.27 (Windows NT 5.2; U; zh-cn)',
                           'Mozilla/5.0 (Macintosh; PPC Mac OS X; U; en) Opera 8.0',
                           'Opera/8.0 (Macintosh; PPC Mac OS X; U; en)',
                           'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080219 Firefox/2.0.0.12 Navigator/9.0.0.6',
                           'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Win64; x64; Trident/4.0)',
                           'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)',
                           'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E)',
                           'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Maxthon/4.0.6.2000 Chrome/26.0.1410.43 Safari/537.1 ',
                           'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; QQBrowser/7.3.9825.400)',
                           'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0 ',
                           'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.92 Safari/537.1 LBBROWSER',
                           'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; BIDUBrowser 2.x)',
                           'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.11 TaoBrowser/3.0 Safari/536.11']

        header = {
            'Connection': head_connection[0],
            'Accept': head_accept[0],
            'Accept-Language': head_accept_language[1],
            'User-Agent': head_user_agent[random.randrange(0, len(head_user_agent))]
        }
        return header

    def getBeautifulSoup(self , query_rl):
        req = urllib.request.Request(url= query_rl , headers=self.randHeader())
        webpage = urllib.request.urlopen(req)
        html = webpage.read()
        soup = BeautifulSoup(html, 'html.parser')
        return  soup

    def search(self , serchWords , sku):
        serchWords = str(serchWords).replace(" ", "%20")
        #_ipg=100每页100 ,
        query_rl = "https://www.ebay.com/sch/i.html?_from=R40&_sacat=0&_ipg=100&rt=nc&_nkw=" + serchWords + "&_pgn=1&_skc=0"
        soup = self.getBeautifulSoup(query_rl)
        # print(soup.prettify())
        content = soup.find("span" , "rcnt")
        itemSize = int(str(content.string).replace(",","")) + 1
        pageSize = int(itemSize/100)
        if itemSize % 100 != 0 :
            pageSize += 1

        print("总计" + str(itemSize) + "项,共" + str(pageSize) + "页(每页100条)")
        print("第1页....")
        result = []  #统计ebayno
        content = soup.find_all("div" , "lvpic pic img left")
        for i in content:
            s = str(i)
            l = s.find("iid=")
            if l == -1:
                continue
            r = s.find("\">")
            no = str(s[l + 5:r])
            result.append(no)
            if self.findDBByNo(no):
                continue
            self.insertDB(sku, no)

        for _pgn in range(2 , pageSize+1):
            print("第" + str(_pgn) + "页....")
            query_rl = "https://www.ebay.com/sch/i.html?_from=R40&_sacat=0&_ipg=100&rt=nc&_nkw=" + serchWords + "&_pgn=" + str(_pgn) + "&_skc=" + str((_pgn-1)*100)
            soup = self.getBeautifulSoup(query_rl)
            content = soup.find_all("div", "lvpic pic img left")
            for i in content:
                s = str(i)
                l = s.find("iid=")
                if l == -1:
                    continue
                r = s.find("\">")
                no = str(s[l+5:r])
                result.append(no)
                if self.findDBByNo(no):
                    continue
                self.insertDB(sku,no)

        return result
    def findDBByNo(self,query_id):
        db = pymysql.connect(host='localhost', user='root', passwd='', db='test', port=3306, charset='utf8')
        cursor = db.cursor()
        sql = ' select * from ebayno where ebayno = %s '
        cursor.execute(sql, (query_id))
        db.commit()
        cursor.close()
        db.close()
        return cursor.fetchone() is not None

    def insertDB(self,sku,no):
        db = pymysql.connect(host='localhost', user='root', passwd='', db='test', port=3306, charset='utf8')
        cursor = db.cursor()
        sql = " insert into ebayno(sku , ebayno)  values(%s , %s) "
        cursor.execute(sql, (sku, no))
        db.commit()
        cursor.close()
        db.close()


if __name__ == '__main__':
    sku = "WM-D39S0106"
    ebay = EbaySpider()
    file_object = open(str(sku) + ".txt", 'w')
    file_object.write("sku, ebayno\n")
    result = ebay.search("2016 nerf bar Silverado 2500", sku)
    for i in range(len(result)):
        print(str(i) , end="\t")
        print(result[i])
        file_object.write(sku + ","+ result[i]+"\n")
    file_object.close()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值