The scraped data is fine, that's just how Python represents unicode strings.
You can view the readable representation by printing that unicode string in a
Python shell:
>>> print u"Teres\u00f3polis."
Teres�polis.
On Wed, Apr 13, 2011 at 05:08:19PM -0700, MPgoog wrote:
> I scape the word Teres�polis and it reads "Teres\u00f3polis." How can
> I avoid that?
>
> --
> You received this message because you are subscribed to the Google Groups "scrapy-users" group.
> To post to this group, send email to scrapy...@googlegroups.com.
> To unsubscribe from this group, send email to scrapy-users...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/scrapy-users?hl=en.
byte_string = u"Teres\u00f3polis.".encode('utf-8')