diff --git a/__pycache__/x1_importar_to_master.cpython-310.pyc b/__pycache__/x1_importar_to_master.cpython-310.pyc index f03955e..c99fd99 100644 Binary files a/__pycache__/x1_importar_to_master.cpython-310.pyc and b/__pycache__/x1_importar_to_master.cpython-310.pyc differ diff --git a/__pycache__/x2_master_export2translate.cpython-310.pyc b/__pycache__/x2_master_export2translate.cpython-310.pyc index 4de4456..e3ac968 100644 Binary files a/__pycache__/x2_master_export2translate.cpython-310.pyc and b/__pycache__/x2_master_export2translate.cpython-310.pyc differ diff --git a/__pycache__/x3_llm_auto_translate.cpython-310.pyc b/__pycache__/x3_llm_auto_translate.cpython-310.pyc index 942f4ef..589f547 100644 Binary files a/__pycache__/x3_llm_auto_translate.cpython-310.pyc and b/__pycache__/x3_llm_auto_translate.cpython-310.pyc differ diff --git a/__pycache__/x4_integrate_translates_to_master.cpython-310.pyc b/__pycache__/x4_integrate_translates_to_master.cpython-310.pyc index 5f07977..1eacabe 100644 Binary files a/__pycache__/x4_integrate_translates_to_master.cpython-310.pyc and b/__pycache__/x4_integrate_translates_to_master.cpython-310.pyc differ diff --git a/__pycache__/x5_complete_empty_cells_master.cpython-310.pyc b/__pycache__/x5_complete_empty_cells_master.cpython-310.pyc index 509ed03..286773d 100644 Binary files a/__pycache__/x5_complete_empty_cells_master.cpython-310.pyc and b/__pycache__/x5_complete_empty_cells_master.cpython-310.pyc differ diff --git a/__pycache__/x6_update_from_master.cpython-310.pyc b/__pycache__/x6_update_from_master.cpython-310.pyc index eead652..06ef08e 100644 Binary files a/__pycache__/x6_update_from_master.cpython-310.pyc and b/__pycache__/x6_update_from_master.cpython-310.pyc differ diff --git a/menu_pasos_traduccion.py b/menu_pasos_traduccion.py index aa85ad8..3095cc1 100644 --- a/menu_pasos_traduccion.py +++ b/menu_pasos_traduccion.py @@ -1,7 +1,7 @@ import tkinter as tk from tkinter import ttk from tkinter import messagebox -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc import x1_importar_to_master import x2_master_export2translate import x3_llm_auto_translate diff --git a/x1_importar_to_master.py b/x1_importar_to_master.py index b8dcffe..f08b82b 100644 --- a/x1_importar_to_master.py +++ b/x1_importar_to_master.py @@ -1,7 +1,7 @@ import pandas as pd import os import re -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc def preprocesar_importacion(tipo_PLC, codigo_columna_maestra, df_importacion): # Iterar sobre las filas del DataFrame de importaciĆ³n @@ -93,5 +93,5 @@ def run(tipo_PLC, codigo_columna_maestra) : if __name__ == "__main__": tipo_PLC = "siemens" codigo_columna_maestra = "it-IT" - run(tipo_PLC) + run(tipo_PLC, codigo_columna_maestra) diff --git a/x2_master_export2translate.py b/x2_master_export2translate.py index ab870a2..e1b276a 100644 --- a/x2_master_export2translate.py +++ b/x2_master_export2translate.py @@ -1,6 +1,6 @@ import pandas as pd import os -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc def exportar_para_traduccion(tipo_PLC, archivo_maestro, target_lang_code): if not os.path.exists(archivo_maestro): diff --git a/x3_llm_auto_translate.py b/x3_llm_auto_translate.py index 7cdb888..1e55f78 100644 --- a/x3_llm_auto_translate.py +++ b/x3_llm_auto_translate.py @@ -10,7 +10,7 @@ from google.cloud import translate_v2 as translate from google.oauth2 import service_account import html from tqdm import tqdm -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc import time diff --git a/x4_integrate_translates_to_master.py b/x4_integrate_translates_to_master.py index 7df8468..6a3eeea 100644 --- a/x4_integrate_translates_to_master.py +++ b/x4_integrate_translates_to_master.py @@ -1,4 +1,4 @@ -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc import pandas as pd import os import re diff --git a/x5_complete_empty_cells_master.py b/x5_complete_empty_cells_master.py index da4a0e5..22f63d5 100644 --- a/x5_complete_empty_cells_master.py +++ b/x5_complete_empty_cells_master.py @@ -1,4 +1,4 @@ -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc import pandas as pd import os import re diff --git a/x6_update_from_master.py b/x6_update_from_master.py index 5e3ce3d..f49b420 100644 --- a/x6_update_from_master.py +++ b/x6_update_from_master.py @@ -2,7 +2,7 @@ import pandas as pd import os import re import logging -from ...Library.Python import funciones_comunes as fc +import PyLibrary.funciones_comunes as fc def update_from_master(tipo_PLC, archivo_maestro, archivo_to_update, target_lang_code):