This commit is contained in:
2025-05-01 00:58:07 +02:00
parent cc7a136cf3
commit fd5429ee0d
23 changed files with 190 additions and 57 deletions

View File

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