Locate a dataset

Find out how to locate a dataset using our Python SDK

Once a client object has been generated, the next step will be to test whether the dataset that you would like to export exists for your team:

try:
    dataset = client.get_remote_dataset(dataset_identifier)
except NotFound:
    print(f"Dataset {dataset_slug} not found")

dataset_identifier here is a string in the form <team-slug>/<dataset-slug>