Hi All,
This is a follow up to Grant's original and excellent post where he presented us with a screen scraper to let us all get all obsessive about where our rep points were coming from on a minute by minute basis. Just like Grant I learned a whole load of new stuff
I took Grants code and hacked it into shape to use the new rep API at:
http://stackoverflow.com/users/rep/{userid}/{start-date}/{end-date}
It pretty much works the same with the exception of a couple of things -
Rep changes are shown in raw points rather than votes. It was too hard (after the bottle of red I sunk after 5pm) to work out the divisors to show the +- changes in individual votes.
I added a new column to the profile SQLite DB - 'PostUrl'. I kinda felt this might be handy sometime in the future for direct linkage to a particular answer if a gui was bolted on.
Because of the changes made in points 1 + 2 above, you'll need to recreate the SQLite tables. Your current rep data will be knackered. The SQL DDL is at the end of the script.
I'm not sure if there's something wonky with the JSON API but it doesn't appear to return the same numbers of questions and answers as reported on the user profile page. I double checked this a couple times and something is definitely out.
There are still some artefacts left over from the original code that handle command line args. I wasn't sure of their original purpose so I left them in, maybe Grant can enlighten me, maybe something to do with cookie handling during the closed beta period?
Finally....until today I'd never written a single line of Python so please excuse the code if my mods aren't very 'pythonic'.
Please enjoy and add/update any fixes etc you see fit.
Cheers
Kev
#!/usr/bin/python
#
# Fixed Grant's original screen scraper (http://stackoverflow.com/questions/6936) to
# use the new JSON API at: http://stackoverflow.com/users/rep/{userid}/start-date/end-date>
#
# Built on Python 2.6 and uses the built in json support
#
from __future__ import with_statement
from sqlite3 import dbapi2 as sqlite
import re, os, sys, time, urllib2, json
class Question:
"Question class"
def __init__(self, question):
self.post_url = question["PostUrl"]
self.post_title = question["PostTitle"]
self.rep = question["Rep"]
self.id = int(self.post_url.split("#")[0])
def sort_keys(dict):
keys = dict.keys()
keys.sort()
return [dict[key] for key in keys]
#get Arrrrgs like a pirate!
flNext = False
flType = 0
user = 419 # <---- YOUR USER NUMBER GOES HERE
for arrrrg in sys.argv: #or you can use arrrrguments
if flNext == False:
if "-c" in arrrrg:
flNext = True
flType = 1
elif "-u" in arrrrg:
flNext = True
flType = 2
else:
flNext = False
if flType == 1:
cookie = arrrrg
elif flType == 2:
user = int(arrrrg)
#os.chdir("~")
os.getcwd()
stTime = time.strftime("%Y-%m-%d %H:%M:%S")
print stTime
questLen = 60 #digits before elipses kick in
profile = ""
#os.system('wget --no-cookies --header "Cookie: soba=%s" http://stackoverflow.com/users/%i/myProfile.html' % (cookie, user))
#with open("myProfile.html") as f:
# for line in f:
# profile = profile + line
#f.close()
end_of_time = time.strftime("%Y-%m-%d")
request = urllib2.Request(url = '<http://stackoverflow.com/users/rep/%i/2008-01-01/%s>' % (user, end_of_time))
qa_data = json.load(urllib2.urlopen(request))
print len(qa_data)
qdict = {}
adict = {}
for post in qa_data:
q = Question(post)
# If post has a '#' then it's an answer
if "#" in q.post_url:
adict[q.id] = q
else:
qdict[q

