Poll saved URLs for successful dataset exports (Hugging Face, Kaggle, Google Sheets)
datasets.get_export_links(strdataset_id) -> DatasetGetExportLinksResponse
GET/api/v1/datasets/{dataset_id}/export-links
Poll saved URLs for successful dataset exports (Hugging Face, Kaggle, Google Sheets)
Poll saved URLs for successful dataset exports (Hugging Face, Kaggle, Google Sheets)
import os
from adaption import Adaption
client = Adaption(
api_key=os.environ.get("ADAPTION_API_KEY"), # This is the default and can be omitted
)
response = client.datasets.get_export_links(
"dataset_id",
)
print(response.huggingface){
"huggingface": {},
"kaggle": {},
"google_sheets": {}
}Returns Examples
{
"huggingface": {},
"kaggle": {},
"google_sheets": {}
}