Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

google page rank get in python

Tags:

python

seo

I need google page rank get in python. There i can officially extract it? i mean i can parse some thing like this http://www.prchecker.info But there these sites get data officially from google? or may i can use some python seo libs for this?

like image 775
Evg Avatar asked Jan 22 '23 15:01

Evg


1 Answers

I needed to recently do the same thing and couldn't find any examples of working python code to get the google page rank via their toolbar API. I did find an example written in perl on CPAN (WWW:Google:PageRank) and I reimplemented it in python. I also have a class for getting the Alexa traffic rank from their toolbar.

https://github.com/aablack/websearchapp/blob/master/search/rank_provider.py

I know the question is old but I'm hoping it may be of use to other people searching for solutions to this problem.

like image 125
mrpringle Avatar answered Jan 29 '23 09:01

mrpringle