CryptoMarketParser/tests/test_kaggle_download.py

11 lines
315 B
Python
Raw Normal View History

2025-03-13 15:21:06 +08:00
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)