2

ページhttp://www.alize.gen.tr/index.php?is=urun_detay&id=37でスクレイピーが //div/text() を表示できない理由がわかりません。例:

scrapy view http://www.alize.gen.tr/index.php?is=urun_detay&id=37

scrapy shell http://www.alize.gen.tr/index.php?is=urun_detay&id=37

>>> hxs.select("//td[@class='urun_adi']/div/text()").extract()

[u'\r\n'] を返しますが、[u'\r\nANGORA GOLD'] でなければなりません

どこが間違っていますか?

4

1 に答える 1

1

私のために働く:

stav@maia:~$ scrapy shell "http://www.alize.gen.tr/index.php?is=urun_detay&id=37"
2013-03-28 20:36:39-0600 [scrapy] INFO: Scrapy 0.17.0 started (bot: scrapybot)
...
>>> hxs.select("//td[@class='urun_adi']/div/text()").extract()
[u'\r\nANGORA GOLD']

どのバージョンの Scrapy を使用していますか?

stav@maia:~$ scrapy version -v
Scrapy  : 0.17.0
lxml    : 2.3.2.0
libxml2 : 2.7.8
Twisted : 11.1.0
Python  : 2.7.3 (default, Aug  1 2012, 05:14:39) - [GCC 4.6.3]
Platform: Linux-3.2.0-39-generic-x86_64-with-Ubuntu-12.04-precise
于 2013-03-29T02:39:04.347 に答える