I'm working on a trading bot and I pull some information from coinmarketcap using the python-coinmarketcap
package. It has been working perfectly until yesterday. Now, every time the program reaches the line, it throws this error: json.decoder.JSONDecodeError
.
Anybody knows why have this happened? I've tried to read the documentation all day long, but it seems to be unavailable. I write down below some code to replicate the behavior (excluding my API key):
python-coinmarketcap
and requests
must be installed from pip
.
import coinmarketcapapi as cmcapi
cmc = cmcapi.CoinMarketCapAPI(config.COINMARKETCAP_API_KEY)
cmc.cryptocurrency_listings_latest().data
try running:
I get: