The Data Catalog API enables users to retrieve the contents of the data catalog along with data and metadata about individual datasets and their resources.
All API endpoints begin with the protocol and hostname:
https://datacatalogapi.worldbank.org
| #!/usr/bin/env python | |
| import sys | |
| import json | |
| import os | |
| from zipfile import ZipFile | |
| from xml.dom import minidom | |
| dir_name = sys.argv[1] | |
| fileHeader = 59 + len(dir_name) |
| #!/usr/bin/env python | |
| # encoding:utf-8 | |
| from dateutil import parser | |
| whois_timezone_info = { | |
| "A": 1 * 3600, | |
| "ACDT": 10.5 * 3600, | |
| "ACST": 9.5 * 3600, | |
| "ACT": -5 * 3600, |