Abstract method which when implemented should return the bytes for the specified path. The path must be a str.
(self, path)
| 94 | |
| 95 | @abc.abstractmethod |
| 96 | def get_data(self, path): |
| 97 | """Abstract method which when implemented should return the bytes for |
| 98 | the specified path. The path must be a str.""" |
| 99 | raise OSError |
| 100 | |
| 101 | |
| 102 | class InspectLoader(Loader): |