This commit is contained in:
2025-05-02 19:10:49 +02:00
parent a752210a33
commit 138474aa0b
2 changed files with 27 additions and 5 deletions

View File

@@ -1,5 +1,12 @@
import time
def chi_sono(unit, tool):
print(f'{__name__}: {unit} - {tool}')
time.sleep(20)
return f'{__name__}: {unit} - {tool}'
#!.venv/bin/python
from utils.database.loader import load_data
from utils.parsers.data_preparation import make_loc_matrix
import logging
logger = logging.getLogger(__name__)
def main_loader(cfg, id):
matrice_valori = make_loc_matrix(cfg, id)
load_data(cfg, matrice_valori)