如何在Python中实现请求GET

时间:2014-08-05 12:18:53

标签: python api get

我在执行查询GET时遇到了困难。 例如,我没有遇到任何困难的任务,以便于在此页面上获取信息GET https://www.bitstamp.net/api/transactions/

使用过的API https://www.bitstamp.net/api/

我对从语法到您要为此请求安装的模块的所有内容感兴趣

3 个答案:

答案 0 :(得分:1)

你看过这个了吗? http://docs.python-requests.org/en/latest/

e.g:

import requests

response = requests.get(url)
print response.json()

答案 1 :(得分:0)

如果您不想安装额外的库,可以使用pythons urllib2库,就像连接到网址一样简单。

import urllib2
print urllib2.urlopen("https://www.bitstamp.net/api/transactions/").read()

要解析它,请使用pythons json library.

答案 2 :(得分:0)

有一个Python lib,bitstamp-python-client。不要浪费你的时间重新发明轮子。 ; - )