Corregido importacion de la libreriaPyLibrary
This commit is contained in:
parent
54680fe69a
commit
f78400399e
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
import tkinter as tk
|
import tkinter as tk
|
||||||
from tkinter import ttk
|
from tkinter import ttk
|
||||||
from tkinter import messagebox
|
from tkinter import messagebox
|
||||||
from ...Library.Python import funciones_comunes as fc
|
import PyLibrary.funciones_comunes as fc
|
||||||
import x1_importar_to_master
|
import x1_importar_to_master
|
||||||
import x2_master_export2translate
|
import x2_master_export2translate
|
||||||
import x3_llm_auto_translate
|
import x3_llm_auto_translate
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import os
|
import os
|
||||||
import re
|
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):
|
def preprocesar_importacion(tipo_PLC, codigo_columna_maestra, df_importacion):
|
||||||
# Iterar sobre las filas del DataFrame de importación
|
# Iterar sobre las filas del DataFrame de importación
|
||||||
|
@ -93,5 +93,5 @@ def run(tipo_PLC, codigo_columna_maestra) :
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
tipo_PLC = "siemens"
|
tipo_PLC = "siemens"
|
||||||
codigo_columna_maestra = "it-IT"
|
codigo_columna_maestra = "it-IT"
|
||||||
run(tipo_PLC)
|
run(tipo_PLC, codigo_columna_maestra)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import os
|
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):
|
def exportar_para_traduccion(tipo_PLC, archivo_maestro, target_lang_code):
|
||||||
if not os.path.exists(archivo_maestro):
|
if not os.path.exists(archivo_maestro):
|
||||||
|
|
|
@ -10,7 +10,7 @@ from google.cloud import translate_v2 as translate
|
||||||
from google.oauth2 import service_account
|
from google.oauth2 import service_account
|
||||||
import html
|
import html
|
||||||
from tqdm import tqdm
|
from tqdm import tqdm
|
||||||
from ...Library.Python import funciones_comunes as fc
|
import PyLibrary.funciones_comunes as fc
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from ...Library.Python import funciones_comunes as fc
|
import PyLibrary.funciones_comunes as fc
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from ...Library.Python import funciones_comunes as fc
|
import PyLibrary.funciones_comunes as fc
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
|
@ -2,7 +2,7 @@ import pandas as pd
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import logging
|
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):
|
def update_from_master(tipo_PLC, archivo_maestro, archivo_to_update, target_lang_code):
|
||||||
|
|
Loading…
Reference in New Issue