导出到解析后json数据

This commit is contained in:
aiguigu 2021-12-14 02:10:31 +08:00
parent b8fc9d9517
commit edd965b2c5

View File

@ -10,44 +10,68 @@ class Film(Baes):
def __init__(self):
self.col = MongoDao()
domain = "https://hymxfs.1688.com/"
self.url = f"{domain}page/offerlist.htm?spm=a2615.7691456.autotrace-paginator." \
"4.79f525026COu37&pageNum={}"
super(Film, self).__init__()
def run(self):
for i in range(1, 33):
cookie2 = "181121407f591d0971aa4a0751559b75"
x5sec = "7b226b796c696e3b32223a223736366266373939656335633166326666653261393931656464613964306339434d6e57386f7347455047366974503932497a5232674561437a51344f5463774e7a6b774e7a73784b414977355947666c51453d227d"
url = self.url.format(i).replace('detail', 'm')
headers = {
'cookie': f"cookie2={cookie2};x5sec={x5sec}"
}
response = requests.request("GET", url, headers=headers)
def run(self, domains, cookie2, x5sec):
for domain in domains:
print(f"{datetime.now()}】网站 {domain}")
for i in range(1, 33):
url = f"{domain}page/offerlist.htm?spm=a2615.7691456.autotrace-paginator." \
"4.79f525026COu37&pageNum={}"
url = url.format(i).replace('detail', 'm')
headers = {
'cookie': f"cookie2={cookie2};x5sec={x5sec}"
}
response = requests.request("GET", url, headers=headers)
if '系统自动生成,请勿修改 100%' in response.text:
print(f"系统自动生成,请勿修改 100%【{datetime.now()}】报错{i}")
exit()
if '系统自动生成,请勿修改 100%' in response.text:
print(f"系统自动生成,请勿修改 100%【{datetime.now()}】报错{i}")
exit()
if '全球领先的采购批发平台,批发网' in response.text:
print(f"全球领先的采购批发平台,批发网【{datetime.now()}】报错{i}")
exit()
if '全球领先的采购批发平台,批发网' in response.text:
print(f"全球领先的采购批发平台,批发网【{datetime.now()}】报错{i}")
exit()
sel = Selector(text=response.text, type='html')
urls = sel.xpath('//ul[@class="offer-list-row"]//div[@class="image"]/a/@href').extract()
shop_name = sel.xpath('//div[@class="name-wrap"]//a/text()').extract_first()
sel = Selector(text=response.text, type='html')
urls = sel.xpath('//ul[@class="offer-list-row"]//div[@class="image"]/a/@href').extract()
if not urls:
break
shop_name = sel.xpath('//div[@class="name-wrap"]//a/text()').extract_first()
for url in urls:
item = {
"sign": self.generate_sign(url),
"url": url,
"stauts": "0",
"shop_name": shop_name
}
self.col.insert_item('RAW_URLS', item)
time.sleep(10)
for url in urls:
item = {
"sign": self.generate_sign(url),
"url": url,
"stauts": "0",
"shop_name": shop_name
}
self.col.insert_item('RAW_URLS', item)
time.sleep(10)
if __name__ == '__main__':
f = Film()
f.run()
cookie2 = "1d6b1823cb22b39510e848b599f4d8f1"
x5sec = "7b226b796c696e3b32223a226632666163633033363265303934356664653336633537653934656266323437434a5350336f3047454b794232703743685032586a514561437a59324f4449794d5463344e4473784b414977355947666c51453d227d"
domains = [
# "https://bsrlons.1688.com/",
# "https://shop7s40060927865.1688.com/",
# "https://shop576s6141m0449.1688.com/",
# "https://shop1448902627889.1688.com/",
# "https://wangnuofuzhuang.1688.com/",
# "https://18795584920.1688.com/",
# "https://memune.1688.com/",
# "https://shop29i4613r448m4.1688.com/",
# "https://mengkecos.1688.com/",
# "https://kingsarts.1688.com/",
# "https://shop1365442613244.1688.com/",
# "https://yadegongmao.1688.com/",
# "https://shop1451495029914.1688.com/",
# "https://shop59720t3u5t179.1688.com/",
# "https://shop1418278636684.1688.com/",
# "https://changshenfz.1688.com/",
"https://shop2966j774200g0.1688.com/",
"https://shop1387693797156.1688.com/",
"https://shop793109z92s466.1688.com/"
]
f.run(domains, cookie2, x5sec)