MCPcopy Index your code
hub / github.com/algorithmiaio/algorithmia-python / get_build_logs

Method get_build_logs

Algorithmia/algorithm.py:125–129  ·  view source on GitHub ↗
(self, build_id)

Source from the content-addressed store, hash-verified

123 return response
124
125 def get_build_logs(self, build_id):
126 # Get the algorithm build logs for a given build_id
127 url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/builds/' + build_id + '/logs'
128 response = self.client.getJsonHelper(url)
129 return response
130
131 def get_scm_status(self):
132 url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/scm/status'

Callers 2

test_get_build_logsMethod · 0.80
test_get_build_logsMethod · 0.80

Calls 1

getJsonHelperMethod · 0.80

Tested by 2

test_get_build_logsMethod · 0.64
test_get_build_logsMethod · 0.64