KeyError: 'RAW'
SemElVik opened this issue · 6 comments
SemElVik commented
Traceback (most recent call last):
File "<string*>", line 25, in <module*>
KeyError: 'RAW'
scrypt - KeyErr.txt
12.2.1 (21D62) Monterey
stopped working a couple of days ago.
I looked at the closed issue
, but I'm not sure if I see a solution there
chrislennon commented
SemElVik commented
chrislennon commented
This comment should cover it, it looks like you need to include the apikey inside the " " before the .format()
i.e.
url = "https://min-api.cryptocompare.com/data/pricemultifull?fsyms={}&tsyms={}&api_key=10817XXX....".format(coin_ticker, fiat_ticker)
SemElVik commented
chrislennon commented
That did actually fix it as you have another error (line 20 passed, new error is on line 22).
That error is python complaining that the indentation does not match the previous line.
I'm unsure what exactly changed but if you create a fresh export from the site and only modify the url line as you did, it should work.
SemElVik commented
yes it worked
thanks!