vote up 9 vote down star
8

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 -

  1. 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.

  2. 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.

  3. 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.

  4. 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.

  5. 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?

  6. 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
            
flag
Arrrrgs should be a 'best practice' – Grant Jan 25 at 4:57

3 Answers

vote up 2 vote down

When I was more or less porting the original Python code to my PHP rep tracking service, one big speedup I noticed was when I checked to see if the database needed to be updated for each post. If you're checking frequently, all or nearly all the questions have the same score, so there's no point in updating them in the database. I'd say this one change alone cut the processing time by 75%.

i.e. change this:

cursor.execute('UPDATE Questions SET ...

to this:

else:cursor.execute('UPDATE Questions SET ...
link|flag
Cheers Dude, I'll test/update when I get a mo. – Kev Jan 26 at 14:02
vote up 1 vote down

A couple of comments:

  1. Make the user ID more conspicuous, i.e. as a CAPITAL_WORD at the top of the file
  2. You don't specify which JSON module to use. Is it the built-in JSON in 2.6, demjson, or what?
link|flag
Comments appreciated. The 'user' id is the same casing/location as the original code but I've highlighted it with a 'louder' comment. Feel free to fiddle with it. – Kev Jan 24 at 7:00
what about the json module? – eliben Jan 24 at 7:19
Read comments at top of code. – Kev Jan 24 at 15:50
Ah, a 2.6 must... That sucks, because most code still runs in 2.5 and that's what most people have installed on their machines. – eliben Jan 25 at 8:28
To be honest it's only the json bits that are 2.6 specific which is compatible with simplejson under 2.5. A two minute fix for anyone with the barest knowledge of python i'm sure. – Kev Jan 25 at 16:51
vote up 1 vote down

What's all this then?

Sweet, I approve.

What's this about a http://stackoverflow.com/users/{userid}/rep/{start-date}/{end-date}? I tired http://stackoverflow.com/users/30/rep/start-date/end-date but I got a lol-error.

Edit - Apparently it's http://stackoverflow.com/users/30/rep/2008-01-01/2009-01-31 Some fizzle forgot to replace the start and end dates.

alt text

link|flag
Hey Grant...did u try it with hyphens in the date: stackoverflow.com/users/30/…. Also hope you didn't mind me pilfering your code :). – Kev Jan 25 at 5:15
HA! Start-Date and End-Date could be written as {start-date} and {end-date}. Curly brackets remind me to replace things. – Grant Jan 25 at 6:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.