Created
May 11, 2022 20:24
-
-
Save KenoLeon/4ba92f1d2fe1e2213390f3f93597f18f to your computer and use it in GitHub Desktop.
coingecko api call
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pycoingecko import CoinGeckoAPI | |
| cg = CoinGeckoAPI() | |
| currentBTCPrice = cg.get_price(ids='bitcoin', vs_currencies='usd') | |
| print(currentBTCPrice) | |
| # >> {'bitcoin': {'usd': 29202}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment