Read data from file. type: type that you want to read to, such as "datatrame", List[dict], etc.
(self, output_type)
| 12 | """ |
| 13 | @abstractmethod |
| 14 | def read(self, output_type) -> Any: |
| 15 | """ |
| 16 | Read data from file. |
| 17 | type: type that you want to read to, such as "datatrame", List[dict], etc. |
| 18 | """ |
| 19 | pass |
| 20 | |
| 21 | @abstractmethod |
| 22 | def write(self, data: Any) -> Any: |
nothing calls this directly
no outgoing calls
no test coverage detected