-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamlit_app.py
207 lines (181 loc) · 8.14 KB
/
streamlit_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import mysql.connector
import streamlit as st
import pandas as pd
from datetime import datetime
# Database connection
mydb = mysql.connector.connect(
host="localhost",
user=st.secrets["db_username"],
password=st.secrets["db_password"],
database="portfolio"
)
mycursor = mydb.cursor()
def main():
st.title("Portfolio Management - CRUD App")
# Sidebar for selecting table and operation
table = st.sidebar.selectbox("Select Table", (
"users", "login", "stock_indices", "stock", "portfolio",
"favourite", "news", "currency", "commodity"
))
operation = st.sidebar.selectbox("Select Operation", ("Create", "Read", "Update", "Delete"))
if operation == "Create":
create_record(table)
elif operation == "Read":
read_records(table)
elif operation == "Update":
update_record(table)
elif operation == "Delete":
delete_record(table)
def create_record(table):
st.subheader(f"Create a Record in {table}")
if table == "users":
user_name = st.text_input("User Name")
mobile_number = st.text_input("Mobile Number")
user_email = st.text_input("Email")
user_pancard = st.text_input("PAN Card")
bank_acc_number = st.text_input("Bank Account Number")
dob = st.date_input("Date of Birth")
if st.button("Create"):
sql = """INSERT INTO users
(user_name, mobile_number, user_email, user_pancard, bank_acc_number, dob)
VALUES (%s, %s, %s, %s, %s, %s)"""
val = (user_name, mobile_number, user_email, user_pancard, bank_acc_number, dob)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Created Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
elif table == "portfolio":
portfolio_type = st.text_input("Portfolio Type")
purchased_price = st.number_input("Purchased Price", min_value=0.0, step=0.01)
quantity_owned = st.number_input("Quantity", min_value=1, step=1)
user_id = st.number_input("User ID", min_value=1, step=1)
asset_symbol = st.text_input("Asset Symbol")
asset_type = st.selectbox("Asset Type", ["Stock", "Currency", "Commodity"])
if st.button("Create"):
sql = """INSERT INTO portfolio
(portfolio_type, purchased_price, quantity_owned, user_id, asset_symbol, asset_type)
VALUES (%s, %s, %s, %s, %s, %s)"""
val = (portfolio_type, purchased_price, quantity_owned, user_id, asset_symbol, asset_type)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Created Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
elif table == "stock":
stock_symbol = st.text_input("Stock Symbol")
stock_name = st.text_input("Stock Name")
stock_price = st.number_input("Current Price", min_value=0.0, step=0.01)
opening_price = st.number_input("Opening Price", min_value=0.0, step=0.01)
closing_price = st.number_input("Closing Price", min_value=0.0, step=0.01)
stock_type = st.text_input("Stock Type")
index_symbol = st.text_input("Index Symbol")
if st.button("Create"):
sql = """INSERT INTO stock
(stock_symbol, stock_name, stock_price, opening_price, closing_price, stock_type, index_symbol)
VALUES (%s, %s, %s, %s, %s, %s, %s)"""
val = (stock_symbol, stock_name, stock_price, opening_price, closing_price, stock_type, index_symbol)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Created Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
elif table == "currency":
currency_symbol = st.text_input("Currency Symbol")
currency_name = st.text_input("Currency Name")
conversion_rate = st.number_input("Conversion Rate", min_value=0.0001, step=0.0001)
if st.button("Create"):
sql = """INSERT INTO currency
(currency_symbol, currency_name, conversion_rate)
VALUES (%s, %s, %s)"""
val = (currency_symbol, currency_name, conversion_rate)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Created Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
elif table == "commodity":
commodity_name = st.text_input("Commodity Name")
commodity_type = st.text_input("Commodity Type")
last_traded_price = st.number_input("Last Traded Price", min_value=0.0, step=0.01)
if st.button("Create"):
sql = """INSERT INTO commodity
(commodity_name, commodity_type, last_traded_price)
VALUES (%s, %s, %s)"""
val = (commodity_name, commodity_type, last_traded_price)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Created Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
def read_records(table):
st.subheader(f"Records from {table}")
try:
mycursor.execute(f"SELECT * FROM {table}")
columns = [desc[0] for desc in mycursor.description]
records = mycursor.fetchall()
df = pd.DataFrame(records, columns=columns)
st.dataframe(df)
except mysql.connector.Error as err:
st.error(f"Error: {err}")
def update_record(table):
st.subheader(f"Update a Record in {table}")
if table == "users":
user_id = st.number_input("User ID", min_value=1, step=1)
user_name = st.text_input("New User Name")
user_email = st.text_input("New Email")
mobile_number = st.text_input("New Mobile Number")
if st.button("Update"):
sql = """UPDATE users
SET user_name=%s, user_email=%s, mobile_number=%s
WHERE user_id=%s"""
val = (user_name, user_email, mobile_number, user_id)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Updated Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
elif table == "portfolio":
portfolio_id = st.number_input("Portfolio ID", min_value=1, step=1)
portfolio_type = st.text_input("New Portfolio Type")
quantity_owned = st.number_input("New Quantity", min_value=1, step=1)
if st.button("Update"):
sql = """UPDATE portfolio
SET portfolio_type=%s, quantity_owned=%s
WHERE portfolio_id=%s"""
val = (portfolio_type, quantity_owned, portfolio_id)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Updated Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
def delete_record(table):
st.subheader(f"Delete a Record from {table}")
id_field_map = {
"users": "user_id",
"portfolio": "portfolio_id",
"news": "news_id"
}
if table in id_field_map:
id_field = id_field_map[table]
record_id = st.number_input(f"Enter {id_field} to Delete", min_value=1, step=1)
if st.button("Delete"):
sql = f"DELETE FROM {table} WHERE {id_field} = %s"
val = (record_id,)
try:
mycursor.execute(sql, val)
mydb.commit()
st.success("Record Deleted Successfully!")
except mysql.connector.Error as err:
st.error(f"Error: {err}")
else:
st.warning("Please implement delete operation for this table")
if __name__ == "__main__":
main()