How to programmatically export datasets in HoneyHive.
import honeyhive s = honeyhive.HoneyHive( bearer_auth="HONEYHIVE_API_KEY", server_url="HONEYHIVE_SERVER_URL" # Optional / Required for self-hosted or dedicated deployments ) datapoints = [] res = s.datapoints.get_datapoints(project='PROJECT_NAME', dataset_name='DATASET_NAME') if res.object is not None: datapoints = res.object.datapoints pass
Was this page helpful?