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

Method compile

Algorithmia/algorithm.py:180–184  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

178
179 # Compile an algorithm
180 def compile(self):
181 # Compile algorithm
182 url = '/v1/algorithms/' + self.username + '/' + self.algoname + '/compile'
183 response = self.client.postJsonHelper(url, {}, parse_response_as_json=True, retry=True)
184 return response
185
186 # Pipe an input into this algorithm
187 def pipe(self, input1):

Callers 4

mainFunction · 0.80
__init__Method · 0.80
util.pyFile · 0.80

Calls 1

postJsonHelperMethod · 0.80