пытаюсь вывести содержимое тега title в консоль, вот этим кодом:
# -*- coding: cp1251 -*-
from grab import Grab
g = Grab(log_file = "out.html")
g.go("yandex.ru")
print g.xpath_text("//title")
Но выдаёт вот такую ошибку:
ERROR:root:Call to deprecated function xpath_text. Use grab.doc.select().text() instead.
Traceback (most recent call last):
File "/home/good_inc/program.py", line 5, in <module>
print g.xpath_text("//title")
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-5: ordinal not in range(128)