From 3d53a6ced5175f27c0d84bc282a8bae7db91d96f Mon Sep 17 00:00:00 2001 From: root Date: Sun, 12 Jan 2025 23:54:03 +0300 Subject: [PATCH] added timeout for crypto api requests --- db | Bin 8192 -> 8192 bytes index.js | 68 +++++++++++++++++++++---------------------------------- 2 files changed, 26 insertions(+), 42 deletions(-) diff --git a/db b/db index bea54beeeac7df3a7dc06550467efb264e5c35a5..8576a2e45b5ce16dae83e688356e66a07a97d337 100644 GIT binary patch delta 795 zcmYMxPe{{o7{~GF$v>Oz_xt`beN3mOQ-iR;0#VF})%vs9T89k0lr}KEI7v;3gsBIW zQrMGbQ65B$EN!|7v6LVSi6{`s7>ZhE(L!9*rN~2GzQ3-o!y7()nygJ$UovKKiVd>@ zWdmAKrm_H9NSoCrv;nPCtJg|3yS865YY}2i%!%jXzVL}F!YxjUT#+iG)vy{=U#Jh& zF11lDS6ynpny$tuKb3{RrB205nUQgZsAI+U!=~(Uf544tQ^4h}WVAV2&x z0A$fQToko@Egt#agdHedvQl7Z4JCPy`?}YF(*AR3BREx#eAnXx+9}yopXkDCBij^ z-0Xh^lq6YohMm)en~}!$N+55d?xpXK)H*f?HMkX^9g>y7DrerFW#pQ|QJ@6L>Xylj z)i(!_tEd==BrBbPRp;d#;=*!3kOszTDp-P#u*?X z*|h6HUCD4QvTdafNcHO8f4jxD_zd~bWFnBF^NsQFo#Nxj1ve*wOp+DP!uN7>Hgaxt z8PHbA#%9lB+tJONa~zRCF_L5aF8>o}G;(&vAdpdKL+Y=*{I@pbtPLlSLAq(a*Ri|p b7INC$51?qt;XvB7R~uY5588hQ=> diff --git a/index.js b/index.js index 3240318..42b4d3c 100644 --- a/index.js +++ b/index.js @@ -1,37 +1,7 @@ const sqlite3 = require('sqlite3').verbose(); const db = new sqlite3.Database('./db'); -const dates = `2024-08-04 -2024-08-05 -2024-08-06 -2024-08-07 -2024-08-08 -2024-08-09 -2024-08-10 -2024-08-11 -2024-08-12 -2024-08-13 -2024-08-14 -2024-08-15 -2024-08-16 -2024-08-17 -2024-08-18 -2024-08-19 -2024-08-20 -2024-08-21 -2024-08-22 -2024-08-23 -2024-08-24 -2024-08-25 -2024-08-26 -2024-08-27 -2024-08-28 -2024-08-29 -2024-08-30 -2024-08-31 -2024-09-01 -2024-09-02 -2024-09-03 +const dates = `2024-09-03 2024-09-04 2024-09-05 2024-09-06 @@ -177,21 +147,35 @@ function formatDate(date) { return `${day}-${month}-${year}`; } +const wait = async function() { + await new Promise((res) => { + setTimeout(() => { + res(); + }, 60000); + }) + +} + db.serialize(async () => { // db.run("CREATE TABLE assets (asset TEXT, price VALUE, date DATE)"); - // const params = dates.split('\n'); + const params = dates.split('\n'); - // for(param of params) { - // const stmt = db.prepare("INSERT INTO assets VALUES (?, ?, ?)") - // const date = new Date(param) - // const formattedDate= formatDate(date); - // const response = await fetch(`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${formattedDate}`) - // const data = await response.json() - // const price = Number(data.market_data.current_price.rub) - // stmt.run("ETH", price, date) - // stmt.finalize(); - // } + for(i in params) { + if(i % 5 == 0) { + await wait(); + } + const param = params[i] + const stmt = db.prepare("INSERT INTO assets VALUES (?, ?, ?)") + const date = new Date(param) + const formattedDate= formatDate(date); + const response = await fetch(`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${formattedDate}`) + const data = await response.json() + const price = Number(data.market_data.current_price.rub) + stmt.run("ETH", price, date) + stmt.finalize(); + console.log(param); + } db.each("SELECT * FROM assets", (err, row) => {