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

Method get_build

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

Source from the content-addressed store, hash-verified

116 return response
117
118 def get_build(self, build_id):
119 # Get the build object for a given build_id
120 # The build status can have one of the following value: succeeded, failed, in-progress
121 url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/builds/' + build_id
122 response = self.client.getJsonHelper(url)
123 return response
124
125 def get_build_logs(self, build_id):
126 # Get the algorithm build logs for a given build_id

Callers 2

test_get_build_by_idMethod · 0.80
test_get_build_by_idMethod · 0.80

Calls 1

getJsonHelperMethod · 0.80

Tested by 2

test_get_build_by_idMethod · 0.64
test_get_build_by_idMethod · 0.64