Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
STI26 committed Nov 24, 2020
1 parent 8fe33b2 commit b362d53
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions application.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
BASE_URL = f'/{conf.TOKEN}/'
API_KEY = conf.API_KEY
GLOBAL_COMMANDS = {
'start': """Вас приветствует IEXStockQuoteBot бот.
Для получения текущих котировок введите "/" + тикер.\n
Пример: /AAPL""",
'help': """Для получения текущих котировок введите "/" + тикер.\n
Пример: /AAPL
Все данные взяты с IEX Cloud Financial Data API:
<a href="https://iexcloud.io/">https://iexcloud.io/</a>"""
'start': '<b>Вас приветствует IEXStockQuoteBot бот.</b>\n \
Для получения текущих котировок введите "/" + тикер.\n \
Пример: /AAPL',
'help': 'Для получения текущих котировок введите "/" + тикер.\n \
Пример: /AAPL\n \
Все данные взяты с IEX Cloud Financial Data API:\n \
<a href="https://iexcloud.io/">https://iexcloud.io/</a>'
}


Expand Down Expand Up @@ -78,6 +78,7 @@ def index():
# Check global commands
if GLOBAL_COMMANDS.get(symbol):
send_message(chat_id, GLOBAL_COMMANDS[symbol])
return jsonify(response)

# Get quote
obj = get_quote(symbol, API_KEY)
Expand Down

0 comments on commit b362d53

Please sign in to comment.