Python - StackOverflow Fight
Python - StackOverflow Fight
Submitted by noreply@blogger.com (Corey Goldberg) on Tue, 30/09/2008 - 20:07.I've been having fun using the new StackOverflow site for answering technical questions.
Here is a Python script I call 'StackOverlow Fight' (like Google Fight). It takes a list of tags and gets the count of questions that are tagged with each one.
As an example, here is StackOverflow fight between some popular programming languages:
#!/usr/bin/env python
import urllib
import re
langs = ('python', 'ruby', 'perl', 'java')
url_stem = 'http://stackoverflow.com/questions/tagged/'
counts = {}
for lang in langs:
resp = urllib.urlopen(url_stem + lang).read()
m = re.search('summarycount.*>(.*)<', resp)
count = int(m.group(1).replace(',', ''))
counts[lang] = count
print lang, ':', count
sorted_counts = sorted(counts.items(), key=lambda(k,v):(v,k))
sorted_counts.reverse()
print sorted_counts[0][0], 'wins with', sorted_counts[0][1]
Output:
python : 733 ruby : 391 perl : 167 java : 1440 java wins with 1440
