在Python中使用特定的API

时间:2013-04-02 22:59:14

标签: python api

我是Python的新手(并且对于编程而言相对较新)并且非常感谢任何帮助。

如何使用以下示例链接使用Python下载提供的信息。

https://url.com/InfoService/GetFlightByFlightNum?board= {BOARD}&安培; flightNum = {FLIGHTNUM}

方法:GET

由于

2 个答案:

答案 0 :(得分:1)

从python访问API的最简单方法是使用requests

您可以使用pip install requests

快速安装它

然后你可以为你的例子做到这一点:

import requests

payload = {'board': {BOARD}, 'flightNum': {FLIGHTNUM}}
r = requests.get('https://url.com/InfoService/GetFlightByFlightNum', params=payload)

# print the response result
print r.text

答案 1 :(得分:0)

您可以使用内置库urllib2。

Python 2文档:http://docs.python.org/2/library/urllib2.html

Python 3文档:http://docs.python.org/3.1/howto/urllib2.html

以下是一些示例:How do I download a file over HTTP using Python?