Merge pull request #34 from scoobybejesus/patch-6

Round top for <100B
This commit is contained in:
jw 2018-01-10 20:44:15 -08:00 committed by GitHub
commit f51753ea77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -386,7 +386,10 @@ def top(bot, trigger):
price_btc = float(i['price_btc']) price_btc = float(i['price_btc'])
market_cap_usd = float(i['market_cap_usd']) market_cap_usd = float(i['market_cap_usd'])
if market_cap_usd >= 1000000000: if market_cap_usd >= 1000000000:
market_cap_short = int(int(round(market_cap_usd,-9))/int(1000000000)) if market_cap_usd >= 100000000000:
market_cap_short = int(int(round(market_cap_usd,-9))/int(1000000000))
else:
market_cap_short = float(int(round(market_cap_usd,-8))/int(1000000000))
rounded_mcap = str(market_cap_short)+"B" rounded_mcap = str(market_cap_short)+"B"
else: else:
rounded_mcap = "tiny" rounded_mcap = "tiny"