20 lines
495 B
Python
20 lines
495 B
Python
|
from donationcalc import app
|
||
|
from donationcalc import donationconfig
|
||
|
import argparse
|
||
|
|
||
|
def parseArgs(parser):
|
||
|
parser.add_argument("-r", "--rebalance", dest = "rebalance", help = "balance the monthly values", action="store_true")
|
||
|
return parser.parse_args()
|
||
|
|
||
|
parser = argparse.ArgumentParser()
|
||
|
args = parseArgs(parser)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
|
||
|
if args.rebalance:
|
||
|
donconf = donationconfig.donationconfig()
|
||
|
donconf.rebalance()
|
||
|
exit()
|
||
|
|
||
|
app.run(debug=False)
|