Running Telegram bot made on python as background service on Ubuntu
Couldn't run telegram bot as background service. When run directly from terminal - it works fine. I've made a simple telegram bot using telebot library: import telebot TOKEN = 'my-token' bot = telebot.TeleBot(TOKEN) @bot.message_handler(content_types=['text']) def proc_msg(message): chat_id = message.chat.id bot.send_message(chat_id,text="I'm…