Skip to content

Commit 8e1648c

Browse files
committed
Complete conversion from text-file database to sqlite database
1 parent 9bd5d5a commit 8e1648c

File tree

2 files changed

+36
-22
lines changed

2 files changed

+36
-22
lines changed

bot.py

+26-20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from exchange_data import *
44
from telegram.ext import CommandHandler
55
from telegram.ext import Updater
6+
from dbhelper import DBHelper
67

78
updater = Updater(token="INSERT TOKEN HERE", use_context=True)
89

@@ -13,6 +14,7 @@
1314
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
1415
level=logging.INFO)
1516

17+
1618
instructions = ("This is the Cryptocurrency Price Alert Bot\n" +
1719
"To set a price alert,use the setalert command and enter an exchange, trading pair and price as follows:\n" +
1820
"/setalert binance,btcusdc,20000\n" + "To get the current price of a coin on a supported exchange use the getprice command:\n"+
@@ -22,7 +24,7 @@
2224
def help(update, context):
2325
context.bot.send_message(chat_id=update.message.chat_id, text=instructions)
2426

25-
# /getprice command bot can fetch the price on any supported exchange
27+
# /getprice command, bot can fetch the price on any supported exchange
2628
def getprice(update, context):
2729
message_text = update.message.text[10::]
2830
msg = message_text.replace(" ","").split(",")
@@ -32,7 +34,6 @@ def getprice(update, context):
3234
else:
3335
context.bot.send_message(chat_id=update.message.chat_id, text="The current price of " + msg[1].upper() + " on " + msg[0] + " is " + "{:.8f}".format(float(ans)))
3436

35-
3637
# /setalert command
3738
def setalert(update, context):
3839
try:
@@ -41,44 +42,49 @@ def setalert(update, context):
4142
context.bot.send_message(chat_id=update.message.chat_id, text="Your Price Alert Was Not Set Successfully. Choose a valid price then try again.")
4243
else:
4344
context.bot.send_message(chat_id=update.message.chat_id, text="Your Price Alert Was Set Successfully.")
44-
except:
45+
except Exception as e:
4546
context.bot.send_message(chat_id=update.message.chat_id, text="Your Price Alert Was NOT Set Successfully. Try Again.")
47+
print(e)
4648

4749
# checks if the alert request is valid
4850
def is_valid_request(msg,chat_id):
51+
db = DBHelper()
52+
db.setup()
4953
# remove whitespace and split the chosen exchange,trading pair and price into a list
5054
msg = msg.replace(" ","").split(",")
51-
cur_price = get_price(msg[0].lower(),msg[1].lower())
52-
# if request is valid, add to 'database'
55+
cur_price = get_price(msg[0],msg[1])
56+
# if request is valid, add to database
5357
if cur_price != False:
5458
if cur_price < float(msg[2]):
5559
trigger = '>'
5660
elif cur_price > float(msg[2]):
5761
trigger = '<'
5862
else:
5963
return False
60-
f = open("alert_requests.txt", "a")
61-
f.write(','.join(msg)+","+str(chat_id)+","+trigger+'\n')
62-
f.close()
64+
row_id = len(db.get_table()) + 1
65+
db.add_alert((row_id, msg[0], msg[1], msg[2], chat_id, trigger))
6366
else:
6467
return False
6568

6669
# bot continuously checks if an alert has been reached
6770
def check_prices(context):
68-
f = open("alert_requests.txt", "r")
69-
lines = f.readlines()
70-
f.close()
71-
f = open("alert_requests.txt", "w")
72-
for line in lines:
73-
line = line.split(",")
74-
cur_price = get_price(line[0].lower(),line[1].lower())
75-
if line[4][0] == '>' and cur_price >= float(line[2]) or line[4][0] == '<' and cur_price <= float(line[2]):
76-
response = line[1].upper() + " has reached " + line[2] + " on " + line[0]
77-
context.bot.send_message(chat_id = int(line[3]), text = response )
78-
else:
79-
f.write(",".join(line))
71+
db = DBHelper()
72+
db.setup()
8073

74+
# Sample Row in Database: (ID, Exchange, Pair, Price, chat_id, trigger)
75+
table = db.get_table()
76+
for row in table:
77+
cur_price = get_price(row[1],row[2])
78+
if row[5] == '>' and cur_price >= float(row[3]) or row[5] == '<' and cur_price <= float(row[3]):
79+
response = row[2].upper() + " has reached " + row[3] + " on " + row[1]
80+
db.remove_alert(row[0])
81+
context.bot.send_message(chat_id = row[4], text = response )
82+
8183
if __name__ == "__main__":
84+
#initialize database
85+
db = DBHelper()
86+
db.setup()
87+
8288
# bot checks prices with an interval of every 5 seconds
8389
job_check_prices = j.run_repeating(check_prices, interval= 5, first =0)
8490
# create and add handlers to dispatcher

dbhelper.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class DBHelper:
44

5-
def __init(self, dbname="alerts.db"):
5+
def __init__(self, dbname="alerts.db"):
66
# sets database name and establishes a connection to it
77
self.dbname = dbname
88
self.conn = sqlite3.connect(dbname)
@@ -21,4 +21,12 @@ def add_alert(self, request_tuple):
2121

2222
def remove_alert(self, id):
2323
remove = "DELETE FROM requests WHERE id = (?)"
24-
self.conn.execute()
24+
id_tuple = (id,)
25+
self.conn.execute(remove,id_tuple)
26+
self.conn.commit()
27+
28+
def get_table(self):
29+
table = []
30+
for row in self.conn.execute('SELECT * FROM requests'):
31+
table.append(row)
32+
return table

0 commit comments

Comments
 (0)