|
@@ -14,7 +14,7 @@ class YcsdSpider(scrapy.Spider):
|
|
|
bid_t = self.bid
|
|
|
bid_list = bid_t.split(',')
|
|
|
for ids in bid_list:
|
|
|
- url = self.base_url + 'bid={}'.format(ids)
|
|
|
+ url = self.base_url + 'method=bookinfo&bid={}'.format(ids)
|
|
|
yield scrapy.Request(url, callback=self.parse2, meta={"ly_bid": ids, "i": 0})
|
|
|
|
|
|
def parse2(self, response):
|