如何更新库存API中的价格不会更新

问题描述

我正在尝试使用python从API获取股票价格,但问题是,当我将其放入while循环时,它不会更新,而价格在api中正在更新,另一件事是无论如何,每5分钟循环一次?这是代码


import urllib.request
import json


urlprices = "https://financialmodelingprep.com/api/v3/quote-short/AMZN?apikey=555555555555555555"

obj = urllib.request.urlopen(urlprices)

data = json.load(obj)

a = 0

while a == 0:
    
    print(float(data[0]['price']))
        



enter image description here

解决方法

可能的,但是您需要在while循环中更新数据:

import urllib.request
import json
import time


a = 0

while a == 0:
    urlprices = "https://financialmodelingprep.com/api/v3/quote-short/AMZN?apikey=555555555555555555"

    obj = urllib.request.urlopen(urlprices)

    data = json.load(obj)
    print(float(data[0]['price']))
    # here you should add a pause so that the loop will not hit the request limit for the api
    time.sleep(300)