probe-gate
curl 'https://www150.statcan.gc.ca/t1/wds/rest/getAllCubesListLite'
import requests
resp = requests.get("https://www150.statcan.gc.ca/t1/wds/rest/getAllCubesListLite")
data = resp.json()
import zingu_apis
api = zingu_apis.api("gc")
result = api.fetch("getAllCubesListLite")
for item in result:
print(item)
const resp = await fetch("https://www150.statcan.gc.ca/t1/wds/rest/getAllCubesListLite");
const data = await resp.json();