Here is my first attempt at such a script. Currently it prints out new questions to stdout. Maybe I will add a pluggable output class so that it can be emailed or SMSed or popped up on screen.
For example, to track Python use
$ python sofeed.py python
Here is the code.
Edit: changed getNewQuestions to generator without sleep,
so it is up to the user now to delay it as he wants. It can also be embedded into any application. I added a wxPython sample application too.
import sys
import urllib2
import xml.etree.cElementTree as etree
import time
import datetime
def getQuestions(tag):
pythonFeedURL = "http://stackoverflow.com/feeds/tag/%s"%tag
xmlData = urllib2.urlopen(pythonFeedURL).read()
xmlTree = etree.fromstring(xmlData)
ns="http://www.w3.org/2005/Atom"
questions = {}
for i, entryElem in enumerate(xmlTree.findall("{%s}entry"%ns)):
questions[entryElem.find('{%s}id'%ns).text] = (i, entryElem.find('{%s}title'%ns).text, entryElem.find('{%s}summary'%ns).text)
return questions
def diffQuestions(prevQuestions, questions):
"""
check which of the curernt questions aren't there in old set
"""
newQuestions = []
for qId, qData in questions.iteritems():
if qId not in prevQuestions:
newQuestions.append(qData)
# sort by order in feed
newQuestions.sort()
return newQuestions
def getNewQuestions(tag):
prevQuestions = {}
while 1:
questions = getQuestions(tag)
newQuestions = diffQuestions(prevQuestions, questions)
yield newQuestions
prevQuestions = questions
def getOutputString(newQuestions):
s = "%s new questions @ %s\n"%(len(newQuestions), datetime.datetime.now())
for q in newQuestions:
s += "Question: %s %s\n"%(q[0], q[1])
s += q[2]
s +="\n------------------------------------------------------------\n"
return s
if __name__ == "__main__":
tag = sys.argv[1]
newQuestionGenerator = getNewQuestions(tag)
useWx = 1
if useWx:
import wx
app = wx.PySimpleApp()
frame = wx.Frame(None)
app.SetTopWindow(frame)
timer = wx.Timer(frame)
timer.Start(60000)
def onTimer(evt):
newQuestions = newQuestionGenerator.next()
if newQuestions:
wx.MessageBox(getOutputString(newQuestions), "New Questions")
frame.Bind(wx.EVT_TIMER, onTimer)
app.MainLoop()
else:
for newQuestions in newQuestionGenerator:
if newQuestions:
print getOutputString(newQuestions)
time.sleep(1000)