Data loader base abstract API

diff(files: Iterable[str]) bool[source]

Given a list of files, check if they are all identical

Parameters

files – a list of files

Returns

True if all files in the list are identical one to another

class LoaderBase(context: LoaderConfig)[source]

Base class for tools responsible for data loading and processing

classmethod find_file_in_path(fname: str)[source]
classmethod get_domain(name: str, registry: Optional[str] = None) Domain[source]
get_pid(connxn: connection) int[source]
execute_with_monitor(what: Callable, connxn: Optional[connection] = None, on_monitor: Optional[Callable] = None)[source]