curl 'https://www150.statcan.gc.ca/t1/wds/rest/getChangedCubeList/2017-12-07'
import requests
resp = requests.get("https://www150.statcan.gc.ca/t1/wds/rest/getChangedCubeList/2017-12-07")
data = resp.json()
import zingu_apis
api = zingu_apis.api("gc")
result = api.fetch("getChangedCubeList/{date}")
for item in result:
print(item)
const resp = await fetch("https://www150.statcan.gc.ca/t1/wds/rest/getChangedCubeList/2017-12-07");
const data = await resp.json();