Python scrapy编码,再次

时间:2015-09-05 10:43:03

标签: python encoding utf-8 scrapy

这是我的代码

scrapy shell "http://www.yandex.ru"

然后

>>> response.encoding
'utf-8'
>>> title = response.xpath("//title/text()").extract()[0]
>>> title
u'\u042f\u043d\u0434\u0435\u043a\u0441'

我不知道如何在这里获取俄语文本,请尝试

>>> title.encode("utf-8")
'\xd0\xaf\xd0\xbd\xd0\xb4\xd0\xb5\xd0\xba\xd1\x81'

thanx

0 个答案:

没有答案