pombreda / feedparser

Automatically exported from code.google.com/p/feedparser
Other
0 stars 0 forks source link

Hindi titles showing up as junk #222

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
link = 'http://dev.linksalpha.com/?feed=rss2&p=38&withoutcomments=1'
feed = feedparser.parse(link)
for entryOne in feed['entries']:
    self.response.out.write(entryOne.title)     

What is the expected output? What do you see instead?
title of the blog post on this page - http://dev.linksalpha.com/?p=38

What version of the product are you using? On what operating system?
r312
Google App Engine

Original issue reported on code.google.com by StartupSquad.com on 28 Jun 2010 at 9:54

GoogleCodeExporter commented 9 years ago
This is the output I get with r313 on my Mac with Python 2.5.1

>>> import feedparser
>>> link = 'http://dev.linksalpha.com/?feed=rss2&p=38&withoutcomments=1'
>>> feed = feedparser.parse(link)
>>> for entry in feed.entries:
...     print entry.title
... 
अपलोड/डाला गया अपलोड डाला गया 
अपलोड

What is the output you get? What platform are you using? What version of Python 
are you using?

Original comment by adewale on 21 Jul 2010 at 6:23

GoogleCodeExporter commented 9 years ago
Somehow, seems to work today. Sorry. You can close the ticket.

Original comment by StartupSquad.com on 22 Jul 2010 at 12:10

GoogleCodeExporter commented 9 years ago

Original comment by adewale on 26 Jul 2010 at 7:35