0

我需要使用这个 API http://pagerank.my-addr.com/external_fakepr_api/API_Key_Here/www.websitehere.com 来获得每个网站的评分。我不确定如何使用 Python 从该站点检索数字评级。如果不使用任何外部模块,我将如何做到这一点?

4

1 回答 1

1

这是一种方法。

import urllib2

def ranker(host):
    api_key = 'xxxxxxxxxxxxxxxxx'
    url = 'http://pagerank.my-addr.com/external_fakepr_api/%s/%s'%(api_key, host)

    link =  urllib2.urlopen(url)
    data = link.readline()
    return data.split('|')[0]

print 'www.example.com', ranker('www.example.com')
于 2014-05-12T15:39:30.843 回答