vote up 0 vote down star
2

The Challenge

Create a simple HTML screen scraper that finds all links to stackexchange sites on a given start page and attempts to fetch the number of questions on each site. Results should be fetched in parallel with the top 20 listed in descending order.

With all the new stack exchange sites springing up, I was wondering which ones were developing the biggest communities. So I wrote a little C# program that uses Regex, LINQ to Objects and asynchronous delegates to fetch and summarize this information based on the number of questions on each site.

I'd love to see how something like this could be implemented in a range of different languages.

Current Results

406   http://www.epicadvice.com
406   http://epicadvice.com
404   http://mathoverflow.net
326   http://answers.onstartups.com
313   http://ask.recipelabs.com
232   http://moms4mom.com
204   http://fogbugz.stackexchange.com
153   http://ask.sqlservercentral.com
128   http://smartergamer.stackexchange.com
108   http://ask.sqlteam.com
94    http://www.acurioushome.com
93    http://www.videowtf.com
91    http://know.bbhacker.com
73    http://forceclose.stackexchange.com
72    http://kiln.stackexchange.com
70    http://nullpointer.ph
67    http://uxexchange.stackexchange.com
64    http://officequestions.com
60    http://www.sharepointoverflow.com
60    http://outflopped.com
flag
4  
a) Your solution should be an answer, not part of the question. That's what answers are for. b) I suspect this will be unpopular for being "too long." c) Your code golf is a bit underspecified, see meta.stackoverflow.com/questions/24242/… for what Stack Overflow informally considers to be a "good" code golf question. – Chris Lutz Oct 21 at 1:54
3  
Some languages don't provide multithreading or network I/O. Code golf questions should IMO be open to all programming languages (except a few which are useless anyway =]). – strager Oct 21 at 18:21
1  
If this is golf, shouldn't you be posting up the character count with the answer? – gnibbler Oct 21 at 22:04
1  
@Brian, And that is an example of why this isn't really a good problem for code golf. – strager Oct 22 at 2:32
3  
Not having stable inputs is another problem for code golf – gnibbler Oct 22 at 2:57
show 6 more comments

closed as not a real question by Lucas McCoy, strager, Adam Rosenfield, Daniel A. White, Rob Oct 22 at 4:53

6 Answers

vote up 0 vote down

Here is a readable solution in C#.

var countRegex = new Regex(@"<div class=""summarycount""[^>]*>([^<]*)</div>",
                          RegexOptions.Compiled);
var worker = new Func<string, int>(url => {
        string siteHtml;
        try {
            siteHtml = new WebClient().DownloadString(url + "/questions");
        } catch (WebException) {
            return -1;
        }
        var match = countRegex.Match(siteHtml);
        return match.Success ? int.Parse(match.Groups[1].Value) : -1;
    });
var startUrl = "http://meta.stackexchange.com/questions/4";
var startHtml = new WebClient().DownloadString(startUrl);
var jobs = Regex.Matches(startHtml,
                         @"<a href=\""(http://[^/""]*)/?\"" rel=""nofollow"">")
    .Cast<Match>()
    .Select(match => match.Groups[1].Value)
    .Distinct(StringComparer.InvariantCultureIgnoreCase)
    .Select(site => new {Site = site,
                         Async = worker.BeginInvoke(site, null, null)})
    .ToList();
foreach (var job in jobs) job.Async.AsyncWaitHandle.WaitOne();
var results = jobs
    .Select(job => new {job.Site, Count = worker.EndInvoke(job.Async)})
    .OrderByDescending(result => result.Count)
    .Take(20);
foreach (var result in results) {
    Console.WriteLine("{0,-6}{1}", result.Count, result.Site);
}
link|flag
Does it really take 2 minutes to run? Mine is ~16 seconds – gnibbler Oct 22 at 3:25
It does when you live across the pond! (I live in Australia) – Nathan Baulch Oct 23 at 1:13
That's no excuse, I live in Melbourne too :p – gnibbler Oct 25 at 10:41
vote up 4 vote down

Here is Nathan's solution in F#. Of course it uses F# asyncs, so as to not block threads while doing the parallel web requests.

open WebExtensions
open System
open System.Net
open System.Text.RegularExpressions 

let countRegex = new Regex(@"<div class=""summarycount""[^>]*>([^<]*)</div>",
                              RegexOptions.Compiled)
let GetSummaryCount url = async {
    try
        let uri = new Uri(url + "/questions")
        let! siteHtml = (new WebClient()).AsyncDownloadString(uri)
        let m = countRegex.Match(siteHtml)
        return url, if m.Success then int m.Groups.[1].Value else -1
    with e ->
        return url, -1 }

let startUrl = "http://meta.stackexchange.com/questions/4"
let startHtml = (new WebClient()).DownloadString(startUrl)
Regex.Matches(startHtml, @"<a href=\""(http://[^/""]*)/?\"" rel=""nofollow"">")
|> Seq.cast<Match>
|> Seq.map (fun m -> m.Groups.[1].Value)
|> Seq.distinctBy (fun url -> url.ToLowerInvariant())
|> Seq.map GetSummaryCount
|> Async.Parallel 
|> Async.RunSynchronously 
|> Array.sortBy (fun (url,count) -> -count)
|> Seq.take 20
|> Seq.iter (fun (url,count) -> printfn "%4d %s" count url)
link|flag
vote up 4 vote down

Python - 352 characters (std lib only)

import thread,urllib,re;F=re.findall;U=urllib.urlopen
q="/questions";R=[];A=R.append
def Q(u):
 try:A((int(F(r'ycount".*?(\d+)',U(u+q).read())[0]),u))
 except:A((0,u))
t=[thread.start_new(Q,(u,))for u in F('<li><p><a href="(.*?)/?" r',U('http://meta.stackexchange.com%s/4'%q).read())]
while len(R)<len(t):t
for i in sorted(R)[::-1][:20]:print"%s\t%s"%i

Python - 444 characters (using twisted)

The regexes can be pruned furthur of course, but that increases the risk of breakage if the page changes.

from twisted.web.client import getPage,reactor,defer
import re;R=[];T=reactor;F=re.findall;q="/questions"
def S(a):print"\n".join("%s\t%s"%i for i in sorted(R)[-1:-21:-1])
def Q(C,U):
 try:R[0:0]=[(int(F(r'ycount".*?(\d+)',C)[0]),U)]
 except:U
def X(C):D=defer.DeferredList([getPage(i+q).addBoth(Q,i)for i in F('<li><p><a href="(.*?)/?" r',C)]).addBoth;D(S);D(lambda _:T.stop())
getPage("http://meta.stackexchange.com%s/4"%q).addBoth(X)
T.run()

Here's an ungolfed version for Python

import re
from twisted.web.client import getPage,reactor,defer

result=[]
def showResult(a):
    for n,u in sorted(result,reverse=True)[:20]:
        print n,u

def countQuestions(contents,url):
    try:
        result.append((int(re.findall(r'<div class="summarycount".*?(\d*)</div>',contents)[0]),url))
    except Exception, e:
        print url, e

def extractLinks(contents):
    links=re.findall('<li><p><a href="(.*?)/?" rel',contents)
    dl=defer.DeferredList([getPage(i+"/questions").addCallback(countQuestions,i) for i in links]) 
    dl.addCallback(showResult)
    dl.addCallback(stopNow)

def stopNow(a):
    reactor.stop()

getPage("http://meta.stackexchange.com/questions/4").addCallback(extractLinks)
reactor.run()
464 http://mathoverflow.net
427 http://www.epicadvice.com
340 http://answers.onstartups.com
324 http://ask.recipelabs.com
239 http://moms4mom.com
207 http://fogbugz.stackexchange.com
181 http://ask.sqlservercentral.com
137 http://inwardquest.com
132 http://smartergamer.stackexchange.com
121 http://ask.sqlteam.com
96  http://www.acurioushome.com
93  http://www.videowtf.com
92  http://know.bbhacker.com
78  http://forceclose.stackexchange.com
73  http://kiln.stackexchange.com
71  http://nullpointer.ph
68  http://uxexchange.stackexchange.com
64  http://officequestions.com
64  http://lensfail.stackexchange.com
63  http://www.sharepointoverflow.com

real    0m15.875s
user    0m1.188s
sys 0m0.372s
link|flag
vote up 2 vote down

Python - 417 characters

Features:

  • Good error handling
  • Nice output
  • No external libraries necessary (like twisted...)

Golfed version:

import re,urllib,threading;T,F,L=threading.Thread,re.findall,urllib.urlopen;l=[]
def K(i,l):
 try:l+=[(int(F('<div\s+class="summarycount".*?>(\d+)</div>',L(i+'/questions').read())[0]),i)]
 except:l+=[(-1,i)]
 if len(l)==len(m):
  for c,i in sorted(l)[::-1][:20]:print'%-6d'%c+i
m=set(F('<a\s*href="(http://[\w.]+).+? rel',L("http://meta.stackexchange.com/questions/4").read()))
for i in m:T(None,K,args=(i,l)).start()

Ungolfed a bit:

import re,urllib,threading
T, F, L = threading.Thread, re.findall, urllib.urlopen

l=[]

def K(i,l):
 try:l+=[(int(F('<div\s+class="summarycount".*?>(\d+)</div>',
                L(i+'/questions').read())[0]),i)]
 except:l+=[(-1,i)]
 if len(l)==len(m):
  for c,i in sorted(l)[::-1][:20]:
   print'%-6d'%c+i
m = set(F('<a\s*href="(http://[\w.]+).+? rel',L("http://meta.stackexchange.com/questions/4").read()))
for i in m:T(None,K,args=(i,l)).start()
link|flag
import re;f=re.findall is shorter – gnibbler Oct 22 at 3:29
Good on you for not using twisted :p I think there should be a cleaner way to do it with twisted, but it escapes me for now – gnibbler Oct 22 at 3:43
I did one without twisted too, but I used thread rather than threading – gnibbler Oct 22 at 5:22
I was just envious, because I do not know twisted and your twisted solution looks a bit like magic to me (I guess I should look into twisted...) :) – Kalmi Oct 22 at 18:13
I was surprised, my gut feeling was that the twisted solution would be smaller than threads. The magic is the deferreds, twisted lets you create the webrequest and add a callback without blocking. The callback fires automatically when the request is complete, and of course no threads are needed. The tricky part is shutting down the reactor when you are finished. – gnibbler Oct 25 at 10:49
vote up 3 vote down

255 Characters Ruby:

['rubygems','nokogiri','open-uri'].each{|n|require n};Nokogiri::HTML(open('http://meta.stackexchange.com/questions/4')).css('#answer-5 a').each{|l|Thread.new(l){|a|puts Nokogiri::HTML(open(a['href'] + 'questions/')).at('.summarycount').text+' ' +a.text}}

'ungolfed' version:

require 'rubygems'
require 'nokogiri'
require 'open-uri'

doc = Nokogiri::HTML(open('http://meta.stackexchange.com/questions/4'))

doc.css('#answer-5 a').each do |link|
    Thread.new(link) do |a|
    	puts Nokogiri::HTML(open(a['href'] + 'questions/')).at('.summarycount').text
    	puts ' ' 
    	puts a.text
    end
end

Whoops! Forgot sorting---

['rubygems','nokogiri','open-uri'].map{|n|require n};o=[];Nokogiri::HTML(open('http://meta.stackexchange.com/questions/4')).css('#answer-5 a').map{|l|Thread.new(l){|a|o<<[Nokogiri::HTML(open(a['href'] + 'questions/')).at('.summarycount').text," "+a.text+" \n"]}};puts o.sort_by{|n|-n[0].to_i}.join

(298 Characters.)

link|flag
can you use map instead of each? – gnibbler Oct 22 at 4:26
Thanks! Every Character helps... (and I can't map the output because I'm on a thread). (I also changed the sort_by reverse to a -sign before my condition, to sort highest/lowest not lowest/highest. I kept the join because it removes the automatic linebreaks, which I manually need to add. – CodeJoust Oct 22 at 5:06
I can't run your script because I don't have all the dependencies, but i think .join can be *"" – gnibbler Oct 22 at 23:27
vote up 2 vote down

bash, 362 characters

bash + lynx + grep + perl + sort

rm -f /tmp/2
lynx --dump $1 | grep "[0-9]. http" | grep -v stackexchange.com \
| while read line ; do site=`echo $line | perl -ne 'print /(http:\S+)/'`
lynx --source $site/questions > /tmp/1
noq=`grep summarycount /tmp/1 | perl -ne 'print /(\d+)/'`
if [ "$noq" != "" ] ; then printf '%-6d %s\n' $noq $site >> /tmp/2 ; sort -nru /tmp/2 ; fi
done
sort -nru /tmp/2
link|flag

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