私は python のスクレイピーを使用して実行しているスパイダーを持っています。これは&
、http://www.amazon.co.uk/gp/product/B003ZDXHSG/ref=s9_simh_gw_p23_d0_i3?pf_rd_m=A3P5ROKL5A1OLE&pf_rd_s=center-2&pf_rd_r=1NWN2VXCA63R7TDYC3KQ&pf_rd_t=101&pf_rd_p=467128533&pf_rd_i=468294
.
エラーログは言う[scrapy] ERROR: xxx matching query does not exist.
私は次のように使用しCrawlSpider
ていますSgmlLinkExtractor rule
rules = (
Rule(SgmlLinkExtractor(allow='[a-zA-Z0-9.:\/=_?&-]+$'),
'parse',
follow=True,
),
)
貴重な時間を割いていただき、誠にありがとうございました。