0
我一直在試圖從BTC-E價格API中獲取價格,例如我不能指定price[109:116]
。因爲如果發生這種情況,它會以錯誤的格式打印2個數字。我只需要後搶什麼 「最後:」使用Python獲取API
from urllib2 import Request, urlopen, URLError
def btceapi():
request = Request('https://btc-e.com/api/2/btc_usd/ticker')
try:
response = urlopen(request)
price = response.read()
print price[109:116]
except URLError, e:
print 'Not Found'
btceapi()
太棒了!謝啦! – GTAirpline