cia-world-leaders
Version:
Serves as an independent data scraping module, complete with ontology and full scraping ability for the CIA World Leaders site
35 lines (34 loc) • 957 B
TypeScript
declare class Constants {
BASE: {
COUNTRY_BLACKLIST: string[];
DATA_REQUEST_TIMEOUT: number;
URL_BASE: string;
URL_LEADER_BASE: string;
};
ONTOLOGY: {
DT_FIRST_NAME: string;
DT_GEC_CODE: string;
DT_ISO_CODE: string;
DT_LAST_NAME: string;
DT_NAME: string;
DT_REGION_SPECIFIC: string;
DT_TITLE: string;
HAS_APPOINTED_GOVERNMENT_OFFICE: string;
HAS_COUNTRY: string;
HAS_GOVERNMENT_OFFICE: string;
HAS_GOVERNMENT_OFFICIAL: string;
INST_COUNTRY: string;
INST_GOVERNMENT_OFFICE: string;
INST_PERSON: string;
MAIN_INSTANCE_PATH: string;
MAIN_ONT_PATH: string;
ONT_COUNTRY: string;
ONT_GOVERNMENT_OFFICE: string;
ONT_PERSON: string;
};
RDFS: {
label: string;
};
}
export declare const consts: Constants;
export {};