import re import json # Función para convertir archivo de WhatsApp a JSONL def whatsapp_txt_a_jsonl(archivo_txt, archivo_jsonl): # Expresión regular para capturar el timestamp, sender y mensaje patron = r'\[(.*?)\] (.*?): (.*)' # Abre el archivo de WhatsApp with open(archivo_txt, 'r', encoding='utf-8') as txt_file: with open(archivo_jsonl, 'w', encoding='utf-8') as jsonl_file: for linea in txt_file: # Usar expresión regular para extraer los datos match = re.match(patron, linea) if match: timestamp, sender, message = match.groups() # Crear un diccionario con los datos json_obj = { "timestamp": timestamp, "sender": sender, "message": message } # Escribir el objeto en formato JSONL (una línea por cada mensaje) jsonl_file.write(json.dumps(json_obj, ensure_ascii=False) + '\n') print(f"Archivo {archivo_jsonl} creado exitosamente.") # Convierte el archivo .txt a .jsonl whatsapp_txt_a_jsonl('/Users/acavadondeteneselarchivo/_chat.txt', '/Users/acadondevaconversion/Chat/output.jsonl')