This commit is contained in:
root 2021-04-12 23:41:46 +00:00
parent be6ca4f099
commit da774038ab
2 changed files with 7 additions and 3 deletions

View File

@ -165,8 +165,12 @@ def gecko(bot, trigger):
athusd = j['market_data']['ath']['usd'] athusd = j['market_data']['ath']['usd']
change_1d = j['market_data']['price_change_percentage_24h_in_currency']['usd'] change_1d = j['market_data']['price_change_percentage_24h_in_currency']['usd']
change_1w = j['market_data']['price_change_percentage_7d_in_currency']['usd'] change_1w = j['market_data']['price_change_percentage_7d_in_currency']['usd']
try:
change_1m = j['market_data']['price_change_percentage_30d_in_currency']['usd'] change_1m = j['market_data']['price_change_percentage_30d_in_currency']['usd']
except: change_1m = 0
try:
change_1y = j['market_data']['price_change_percentage_1y_in_currency']['usd'] change_1y = j['market_data']['price_change_percentage_1y_in_currency']['usd']
except: change_1y = 0
bot.say("{} ({}) is #{:.0f} by mcap (${:.2e}) and #{:.0f} by coingecko rank. Current price is {:.8f} BTC / ${:.3f}. ATH price is {:.8f} BTC / ${:.3f}. USD change: 1d {:.1f}%, 1w {:.1f}%, 1m {:.1f}%, 1y {:.1f}%.".format(name, ticker, mcaprank, mcap, geckorank, btcprice, usdprice, athbtc, athusd, change_1d, change_1w, change_1m, change_1y)) bot.say("{} ({}) is #{:.0f} by mcap (${:.2e}) and #{:.0f} by coingecko rank. Current price is {:.8f} BTC / ${:.3f}. ATH price is {:.8f} BTC / ${:.3f}. USD change: 1d {:.1f}%, 1w {:.1f}%, 1m {:.1f}%, 1y {:.1f}%.".format(name, ticker, mcaprank, mcap, geckorank, btcprice, usdprice, athbtc, athusd, change_1d, change_1w, change_1m, change_1y))
except: except:
bot.say("Failed to retrieve or parse data for {}".format(coin)) bot.say("Failed to retrieve or parse data for {}".format(coin))

View File

@ -20,7 +20,7 @@ def fourmatter(bot, trigger):
@sopel.module.commands('_.') @sopel.module.commands('_.')
def faceflip(bot, trigger): def faceflip(bot, trigger):
bot.say(':| .¯. |: ._. :| .¯. |: ._. :| .¯. |: ._.') bot.say(':/ :| :\ .¯. /: |: \: ._. :/ :| :\ .¯. /: |: \: ._.')
@sopel.module.commands('ada', 'hoskinson') @sopel.module.commands('ada', 'hoskinson')
def ada(bot, trigger): def ada(bot, trigger):