Just copy the feedparser.py file into your project. You can download the 
full package here (https://code.google.com/p/feedparser/) but you only need 
the one file.

#to use it
import feedparser
feed = feedparser.parse('some_url')
for entry in feed.entries:
  print entry.get('title')


On Friday, May 25, 2012 1:08:28 PM UTC-7, PK wrote:
>
> How to use feedparser for python on google app engine?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/NuWSeaLBIM4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to