1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 07:31:48 +00:00

Merge branch 'canaryCanary' into 'canary'

Fixes inline search functionality

See merge request simple-stock-bots/simple-telegram-stock-bot!21
This commit is contained in:
2021-05-27 05:24:44 +00:00
4 changed files with 47 additions and 21 deletions

View File

@@ -50,8 +50,11 @@ class cg_Crypto:
).json()
symbols = pd.DataFrame(data=raw_symbols)
symbols["description"] = "$$" + symbols["symbol"] + ": " + symbols["name"]
symbols["description"] = (
"$$" + symbols["symbol"].str.upper() + ": " + symbols["name"]
)
symbols = symbols[["id", "symbol", "name", "description"]]
symbols["type_id"] = "$$" + symbols["id"]
self.symbol_list = symbols
if return_df:
@@ -301,19 +304,15 @@ class cg_Crypto:
).json()
replies = []
for name, val in prices.items():
if price := val.get("usd"):
price = val.get("usd")
else:
replies.append(f"{name} price data unavailable.")
break
for coin in coins:
if coin.id in prices:
p = prices[coin.id]
change = 0
if val.get("usd_24h_change") is not None:
change = val.get("usd_24h_change")
if p.get("usd_24h_change") is None:
p["usd_24h_change"] = 0
replies.append(
f"{name}: ${price:,} and has moved {change:.2f}% in the past 24 hours."
)
replies.append(
f"{coin.name}: ${p.get('usd',0):,} and has moved {p.get('usd_24h_change',0.0):.2f}% in the past 24 hours."
)
return replies