[docs]defcountries_mapping(config_path):"""Get organization's country mapping. Note, only contains mappings for countries for which we source data from the organization. Returns: dict: ORG_COUNTRY_NAME -> OWID_COUNTRY_NAME """config_loader=ConfigLoader.from_yaml(config_path)returnconfig_loader.countries_mapping()
[docs]defcountries(config_path):"""List countries for which we source data from the organization. Returns: list: List of countries sourced from the organization. """config_loader=ConfigLoader.from_yaml(config_path)returnconfig_loader.config