azmlclient/base.py
14
T001:
print found.
195
print
(
'Pushing inputs to blob storage'
)
212
print
(
'Creating job'
)
216
print
(
'Starting job '
+
str
(
json_job_id
))
218
print
(
'Job '
+
str
(
json_job_id
)
+
' started'
)
224
print
(
'Polling job status for job '
+
str
(
json_job_id
))
231
print
(
'Waiting '
+
str
(
nb_seconds_between_status_queries
)
+
's until next call.'
)
237
print
(
'Deleting job '
+
str
(
json_job_id
))
241
print
(
'Job '
+
str
(
json_job_id
)
+
' completed, results: '
)
242
print
(
json
.
dumps
(
outputs_refs2
,
indent
=
4
))
244
print
(
'Retrieving the outputs from the blob storage'
)
351
print
(
"The request failed with status code:
%s
"
%
error
.
response
.
status_code
)
353
print
(
error
.
response
.
headers
)
357
print
(
"The request failed with status code:
%s
"
+
error
.
code
)
359
print
(
error
.
info
())