Exports
Create a schema to define which data and annotations to export.
Once run, schema exports can be downloaded via browser or API.
Use the DataTorch Python package to download files and annotations from this project (Requires Python 3.7+):
pip install datatorch
Download files and annotations from last successful schema export:
import datatorch as dt
api = dt.api.ApiClient('YOUR-API-KEY')
# For the default schema named 'All'
api.project('vle3/sdfasd').download()
# For any named schema
api.project('vle3/sdfasd').download('SCHEMA_NAME')
# With directory
api.project('vle3/sdfasd').download('SCHEMA_NAME','/files')