BaseLoader
_load_single
- source (Union[str, Path]): The data source to load from.
load
- source (Union[str, Path, List[Union[str, Path]]]): The data source (s) to load from. Can be: - A single path/URL (str or Path) - A list of paths/URLs
class BaseLoader(ABC):
def _load_single(self, source: Union[str, Path]):
def load(self, source: Union[str, Path, List[Union[str, Path]]]):
def supported_formats(self):