views:

279

answers:

2

hello,

how can I automate finding the pagerank of a domain? I came across this Python script but it no longer works. Seems Google doesn't like people automating this.

So, is there an alternative provider of page rank scores? I do not need the exact same result as Google, but something comparable.

+2  A: 

Have you tried HalOtis Marketing's Page Rank script at http://www.halotis.com/2009/08/02/google-page-range-python-script/? He generally writes good, simple Python code for exactly this kind of stuff.

ewall
actually that is the same script - he copied it from the example I gave
Plumo
Ah, I see that now. HalOtis even mentions it in the first line of the blog post. Guess I should read a little closer!
ewall
+3  A: 

Here is a python script which does work. I had to do exactly the same thing recently!

Nick Craig-Wood
you're right - it works! Google must have updated that hash algorithm, which broke the earlier script.
Plumo