database_module #17

Merged
Miroslavsckaya merged 20 commits from database_interaction into master 2022-05-29 20:19:18 +00:00
Showing only changes of commit 91e84bfd67 - Show all commits

View file

@ -12,6 +12,11 @@ class Database():
self.cur.execute('INSERT INTO users (telegram_id) VALUES (:telegram_id)', {'telegram_id': telegram_id})
return self.cur.lastrowid
def get_user(self, telegram_id: str) -> tuple | None:
self.cur.execute('SELECT id FROM users WHERE telegram_id = :telegram_id', {'telegram_id': telegram_id})
id = self.cur.fetchone()
return id
def add_rss_feed():
pass
@ -28,4 +33,4 @@ class Database():
pass
def storing_feed_content():
pass
pass