Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 10e4814

Browse files
committed
python2to3
1 parent 90df598 commit 10e4814

9 files changed

+19
-19
lines changed

component-library.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def layout(id):
1313
dcc.Dropdown(
1414
options=[
1515
{'label': 'New York City', 'value': 'NYC'},
16-
{'label': u'Montréal', 'value': 'MTL'},
16+
{'label': 'Montréal', 'value': 'MTL'},
1717
{'label': 'San Francisco', 'value': 'SF'}
1818
],
1919
value='MTL',
@@ -24,7 +24,7 @@ def layout(id):
2424
dcc.Dropdown(
2525
options=[
2626
{'label': 'New York City', 'value': 'NYC'},
27-
{'label': u'Montréal', 'value': 'MTL'},
27+
{'label': 'Montréal', 'value': 'MTL'},
2828
{'label': 'San Francisco', 'value': 'SF'}
2929
],
3030
value=['MTL', 'SF'],
@@ -36,7 +36,7 @@ def layout(id):
3636
dcc.RadioItems(
3737
options=[
3838
{'label': 'New York City', 'value': 'NYC'},
39-
{'label': u'Montréal', 'value': 'MTL'},
39+
{'label': 'Montréal', 'value': 'MTL'},
4040
{'label': 'San Francisco', 'value': 'SF'}
4141
],
4242
value='MTL',
@@ -47,7 +47,7 @@ def layout(id):
4747
dcc.Checklist(
4848
options=[
4949
{'label': 'New York City', 'value': 'NYC'},
50-
{'label': u'Montréal', 'value': 'MTL'},
50+
{'label': 'Montréal', 'value': 'MTL'},
5151
{'label': 'San Francisco', 'value': 'SF'}
5252
],
5353
values=['MTL', 'SF'],
@@ -114,7 +114,7 @@ def layout(id):
114114
])
115115

116116
INPUTS = [
117-
Input(id_, 'value') for id_ in app.layout.keys()
117+
Input(id_, 'value') for id_ in list(app.layout.keys())
118118
if 'controlled' in id_ and 'checkboxes' not in id_]
119119
INPUTS.append(Input('controlled-checkboxes', 'values'))
120120

dash-callback-factory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def layout():
119119
def display_content(pathname):
120120
if pathname is None:
121121
return html.Div()
122-
matched = [c for c in pages.keys()
122+
matched = [c for c in list(pages.keys())
123123
if pages[c]['url'] == pathname]
124124

125125
if matched and matched[0] == 'example':

dash-display-error-messages.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def output(value):
2828

2929
@app.server.route('/static/<filename>.js')
3030
def serve_script(filename):
31-
print('serving {}'.format(filename))
31+
print(('serving {}'.format(filename)))
3232
if filename not in ['dash-error-message-display']:
3333
raise Exception('"{}" is excluded from the allowed static files'.format(filename))
3434
return flask.send_from_directory(os.getcwd(), '{}.js'.format(filename))

dash-plot.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def build_data(contract_name, stream): # one stream only
6363
#t0 = datetime.datetime.now() + datetime.timedelta(year=-1)
6464
month_list = sorted([z['month'] for z in stream['monthList']])
6565
month_list = [datetime.datetime.strptime(month, '%Y-%m-%d') for month in month_list]
66-
print month_list
66+
print(month_list)
6767

6868
min_month = min(month_list)
6969
max_month = max(month_list)
@@ -77,10 +77,10 @@ def build_data(contract_name, stream): # one stream only
7777
length = len(month_list)
7878

7979

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("////////////////////")
8484

8585
#for i in range(0, length-1):
8686
#start = month_list[i]
@@ -109,12 +109,12 @@ def plot_bar(data):
109109

110110

111111

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}
113113

114114

115115

116116
if __name__ == '__main__':
117117
data = build_data('S', example_stream)
118118
plot_bar(data)
119-
print data
119+
print(data)
120120
app.run_server(debug=True)

dash_offline_2.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
figure={
2222
'data': [
2323
{'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},
24-
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'},
24+
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': 'Montréal'},
2525
],
2626
'layout': {
2727
'title': 'Dash Data Visualization'

dash_requests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
Output('output', 'children'),
2121
[Input('d', 'value')])
2222
def update_outout(value):
23-
print(flask.request.cookies)
23+
print((flask.request.cookies))
2424
return value
2525

2626
if __name__ == '__main__':

dependency_tree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def make_graph(xindex, xmin, xmax):
3838
npt = 20
3939
xgrid = np.zeros((npt,2))
4040
xgrid[:,int(xindex)] = np.linspace(int(xmin), int(xmax), npt)
41-
print 'Calling func!'
41+
print('Calling func!')
4242
f = func(xgrid)
4343
return Figure(data=[Scatter(x=xgrid[:,int(xindex)], y=f, mode='markers+lines')])
4444

large-data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
dash.dependencies.Output('output', 'children'),
3333
[dash.dependencies.Input('input', 'value')])
3434
def update_output(value):
35-
return json.dumps(range(N))
35+
return json.dumps(list(range(N)))
3636

3737
if __name__ == '__main__':
3838
app.run_server(debug=True)

three-column.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
dcc.Dropdown(
3131
options=[
3232
{'label': 'New York City', 'value': 'NYC'},
33-
{'label': u'Montreal', 'value': 'MTL'},
33+
{'label': 'Montreal', 'value': 'MTL'},
3434
{'label': 'San Francisco', 'value': 'SF'}
3535
],
3636
value=['MTL', 'SF'],

0 commit comments

Comments
 (0)