View Single Post
Posts: 73 | Thanked: 35 times | Joined on Jun 2013
#935
Originally Posted by thp View Post
Yes, write a Python script and use it using {script:/path/to/yourscript.py} like this:

Code:
import feedparser
f = feedparser.parse('http://example.org/feed.rss')
print f.entries[0].title
this is excellent! i have written a python script with your instructions, and it will work when i probe the script via command, eg python /home/user/rss.py, it shows the news headline output fine in the command window, but for some reason it just never displays in billboard, just blank!

what am i doing wrong?