File size: 233 Bytes
63e8dcd |
1 2 3 4 5 6 7 8 9 10 |
import apebench
from tqdm import tqdm
import os
DATA_PATH = "data"
os.makedirs(DATA_PATH, exist_ok=True)
for config in tqdm(apebench.scraper.CURATION_APEBENCH_V1):
apebench.scraper.scrape_data_and_metadata(DATA_PATH, **config) |