Python 调用百度API

纸上得来终觉浅,绝知此事要躬行

今天稍微看了一下百度的API,试了一下如何调用那些API,发现其实是很容易的。

步骤:

1.访问百度API Store;

2.找到想要调用的API,这里我尝试的是百度美女图片

Paste_Image.png

请求实例:

\# -\*- coding: utf-8 -\*-

import sys, urllib, urllib2, json

url = \&\#39\;http://apis.baidu.com/txapi/mvtp/meinv?num=10\&\#39\;

req = urllib2.Request(url)

req.add_header("apikey", "您自己的apikey")

resp = urllib2.urlopen(req)

content = resp.read()

if(content):

print(content)

3.按照说明,自己稍作修改即可。

我的代码:(比较乱,请谅解)

首先引入库,这里需要用到requests,json

import requests

import json

然后写api地址,参数表

url = \&\#39\;http://apis.baidu.com/txapi/mvtp/meinv\&\#39\;

headers = {\&\#39\;apikey\&\#39\;:\&\#39\;*******(这里用你自己的apikey)\&\#39\;}

params = {\&\#39\;num\&\#39\;:\&\#39\;10\&\#39\;}

发出请求,得到响应

r = requests.get(url,params = params,headers=headers)

r = r.json()

定义一个存图片的函数

def saveImage(imgUrl,imgName= \&\#39\;default.jpg\&\#39\;):

response = requests.get(imgUrl,stream = True)

image = response.content

dst = "f:\baidu_img\"

path = dst+imgName

print \&\#39\;save the file:\&\#39\;+path+\&\#39\;\n\&\#39\;

with open(path,\&\#39\;wb\&\#39\;) as img:

img.write(image)

img.close()

开始获取图片地址,保存

def run():

for line in r[\&\#39\;newslist\&\#39\;]:

title = line[\&\#39\;title\&\#39\;]

picUrl = line[\&\#39\;picUrl\&\#39\;]

saveImage(picUrl,imgName=title+\&\#39\;.jpg\&\#39\;)

run()

运行结果:

Paste_Image.png

对于其他的API的调用,原理都一样,按照要求发出请求,然后对响应文本进行解析,得到自己想要的数据。

下面再给一个api调用的实例代码,也是调用的图片(用有图片的例子来写,结果比较明显)

\# -*- coding:utf-8 -*-

import requests

url_1 = "http://www.tngou.net/tnfs/api/list"

\#url_2 = "http://www.tngou.net/tnfs/api/classify"

src_header = "http://tnfs.tngou.net/image"

headers = {\&\#39\;apikey\&\#39\;:\&\#39\;*******(这里用你自己的apikey)\&\#39\;}

params_1 = {

\&\#39\;page\&\#39\;:3,

\&\#39\;rows\&\#39\;:20,

\&\#39\;id\&\#39\;:6 #需根据classify结果才能知道

}

r = requests.get(url_1)

r = r.json()

\#保存图片到本地路径

def saveImage(imgUrl,imgName= \&\#39\;default.jpg\&\#39\;):

response = requests.get(imgUrl,stream = True)

image = response.content

dst = "f:\baidu_img\"

path = dst+imgName

print \&\#39\;save the file:\&\#39\;+path+\&\#39\;\n\&\#39\;

with open(path,\&\#39\;wb\&\#39\;) as img:

img.write(image)

img.close()

\#开始

def run():

for line in r[\&\#39\;tngou\&\#39\;]:

title = line[\&\#39\;title\&\#39\;]

img = line[\&\#39\;img\&\#39\;]

src_path = src_header+img

saveImage(src_path,title+\&\#39\;.jpg\&\#39\;)

run()

现在,是不是觉得很简单?当然,你也可以直接用requests,而不用调用API,对响应文本用正则表达式匹配,得到想要的数据。

欢迎加入本站公开兴趣群

软件开发技术群

兴趣范围包括:Java,C/C++,Python,PHP,Ruby,shell等各种语言开发经验交流,各种框架使用,外包项目机会,学习、培训、跳槽等交流

QQ群:26931708

Hadoop源代码研究群

兴趣范围包括:Hadoop源代码解读,改进,优化,分布式系统场景定制,与Hadoop有关的各种开源项目,总之就是玩转Hadoop

QQ群:288410967

;