mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-16 03:35:33 +00:00
7 lines
197 B
Python
7 lines
197 B
Python
|
import requests
|
||
|
|
||
|
|
||
|
def get_ethereum_price_in_usd() -> float:
|
||
|
url = 'https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD'
|
||
|
return float(requests.request('GET', url).json()['USD'])
|