decred price:使用Python获取确定的价格 源码
决定的价格 在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
用户评论