Exporters

The exporters are responsible for downloading data from external sources, using a common exporter.export() method for downloading data.

All exporters extend the following base exporter:


class src.exporters.base.BaseExporter(data_folder: pathlib.Path = PosixPath('data'))

Base for all exporter classes. It creates the appropriate directory in the data dir (data_dir/{dataset}).

data_folder (pathlib.Path, optional): The location of the data folder.

Default: pathlib.Path("data")