A small python module to get 12,000 cryptocurrencies information from coingecko
Main Stack: Python
Packages/Modules: requests
Sure to have requests module
Clone or download this project.
Import cryptoino
to your project and use Coin()
class
or install using pip.
pip install cryptoino
from cryptoino import Coin
doge = Coin(name="dogecoin" , target_currency="usd")
print("Current btc price:", doge.get_current_price(),"USD")
Successful test on:
- Python 3.7
- Python 3.8
- Python 3.10