Quantcast
Channel: Feedparser newbie questions - Stack Overflow
Browsing index pages (2 articles)
↧

Feedparser newbie questions

After a break from Python(and I knew very little then!) I'm coming back to it for a project(hopefully!). I want to do some parsing using Feedparser & need a few hints to start. Before anyone...

View Article


Answer by unutbu for Feedparser newbie questions

import feedparser url = "http://..." feed = feedparser.parse(url) for post in feed.entries: title = post.title print(title) If you'd like to extract just the third post, then you could use...

View Article

Browsing index pages (2 articles)


Latest Images