Fix connection error to coingecko breaking the loop
This commit is contained in:
parent
5a060342a4
commit
c85a7520ce
|
@ -27,7 +27,7 @@ def annoy(self, invkr_id, parameter):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
if not parameter:
|
if not len(parameter) != 1:
|
||||||
err = "Please use the command like this: .annoy TARGET MESSAGE"
|
err = "Please use the command like this: .annoy TARGET MESSAGE"
|
||||||
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
|
self.bot.sendtextmessage(targetmode=1, target=invkr_id, msg=err)
|
||||||
return
|
return
|
||||||
|
|
12
src/gecko.py
12
src/gecko.py
|
@ -3,12 +3,13 @@ TBD
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = "Lukas Mahler"
|
__author__ = "Lukas Mahler"
|
||||||
__version__ = "0.0.0"
|
__version__ = "0.0.1"
|
||||||
__date__ = "27.09.2021"
|
__date__ = "04.02.2022"
|
||||||
__email__ = "m@hler.eu"
|
__email__ = "m@hler.eu"
|
||||||
__status__ = "Development"
|
__status__ = "Development"
|
||||||
|
|
||||||
# Imports
|
# Imports
|
||||||
|
from datetime import datetime
|
||||||
from pycoingecko import CoinGeckoAPI
|
from pycoingecko import CoinGeckoAPI
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,7 +45,12 @@ class GeckoAPI:
|
||||||
|
|
||||||
matching = [x for x in self.coinlist if x["id"] == symbol_id.lower()]
|
matching = [x for x in self.coinlist if x["id"] == symbol_id.lower()]
|
||||||
if len(matching) == 1:
|
if len(matching) == 1:
|
||||||
resp_dict = self.api.get_price(ids=matching[0]["id"], vs_currencies=curr.lower())
|
try:
|
||||||
|
resp_dict = self.api.get_price(ids=matching[0]["id"], vs_currencies=curr.lower())
|
||||||
|
except Exception as e:
|
||||||
|
with open("gecko_error.log", 'a+') as log:
|
||||||
|
log.write(f"{datetime.now():%Y-%m-%d %H:%M} | {e}\n")
|
||||||
|
return "Error"
|
||||||
price = resp_dict[matching[0]["id"]][curr.lower()]
|
price = resp_dict[matching[0]["id"]][curr.lower()]
|
||||||
if isinstance(price, int):
|
if isinstance(price, int):
|
||||||
price = float(price) # Convert to always have floats
|
price = float(price) # Convert to always have floats
|
||||||
|
|
Loading…
Reference in New Issue