Usage
Basic Usage
Downloading Datasets
from delong_datasets import download_dataset
# Minimal usage
data = download_dataset("<dataset_id>", "your-token")
print(data)from delong_datasets import download_dataset, DownloadOptions
# Configure download options
opts = DownloadOptions(
columns=["patient_id", "diagnosis", "age"], # Column filtering
limit=1000, # Row limit
stream=False # Streaming mode
)
data = download_dataset("<dataset_id>", "your-token", opts)Working with Data
Exporting Data
Advanced Features
Column Filtering
Pagination
Streaming Mode
Custom Timeout and Retries
Working with Multiple Datasets
Last updated

