Skip to content

Commit

Permalink
added data
Browse files Browse the repository at this point in the history
  • Loading branch information
multiverseweb committed Jul 14, 2024
1 parent 3a20475 commit 06dd071
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified software/__pycache__/financeTracker.cpython-311.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion software/financeTracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from datetime import datetime, timedelta,date #for x-axis time class-width
from matplotlib.widgets import Cursor as lines
#===============================================================================================================plot colors
colors=["#fde725","#5ec962","#21918c","#3b528b","#440154","#f89540","#cc4778","cyan","#7e03a8","tomato","tan","#0d0887","green","blue","indigo","violet"]
colors=["#3474eb","#5ec962","yellow","#f89540","#21918c","#3b528b","#cc4778","cyan","#440154","#7e03a8","tomato","tan","#0d0887","green","blue","indigo"]
#==================================================================================================connecting MySQL
import mysql.connector as my #required modules
mycon=my.connect(host='localhost',user='root',passwd='tejas123',database='finance')
Expand Down
2 changes: 1 addition & 1 deletion software/mainGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from matplotlib.widgets import Cursor #for lines on hover in plot
import numpy as np #for x-axis time arange
#===================================================================================================================plot colors
colors=["#fde725","#5ec962","#21918c","#3b528b","#440154","#f89540","#cc4778","cyan","#7e03a8","tomato","tan","#0d0887","green","blue","indigo","red"]
colors=["#3474eb","#5ec962","yellow","#440154","#f89540","#21918c","#3b528b","#cc4778","cyan","#7e03a8","tomato","tan","#0d0887","green","blue","indigo"]
#===================================================================================================================connecting mySQL
mycon=financeTracker.mycon
cursor=financeTracker.cursor
Expand Down

0 comments on commit 06dd071

Please sign in to comment.