You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from telegram.ext import Updater, MessageHandler, Filters
import logging
database = 'miptnews.db'
if not os.path.isfile(database):
db = sqlite3.connect(database)
c = db.cursor()
c.execute('CREATE TABLE miptnews (id INTEGER PRIMARY KEY, text VARCHAR(200), link VARCHAR(100), date UNIX_TIME, publish UNIX_TIME, chat_id INTEGER, message_id INTEGER)')