(self)
| 39 | return self |
| 40 | |
| 41 | def get_algorithm_id(self): |
| 42 | url = '/v1/algorithms/' + self.username + '/' + self.algoname |
| 43 | print(url) |
| 44 | api_response = self.client.getJsonHelper(url) |
| 45 | if 'id' in api_response: |
| 46 | return api_response['id'] |
| 47 | else: |
| 48 | raise Exception("field 'id' not found in response: ", api_response) |
| 49 | |
| 50 | |
| 51 | def get_secrets(self): |
no test coverage detected