(self)
| 106 | raise DataApiError("Attempted to .getNumpy() file without numpy available, please install numpy.") |
| 107 | |
| 108 | def exists(self): |
| 109 | # In order to not break backward compatability keeping this method to only return |
| 110 | # a boolean |
| 111 | exists, error = self.existsWithError() |
| 112 | return exists |
| 113 | |
| 114 | def existsWithError(self): |
| 115 | response = self.client.headHelper(self.url) |