Code cleanup

This commit is contained in:
Schimon Jehudah 2022-06-21 14:52:13 +00:00
parent 2d8ecaeb22
commit 030b3e1056

View file

@ -78,19 +78,10 @@ class EchoBot(slixmpp.ClientXMPP):
# download_updates(msg['from']) # download_updates(msg['from'])
message = " ".join(msg['body'].split()) message = " ".join(msg['body'].split())
if message.startswith('update'): if message.startswith('update'):
print("sending to: + msg['from'].bare") action = "/me is scanning feeds for updates..."
print("sending to: " + msg['from'].bare) initdb(msg['from'].bare,
news = initdb(msg['from'].bare,
False, False,
download_updates) download_updates)
if news:
today = str(date.today())
news.insert = [0, 'News fetched on: ' + today]
for new in news:
msg.reply(new).send()
action = "End of News update"
else:
action = "No News update"
elif message.startswith('recent updates '): elif message.startswith('recent updates '):
action = initdb(msg['from'].bare, action = initdb(msg['from'].bare,
message[14:], message[14:],
@ -309,7 +300,6 @@ def download_updates(conn):
except (IncompleteReadError, IncompleteRead, error.URLError) as e: except (IncompleteReadError, IncompleteRead, error.URLError) as e:
print(e) print(e)
continue continue
print("# " + source)
# TODO Place these couple of lines back down # TODO Place these couple of lines back down
# NOTE Need to correct the SQL statement to do so # NOTE Need to correct the SQL statement to do so
length = len(feed.entries) length = len(feed.entries)
@ -322,8 +312,6 @@ def download_updates(conn):
if feed.bozo: if feed.bozo:
print('feed.bozo') print('feed.bozo')
print(source) print(source)
#print('entry')
#print(entry)
if entry.has_key('summary'): if entry.has_key('summary'):
summary = entry.summary summary = entry.summary
# Remove HTML tags # Remove HTML tags
@ -416,7 +404,6 @@ def get_unread(conn):
if id is None: if id is None:
return False return False
id = id[0] id = id[0]
print(id)
sql = "SELECT title FROM entries WHERE id = :id" sql = "SELECT title FROM entries WHERE id = :id"
cur.execute(sql, (id,)) cur.execute(sql, (id,))
title = cur.fetchone()[0] title = cur.fetchone()[0]