欢迎来到天天文库
浏览记录
ID:8836504
大小:54.00 KB
页数:2页
时间:2018-04-09
《基于python的百度权重接口调用代码实例》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、基于Python的百度权重接口调用代码实例代码描述:基于Python的百度权重接口调用代码实例代码平台:聚合数据#!/usr/bin/python#-*-coding:utf-8-*-importjson,urllibfromurllibimporturlencode #----------------------------------#百度权重调用示例代码-聚合数据#在线接口文档:http://www.juhe.cn/docs/161#---------------------------------- defmai
2、n(): #配置您申请的APPKey appkey="*********************" #1.根据网址查询百度权重 request1(appkey,"GET") #根据网址查询百度权重defrequest1(appkey,m="GET"): url="http://op.juhe.cn/baiduWeight/index" params={ "dtype":"",#返回的格式,json或xml,默认json "key":appkey,#您
3、申请到的APPKEY "domain":"",#要查询的网址 } params=urlencode(params) ifm=="GET": f=urllib.urlopen("%s?%s"%(url,params)) else: f=urllib.urlopen(url,params) content=f.read() res=json.loads(content) ifres: error_code=res["erro
4、r_code"] iferror_code==0: #成功请求 printres["result"] else: print"%s:%s"%(res["error_code"],res["reason"]) else: print"requestapierror" if__name__=='__main__': main()
此文档下载收益归作者所有