Skip to content

Commit eb62254

Browse files
committed
Moved code into the repo
1 parent 1d888f8 commit eb62254

File tree

4 files changed

+260
-0
lines changed

4 files changed

+260
-0
lines changed

Investment Calculator/Calc.py

+187
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
import customtkinter as ctk
2+
import tkinter as tk
3+
import math
4+
import matplotlib.pyplot as plt
5+
import numpy as np
6+
from tkinter import messagebox
7+
8+
ctk.set_appearance_mode("bright")
9+
ctk.set_default_color_theme("blue")
10+
11+
class App(ctk.CTk):
12+
13+
def __init__(self,*args,**kwargs):
14+
super().__init__(*args,**kwargs)
15+
16+
def dispPie(self,M,N):
17+
names = ['Invested Amount\n('+str(format(N,',d'))+')','Maturity Value\n('+str(format(M,',d'))+')']
18+
pi = np.array([N,M])
19+
fig = plt.figure(figsize=(5,5))
20+
21+
plt.pie(pi,labels= names)
22+
plt.show()
23+
24+
def Display(self,M,N):
25+
self.MatDisp.configure(text=str(format(M,',d')))
26+
self.AmtDisp.configure(text=str(format(N,',d')))
27+
self.Details = ctk.CTkButton(self,text='Details',fg_color = '#E74C3C',border_color='#E74C3C',command = lambda: dispPie(self,M,N))
28+
self.Details.grid(row = 6, column = 0, padx = 20, pady = 20, sticky= 'ew')
29+
# dispPie(self,M,N)
30+
31+
32+
33+
34+
def getSip(self,amt,te,pe) :
35+
P = amt
36+
i = float(pe/12)
37+
n = te*12
38+
39+
M = int(P * ((pow((1+i),n)-1)/i) * (1+i))
40+
N = int(amt*n)
41+
print(M,N)
42+
Display(self,M,N)
43+
44+
def getLump(self,lsamt,te,pe):
45+
P=lsamt
46+
M = math.ceil(P*(pow(1+pe,te)))
47+
print(M,P)
48+
Display(self,M,P)
49+
50+
51+
def mixedletters(quant):
52+
for i in range(len(quant)):
53+
if quant[i].isalpha():
54+
return True
55+
return False
56+
57+
def pressedCalculate():
58+
59+
global tenure
60+
if self.ten.get() == '':
61+
messagebox.showerror('Error','Please enter the tenure of your investment')
62+
return
63+
elif '.' in self.ten.get():
64+
messagebox.showerror('Error','Entered a fractional value')
65+
return
66+
elif self.ten.get().isalpha() or mixedletters(self.ten.get()):
67+
messagebox.showerror('Error','Only numerical values allowed')
68+
return
69+
else :
70+
tenure = int(self.ten.get())
71+
if tenure == 0:
72+
messagebox.showerror('Error','Tenure is zero')
73+
74+
75+
global per
76+
if self.roi.get() == '':
77+
messagebox.showerror('Error','Please enter the Rate of Return on your investment')
78+
return
79+
elif self.roi.get().isalpha() or mixedletters(self.roi.get()):
80+
messagebox.showerror('Error','Only numerical values allowed')
81+
return
82+
else:
83+
per = float(self.roi.get())
84+
if per > 0.0:
85+
per /= 100
86+
if per > 1.00:
87+
messagebox.showerror('Error','ROI cannot be greater than 100')
88+
return
89+
else :
90+
messagebox.showerror('Error','ROI cannot be zero')
91+
return
92+
93+
94+
global amount
95+
if self.Amt.get() == '' and self.ls.get() =='':
96+
messagebox.showerror('Error','Please enter Investment Value')
97+
elif self.ls.get() =='' and self.Amt.get() != '':
98+
if '.' in self.Amt.get():
99+
messagebox.showerror('Error','Entered a fractional value')
100+
return
101+
elif self.Amt.get().isalpha() or mixedletters(self.Amt.get()):
102+
messagebox.showerror('Error','Only numerical values allowed')
103+
return
104+
else:
105+
amount = int(self.Amt.get())
106+
getSip(self,amount,tenure,per)
107+
elif self.Amt.get() =='' and self.ls.get() != '' :
108+
if '.' in self.ls.get():
109+
messagebox.showerror('Error','Entered a fractional value')
110+
return
111+
elif self.ls.get().isalpha() or mixedletters(self.ls.get()):
112+
messagebox.showerror('Error','Only numerical values allowed')
113+
return
114+
else:
115+
amount = int(self.ls.get())
116+
getLump(self, amount, tenure, per)
117+
else:
118+
messagebox.showerror('Error','Please calculate either LumpSum or Sip not both at the same time')
119+
120+
def pressedReset():
121+
self.Amt.delete(0,'end')
122+
# self.ten.delete(0,'end')
123+
self.ls.delete(0,'end')
124+
self.roi.delete(0,'end')
125+
self.MatDisp.configure(text="")
126+
self.AmtDisp.configure(text="")
127+
self.Details.destroy()
128+
129+
130+
131+
self.title("SIP Calculator")
132+
self.geometry('330x600')
133+
134+
self.InputFrame = ctk.CTkFrame(master = self,fg_color='#F5B7B1')
135+
self.InputFrame.grid(row =0,column=0,sticky='ew')
136+
137+
self.SIPamt = ctk.CTkLabel(master=self.InputFrame,text = 'SIP Amount ')
138+
self.SIPamt.grid(row = 0, column = 0, padx = 20, pady = 20, sticky = 'ew')
139+
140+
self.Amt = ctk.CTkEntry(master=self.InputFrame,placeholder_text = '2000',border_color="#E74C3C")
141+
self.Amt.grid(row = 0, column = 1, padx = 20, pady = 20, sticky = 'ew')
142+
143+
144+
self.Tenure = ctk.CTkLabel(master=self.InputFrame, text = "Tenure (in years) ")
145+
self.Tenure.grid(row = 1, column = 0, padx = 20, pady = 20,sticky = 'ew')
146+
147+
self.ten = ctk.CTkComboBox(master=self.InputFrame,values = ['5','10','15','20','25','30','35'],border_color="#E74C3C",button_color="#E74C3C",dropdown_hover_color="#02b165")
148+
self.ten.grid(row = 1, column = 1, padx = 20, pady = 20, sticky = 'ew')
149+
150+
self.ror = ctk.CTkLabel(master=self.InputFrame, text = 'Rate of Return (%) ')
151+
self.ror.grid(row = 2, column = 0, padx = 20, pady = 20,sticky = 'ew')
152+
153+
self.roi = ctk.CTkEntry(master=self.InputFrame, placeholder_text= '12%',border_color="#E74C3C")
154+
self.roi.grid(row = 2, column = 1, padx = 20, pady = 20, sticky = 'ew')
155+
156+
157+
self.lumpSum = ctk.CTkLabel(master=self.InputFrame,text='Lump-sum Amount ')
158+
self.lumpSum.grid(row = 3, column = 0, padx = 20, pady = 20, sticky = 'ew')
159+
160+
self.ls = ctk.CTkEntry(master=self.InputFrame, placeholder_text = '1,00,000',border_color="#E74C3C")
161+
self.ls.grid(row = 3, column = 1, padx = 20, pady = 20, sticky = 'ew')
162+
163+
self.Output = ctk.CTkFrame(master=self,fg_color='#E74C3C')
164+
self.Output.grid(row=1,column=0,sticky='ew')
165+
166+
self.InvAmt = ctk.CTkLabel(master=self.Output,text ="Invested Amount")
167+
self.InvAmt.grid(row = 5, column = 0, padx = 20, pady = 20, sticky = 'ew')
168+
169+
self.AmtDisp = ctk.CTkLabel(master=self.Output,text='')
170+
self.AmtDisp.grid(row = 5, column = 1, padx=20, pady = 20, sticky = 'ew')
171+
172+
self.MatVal = ctk.CTkLabel(master=self.Output,text='Maturity Value ')
173+
self.MatVal.grid(row = 6, column = 0,padx = 10,pady = 20, sticky = 'ew')
174+
175+
self.MatDisp = ctk.CTkLabel(master=self.Output,text='')
176+
self.MatDisp.grid(row = 6, column = 1, padx = 20,pady =20, sticky = 'ew')
177+
178+
self.Calculate = ctk.CTkButton(self,text="Calculate",fg_color="#E74C3C",border_color="black", command = pressedCalculate)
179+
self.Calculate.grid(row = 4, column = 0, padx = 20, pady = 20 ,sticky = 'ew')
180+
181+
self.Reset = ctk.CTkButton(self,text="Reset",fg_color="#E74C3C",border_color="black",command = pressedReset)
182+
self.Reset.grid(row = 5,column = 0, padx =20, pady = 20, sticky = 'ew')
183+
184+
185+
if __name__=="__main__":
186+
app = App()
187+
app.mainloop()

Investment Calculator/README.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!--Please do not remove this part-->
2+
![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99)
3+
![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)
4+
5+
# Investment Calculator
6+
7+
<!-- Add a jpeg/png/gif file here if applicable -->
8+
9+
<!--An image is an illustration for your project, the tip here is using your sense of humour as much as you can :D
10+
11+
You can copy paste my markdown photo insert as following:
12+
<p align="center">
13+
<img src="your-source-is-here" width=40% height=40%>
14+
-->
15+
16+
<p align="center">
17+
<img src="img/output.jpg" width=60% height=60%>
18+
19+
## 🛠️ Description
20+
<!--Remove the below lines and add yours -->
21+
This project presents an investment calculator built using Python and the customtkinter library, designed to facilitate financial planning through a user-friendly graphical interface. The calculator allows users to input their SIP (Systematic Investment Plan) amount or lump sum amount, specify the investment tenure in years, and provide the expected rate of return. Upon clicking the 'Calculate' button, the invested amount, maturity value is displayed.
22+
23+
## ⚙️ Languages or Frameworks Used
24+
<!--Remove the below lines and add yours -->
25+
Language: Python
26+
27+
Modules :
28+
29+
tkinter
30+
customtkinter
31+
numpy
32+
matplotlib
33+
34+
35+
## 🌟 How to run
36+
<!--Remove the below lines and add yours -->
37+
Step-1: Install required modules
38+
```sh
39+
pip install customtkinter
40+
```
41+
```sh
42+
pip install numpy
43+
```
44+
```sh
45+
pip install matplotlib
46+
```
47+
Step-2: Run the program
48+
49+
Optional: In order to use this project as an application on your desktop:
50+
51+
Step 1 :
52+
```sh
53+
pip install pyinstaller
54+
```
55+
Step 2 :
56+
Make a Folder on your Desktop
57+
and move the Calc.py file in the folder
58+
59+
Step 3 : Open any command line interface and enter that respective folder using the cd command
60+
61+
Step 4 : Execute the following command :
62+
63+
```sh
64+
pyinstaller -F -w Calc.py
65+
```
66+
This will create a .exe file in that folder which can be used as an application
67+
## 📺 Demo
68+
<p align="center">
69+
<img src=img/bandicam-2024-04-26-22-35-16-753.gif width=70% height=70%>
70+
71+
## 🤖 Author
72+
<!--Remove the below lines and add yours -->
73+
Aditya Mohite
Loading

Investment Calculator/img/output.jpg

88.2 KB
Loading

0 commit comments

Comments
 (0)