Retrieve dataset version metadata from app

After logging your datasets to Vectice, you can retrieve the dataset's metadata using the following code which will return a Dataset Version Representation.

A Dataset Version Representation shows information about a specific version of a dataset from the Vectice app. It makes it easier to get and read this information through the API.

A dataset version ID starts with 'DTV-XXX'. Retrieve the ID in the Vectice App, then use the ID with the following methods to get the dataset version:

connect.dataset_version('DTV-XXX') or connect.browse('DTV-XXX')

import vectice
connect = vectice.connect(api_token="your-api-key")

# Retrieve a specific dataset version metadata
connect.dataset_version('DTV-XXXX')

For more information on return values and other associated methods, view the Dataset Version Representation API documentation.

Last updated