#!/usr/bin/python
# encoding:utf-8
import requests
# 2、上海期货交易所价格
data = {}
data["appkey"] = "your_appkey_here"
url = "https://api.jisuapi.com/silver/shfutures"
response = requests.get(url,params=data)
jsonarr = response.json()
if jsonarr["status"] != 0:
print(jsonarr["msg"])
exit()
result = jsonarr["result"]
for val in result:
print(val["type"], val["typename"], val["price"], val["changequantity"], val["buyprice"], val["buyamount"], val[
"sellprice"], val["sellamount"], val["tradeamount"], val["openingprice"], val["lastclosingprice"], val[
"maxprice"], val["minprice"], val["holdamount"], val["increaseamount"])


© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875