-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
28 lines (23 loc) · 767 Bytes
/
README
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
MyAccountManager (MAM)
----------------------
A simple python project, to calculate your day-to-day accounts...
How to make it work
-------------------
start "python"
import sys
sys.path.append ("<basedir_path_to_myAccMgr.py>")
import myAccMgr
obj = myAccMgr.MyAccounts()
or
#you can give a meaning ful string as the constructor argument
obj = myAccMgr.MyAccounts ('My January 2011 Account')
#you can see various functions to work with
dir (obj)
#after adding your expenses and income, you can save the account state to a file
obj.save('my_jan_account_2011.txt')
#to get back the details from the file
obj.load ('my_jan_account_2011.txt')
obj.displayDetails () #will display the whole state of the account loaded
TODO
----
to make it act as a standalone project