CryptoMarketParser/tests/test_kaggle_download.py
Simon Moisy 302be95ce7 init
2025-03-13 15:21:06 +08:00

11 lines
315 B
Python

import os
import sys
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
from datasets import Datasets
download_path = "./data" # Path where the dataset will be downloaded
dataset_id = "mczielinski/bitcoin-historical-data"
Datasets.download_kaggle_dataset(dataset_id, download_path)