def sendall(text):
if len(config.users) > 0:
for user in config.users:
try:
bot.send_message(user, text)
except:
print()
...
тело бота с функциями
...
sendall('Бот запущен и готов к работе!')
bot.polling()
#!/bin/bash
PIDFILE=/home/admin/bot-file.pid
if pgrep --pidfile $PIDFILE &>/dev/null; then
echo "Exit! Python bot is already running!"
exit 1
else
nohup /usr/bin/python3.6 /home/admin/bot-file.py &>/home/admin/bot-file.log &
echo $!>$PIDFILE
fi
if pgrep -f "/usr/bin/python3.6 /home/usertest/bot.py" >&/dev/null
if pgrep -f "/home/usertest/bot.py" >&/dev/null