1. 首页
  2. 移动开发
  3. 其他
  4. decred price:使用Python获取确定的价格 源码

decred price:使用Python获取确定的价格 源码

上传者: 2021-04-04 12:20:15上传 ZIP文件 1.39KB 热度 23次
决定的价格 在Python 获得确定的价格。 参见 import requests import json from forex_python . converter import CurrencyRates import os c = CurrencyRates () rate = c . get_rate ( 'USD' , 'EUR' ) print ( rate ) decred_api_url = 'https://api.coinmarketcap.com/v1/ticker/decred/' response = requests . get ( decred_api_url ) response_json = response . json () print ( response_json ) for coin in response . json (): pr
用户评论