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

Method get_builds

Algorithmia/algorithm.py:112–116  ·  view source on GitHub ↗
(self, limit=56, marker=None)

Source from the content-addressed store, hash-verified

110 return api_response
111
112 def get_builds(self, limit=56, marker=None):
113 kwargs = {"limit": limit, "marker": marker}
114 url = "/v1/algorithms/" + self.username + "/" + self.algoname + '/builds'
115 response = self.client.getJsonHelper(url, **kwargs)
116 return response
117
118 def get_build(self, build_id):
119 # Get the build object for a given build_id

Callers 1

getBuildLogsMethod · 0.80

Calls 1

getJsonHelperMethod · 0.80

Tested by

no test coverage detected