13 lines
292 B
Python
13 lines
292 B
Python
#!.venv/bin/python
|
|
from utils.database.loader_action 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)
|
|
|
|
|