Datasets
Last updated
Last updated
InsightMaker.datasets(raw=False)
raw
boolean
meDefault False, if true, returns the raw REST JSON response as a python dictionary.
A list of Dataset objects (includes both data and content indices), methods:
Dataset.id()
String, Dataset ID
Dataset.description()
String, Dataset description
Dataset.count()
Integer, Dataset size
datasets = im.datasets()
print("Datasets:")
for dataset in datasets:
print("{} : {}".format(dataset.description(), len(dataset)))