Closed GoogleCodeExporter closed 9 years ago
This is what I get:
>>> import feedparser
>>> f=feedparser.parse('http://feedproxy.google.com/TechCrunch')
>>> for e in f.entries:
... print e.title
...
Muziic Has Streamed 250 Million Music Videos To Date, But Will It Last?
Guest Post: It’s Game On For Location Based Services
Facebook For iPhone Updated: No iOS 4 Support, No iPad Support, Broken UI
Facebook Movie Poster Announces 500 Million Facebook Users Before Facebook Does
The Best iOS 4-Ready Apps So Far
Foursquare CEO Crowley On Fundraising: “You Don’t Have To Rush Through
It” (Video)
Appbistro Lands Wildfire For Its Facebook App Market
Scribd’s Decision To Dump Flash Pays Off, User Engagement Triples
The Poor, Pilloried, Tech IPO
A Guide To 3D Display Technology: Its Principles, Methods, And Dangers
Might Threaded Conversations Be Coming To Twitter?
Lijit Proves Search Company Really Means Ad Company – Takes $6 Million Series
D
Use The iPhone 4′s Gyroscope Right Now — Without The iPhone 4 Or The
Gyroscope
Pogoplug Updates Android App: Control Your Drives From Your EVO 4G
SGN’s 3D Shooter EXO-Planet Elite Comes To The iPhone
Foursquare Check-In Stickers Coming To A Store Window Near You (Video)
AdMob Deal Breakdown: $530 Million In Stock, $220 Million In Cash
Square Delays Mass Roll-Out, Admits They Began Before Things Were “Fully
Baked”
SGN Takes Investment From Eric Schmidt’s Tomorrow Ventures
Twitter Tweaks The Fail Whale Based On TechCrunch Commenter Feedback
Lakers Victory Sets Twitter All-Time Record With 3,085 Tweets Per Second
Latest comScore Stats Show Twitter Growth Is Still Strong
OneRiot’s Realtime Search API Now Indexing Facebook Likes And Shared Content
Millennial Media: Apple OS Drops By 33 Percent In May But iPad Impressions Grow
160 Percent
CrunchGear Reviews Toy Story 3
I get this result using the HEAD version of Feedparser as well as FeedParser
4.1. Can you still reproduce this bug?
Original comment by a...@google.com
on 20 Jun 2010 at 4:06
Yes I can still reproduce this bug, see below.
Could the problem be stemming from a library required by feedparser, e.g.
sgmllib, xml.sax? For the latter I'm using version 0.8.4. Not sure how to
tell for the former.
amarpai@amarpai:~$ py
Python 2.6 (r26:66714, Nov 3 2008, 10:57:42)
[GCC 4.1.0 (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import feedparser
>>> feedparser.__version__
'4.1'
>>> f=feedparser.parse('http://feedproxy.google.com/TechCrunch')
>>> for e in f.entries:
... print e.title
...
john
jason
leena
gv
leena
leena
leena
robinw
erick
leena
robinw
leena
leena
robinw
steveohear
robinw
Screen shot 2010-06-21 at 10.42.37 PM
michael-arrington
erick
1b
mike-butcher
jason
devin
lo
Screen shot 2010-01-17 at 10.46
Original comment by amar...@google.com
on 22 Jun 2010 at 5:34
I had the same problem with version 4.1 - with version 4.2-pre-294-svn it works
for me
Original comment by maz...@gmail.com
on 21 Jul 2010 at 3:07
Please close this bug.
I've tested using svn trunk and the URL provided.
@amarpai: Please download the latest version of feedparser from svn trunk [1].
This should fix your problem. If not, you might double-check your environment
and make sure that an old version of feedparser isn't being imported instead of
the svn version. If you're having a problem, try running this code:
import feedparser
print feedparser.__file__
It's normal if the filename ends in .pyc instead of .py, but the path is what's
important.
[1]: https://feedparser.googlecode.com/svn/trunk/feedparser/feedparser.py
Original comment by kurtmckee
on 4 Dec 2010 at 4:44
Original comment by adewale
on 4 Dec 2010 at 10:16
Original issue reported on code.google.com by
amar...@google.com
on 16 Jun 2010 at 9:48