@@ -63,7 +63,7 @@ def build_data(contract_name, stream): # one stream only
63
63
#t0 = datetime.datetime.now() + datetime.timedelta(year=-1)
64
64
month_list = sorted ([z ['month' ] for z in stream ['monthList' ]])
65
65
month_list = [datetime .datetime .strptime (month , '%Y-%m-%d' ) for month in month_list ]
66
- print month_list
66
+ print ( month_list )
67
67
68
68
min_month = min (month_list )
69
69
max_month = max (month_list )
@@ -77,10 +77,10 @@ def build_data(contract_name, stream): # one stream only
77
77
length = len (month_list )
78
78
79
79
80
- print "////////////////////"
81
- print month_list
82
- print min_month , "===" , max_month
83
- print "////////////////////"
80
+ print ( "////////////////////" )
81
+ print ( month_list )
82
+ print (( min_month , "===" , max_month ))
83
+ print ( "////////////////////" )
84
84
85
85
#for i in range(0, length-1):
86
86
#start = month_list[i]
@@ -109,12 +109,12 @@ def plot_bar(data):
109
109
110
110
111
111
112
- example_stream = {'status' : 'active' , 'numberOfTransactions' : 2 , 'bookingTypes' : [u'' ], 'amountPerMonth' : 3987.5 , 'coeffOfVariation' : 0.0 , 'firstPayment' : '2017-04-27' , 'confidence' : 1.0 , 'groupKey' : u'' , 'accountTypes' : [u'Giro account' ], 'transactionsPerMonth' : 1.0 , 'monthList' : [{'transactions' : [{'partnerName' : u'' , 'uid' : 99999999 , 'amount' : 3987.5 , 'bookingType' : u'' , 'subclf' : '1_1' , 'bookingDate' : '27-04-2017' , 'partnerAccountIBAN' : u'' }], 'month' : '2017-04-01' }, {'transactions' : [{'partnerName' : u'' , 'uid' : 111.0 , 'amount' : 3987.5 , 'bookingType' : u'' , 'subclf' : '1_1' , 'bookingDate' : '29-05-2017' , 'partnerAccountIBAN' : u'' }], 'month' : '2017-05-01' }], 'partnerName' : u'' , 'highestAmount' : 3987.5 , 'numberOfTransactionPerMonthWithTransaction' : 1.0 , 'overallAvailableMonths' : 2 , 'windowSize' : '1M' , 'lastPayment' : '2017-05-29' , 'nrMonthsWithTransaction' : 2 , 'numberOfMonths' : 2 , 'groupKeyType' : 'partnerName' , 'lowestAmount' : 3987.5 , 'nrMonthsWithoutTransaction' : 0 , 'amount' : 3987.5 , 'meanAmount' : 3987.5 , 'medianAmount' : 3987.5 , 'subclasses' : ['1_1' , '1_2' ], 'missedMonthsSinceLatestTransaction' : 0 }
112
+ example_stream = {'status' : 'active' , 'numberOfTransactions' : 2 , 'bookingTypes' : ['' ], 'amountPerMonth' : 3987.5 , 'coeffOfVariation' : 0.0 , 'firstPayment' : '2017-04-27' , 'confidence' : 1.0 , 'groupKey' : '' , 'accountTypes' : ['Giro account' ], 'transactionsPerMonth' : 1.0 , 'monthList' : [{'transactions' : [{'partnerName' : '' , 'uid' : 99999999 , 'amount' : 3987.5 , 'bookingType' : '' , 'subclf' : '1_1' , 'bookingDate' : '27-04-2017' , 'partnerAccountIBAN' : '' }], 'month' : '2017-04-01' }, {'transactions' : [{'partnerName' : '' , 'uid' : 111.0 , 'amount' : 3987.5 , 'bookingType' : '' , 'subclf' : '1_1' , 'bookingDate' : '29-05-2017' , 'partnerAccountIBAN' : '' }], 'month' : '2017-05-01' }], 'partnerName' : '' , 'highestAmount' : 3987.5 , 'numberOfTransactionPerMonthWithTransaction' : 1.0 , 'overallAvailableMonths' : 2 , 'windowSize' : '1M' , 'lastPayment' : '2017-05-29' , 'nrMonthsWithTransaction' : 2 , 'numberOfMonths' : 2 , 'groupKeyType' : 'partnerName' , 'lowestAmount' : 3987.5 , 'nrMonthsWithoutTransaction' : 0 , 'amount' : 3987.5 , 'meanAmount' : 3987.5 , 'medianAmount' : 3987.5 , 'subclasses' : ['1_1' , '1_2' ], 'missedMonthsSinceLatestTransaction' : 0 }
113
113
114
114
115
115
116
116
if __name__ == '__main__' :
117
117
data = build_data ('S' , example_stream )
118
118
plot_bar (data )
119
- print data
119
+ print ( data )
120
120
app .run_server (debug = True )
0 commit comments