(self, source)
| 192 | raise RuntimeError("Not support source", source) |
| 193 | |
| 194 | def process_location(self, source): |
| 195 | self.protocol = urlparse(source).scheme |
| 196 | # If protocol is not set, use 'file' as default |
| 197 | if not self.protocol: |
| 198 | self.protocol = "file" |
| 199 | self.source = source |
| 200 | |
| 201 | def process_numpy(self, source: Sequence[np.ndarray]): |
| 202 | """Transform arrays to equivalent DataFrame, |