#!/usr/bin/python3 from telebot import TeleBot from telebot import formatting from fortniteStatusWrapper import formatFortniteStatus from pythonFortniteStatus.FortniteStatus import * bot = TeleBot('6860285100:AAFkBS_ncl38XN4_Em_nzSt93Jlwc5BJ9mU') fortniteStatus = FortniteStatus() @bot.message_handler(commands = ['start']) def url(message): bot.reply_to(message, "This bot is doing nothing so far..") @bot.message_handler(commands = ['status']) def fortniteStatusCommand(message): bot.send_message( message.chat.id, formatFortniteStatus(fortniteStatus.getStatus()), parse_mode='MarkdownV2' ) bot.polling(none_stop=True, interval=0)