(self)
| 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): |