python执行curl_如何使用python执行curl命令

我想在python中执行curl命令。

通常,我只需在终端输入命令并按返回键。但是,我不知道它在python中是如何工作的。

该命令如下:curl -d @request.json --header "Content-Type: application/json" https://www.googleapis.com/qpxExpress/v1/trips/search?key=mykeyhere

要发送一个request.json文件以获得响应。import pycurl

import StringIO

response = StringIO.StringIO()

c = pycurl.Curl()

c.setopt(c.URL, 'https://www.googleapis.com/qpxExpress/v1/trips/search?key=mykeyhere')

c.setopt(c.WRITEFUNCTION, response.write)

c.setopt(c.HTTPHEADER, ['Content-Type: application/json','Accept-Charset: UTF-8'])

c.setopt(c.POSTFIELDS, '@request.json')

c.perform()

c.close()

print response.getvalue()

response.close()

错误信息是‘Parse Error’。有人能告诉我如何修复它吗?或者如何正确地从服务器获得响应?

你可能感兴趣的:(python执行curl)