(self, path, client)
| 155 | print(e) |
| 156 | |
| 157 | def rm(self, path, client): |
| 158 | |
| 159 | # for f in path |
| 160 | file = client.file(path) |
| 161 | try: |
| 162 | if file.exists(): |
| 163 | file.delete() |
| 164 | except Algorithmia.errors.DataApiError as e: |
| 165 | print(e) |
| 166 | |
| 167 | # algo ls <path> |
| 168 | def ls(self, path, client, longlist=False): |