sprint/Main/management/commands/bot.py
2021-11-06 12:43:21 +03:00

20 lines
516 B
Python

import telebot
from django.core.management.base import BaseCommand
bot = telebot.TeleBot("1994460106:AAGrGsCZjF6DVG_T-zycELuVfxnWw8x7UyU")
@bot.message_handler(commands=["start"])
@bot.message_handler(content_types=["text"])
def do_action(message):
bot.send_message(chat_id=message.chat.id, text=f"ID чата: {message.chat.id}")
class Command(BaseCommand):
help = 'starts bot'
def handle(self, *args, **options):
print('bot is starting')
bot.polling()
print('bot failed')