Quick Start
Installation
# Clone repository
git clone [email protected]:AvinasiLabs/delong-datasets.git
cd delong-datasets
# Install in development mode
pip install -e .Basic Usage
from delong_datasets import download_dataset
# Download dataset (automatic TEE detection)
data = download_dataset("<dataset_id>", token="<your-token>")
print(f"Loaded {data.num_rows} rows")
print(data.column_names)
# Convert to pandas
import pandas as pd
df = pd.DataFrame(data)
print(df.head())Command Line
Last updated

