#174·WeClone

[feature] Enhanced parallel processing capability for data handling

Author: xming521Created Jun 27, 2025Updated Jun 27, 2025
Labelsfeature
try:
    import dask.dataframe as dd

    DASK_AVAILABLE = True
except ImportError:
    DASK_AVAILABLE = False

try:
    from pandarallel import pandarallel

    pandarallel.initialize(progress_bar=True, nb_workers=4)
    PANDARALLEL_AVAILABLE = True
except ImportError:
    PANDARALLEL_AVAILABLE = False