Fix local monero
This commit is contained in:
parent
c8d6553595
commit
ebb5d91213
6
price.py
6
price.py
|
@ -788,14 +788,10 @@ def xmy(bot, trigger):
|
||||||
|
|
||||||
@sopel.module.commands('localmonero', 'localxmr', 'lxmr', 'lm', 'street')
|
@sopel.module.commands('localmonero', 'localxmr', 'lxmr', 'lm', 'street')
|
||||||
def localmonero(bot, trigger):
|
def localmonero(bot, trigger):
|
||||||
stringtosay = ''
|
|
||||||
try:
|
try:
|
||||||
r = requests.get(localmonerousd)
|
r = requests.get(localmonerousd)
|
||||||
j = r.json()
|
j = r.json()
|
||||||
stringtosay += "LocalMonero XMR/USD 1h-avg: ${0:.2f}, 6h-avg: ${0:.2f}, 12h-avg: ${0:.2f}, 24h-avg: ${0:.2f}.".format(float(j['USD']['avg_1h']), float(j['USD']['avg_6h']), float(j['USD']['avg_12h']), float(j['USD']['avg_24h']))
|
stringtosay = "LocalMonero XMR/USD 12h-avg: ${0:.2f}, 24h-avg: ${0:.2f}.".format(float(j['USD']['avg_12h']), float(j['USD']['avg_24h']))
|
||||||
except:
|
|
||||||
bot.say("Error getting XMR/USD data")
|
|
||||||
try:
|
|
||||||
bot.say(stringtosay)
|
bot.say(stringtosay)
|
||||||
except:
|
except:
|
||||||
bot.say("Error getting data")
|
bot.say("Error getting data")
|
||||||
|
|
Loading…
Reference in New Issue