python-coinmarketcap error json.decoder.JSONDecodeError

73 Views Asked by At

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
1

There are 1 best solutions below

0
On

try running:

cmc.cryptocurrency_listings_latest().status

I get:

{'timestamp': '2022-06-27T03:17:48.811Z',
 'error_code': 0,
 'error_message': None,
 'elapsed': 19,
 'credit_count': 1,
 'notice': None,
 'total_count': 9924}