这是我的代码
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