telegrambot/main.py
2024-05-14 21:21:27 +03:00

43 lines
No EOL
1.3 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import telebot
import datetime
import sqlite3
class Database:
def __init__(self,db_name) -> None:
self.db_name = db_name
self.__create_table()
def __create_table(self):
sql = self.connect_db()
self.close(sql['connect'],sql['cursor'])
def connect_db(self):
with sqlite3.connect(self.db_name) as connect:
cursor = connect.cursor()
return {"connect":connect,"cursor":cursor}
def close(self,connect,cursor):
cursor.close()
connect.close()
class TelegramBot(Database):
def __init__(self,db_name,token):
super().__init__(db_name)
self.bot = telebot.TeleBot(token)
self.router()
def router(self):
@self.bot.message_handler(commands=['start'])
def start(message):
self.bot.send_message(
message.chat.id,
f"Добро пожаловать, {message.from_user.first_name}"
)
@self.bot.message_handler(func=lambda message: True)
def echo_all(message):
self.bot.reply_to(message,"Не понимаю")
self.bot.delete_message(chat_id=message.chat.id,message_id=message.message_id,timeout=1000)
self.bot.polling()
TelegramBot(
db_name="tg.db",
token=""
)