fix email and remove qoutes from conf
This commit is contained in:
12
run.py
12
run.py
@@ -1,5 +1,6 @@
|
||||
from donationcalc import app
|
||||
from donationcalc import donationconfig
|
||||
import donationcalc.models
|
||||
import argparse
|
||||
|
||||
def parseArgs(parser):
|
||||
@@ -14,6 +15,17 @@ if __name__ == '__main__':
|
||||
if args.rebalance:
|
||||
donconf = donationconfig.donationconfig()
|
||||
donconf.rebalance()
|
||||
sender = donationcalc.models.sender()
|
||||
donors = []
|
||||
f = open("donors.txt", "r")
|
||||
|
||||
for line in f.readlines():
|
||||
linesplit = line.split(",")
|
||||
newdonor = donationcalc.models.donor(email = linesplit[0], monthly = linesplit[1])
|
||||
donors.append(newdonor)
|
||||
f.close()
|
||||
|
||||
donationcalc.models.rebalanceall(sender,donors)
|
||||
exit()
|
||||
|
||||
app.run(debug=False)
|
||||
|
Reference in New Issue
Block a user