From ddfd7a7899679667a3ccbb1e9c906c671de172f9 Mon Sep 17 00:00:00 2001 From: bosunUbuntu Date: Sun, 26 Jan 2025 11:50:44 +0100 Subject: [PATCH] moved script to client --- fetch_data.py => client/fetch_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename fetch_data.py => client/fetch_data.py (98%) diff --git a/fetch_data.py b/client/fetch_data.py similarity index 98% rename from fetch_data.py rename to client/fetch_data.py index 5c464fd5..5593fe75 100644 --- a/fetch_data.py +++ b/client/fetch_data.py @@ -5,7 +5,7 @@ YIELD_API_URL = "https://yields.llama.fi/pools" TOKEN_API_URL = "https://starknet.api.avnu.fi/v1/starknet/tokens" -DATA_DIR = "./data" +DATA_DIR = "../data" YIELD_DIR = f"{DATA_DIR}/yields" os.makedirs(YIELD_DIR, exist_ok=True)