我不想将两个 API 值存储到 2 个不同的变量中,这就是我的代码:
@app.route('/bflipper', methods=['POST', 'GET'])
def bFlipper():
f = requests.get(
'https://api.hypixel.net/skyblock/bazaar?key=[cannot show key]').json()
products = [
{
"id": product["product_id"],
"sell_price": product["sell_summary"][:1], #I want to store this
"buy_price": product["buy_summary"][:1], # and this
"sell_volume": product["quick_status"]["sellVolume"],
"buy_volume": product["quick_status"]["buyVolume"],
}
for product in f["products"].values()
]
if request.method == 'POST':
userInput = request.form['coins']
return render_template("flipper.html", userInput=userInput, products=products)
else:
return render_template("flipper.html")
我想将“sell_price”和“buy_price”存储到两个不同的变量中,然后能够将它们返回到我的 HTML 文件中,我该怎么做?
我试着做:
sellPrice = products[2] & products[3](买价)
但似乎不起作用。
精慕HU
相关分类