parse_price.py 141 B

12345
  1. from pycoingecko import CoinGeckoAPI
  2. cg = CoinGeckoAPI()
  3. result = cg.get_price(ids=list(['ethereumpow']), vs_currencies='usd')
  4. print(result)