Automatic file saving with timestamps, organized folder structure, and formatted text reports for all lookups
IP-Tracker automatically saves all lookup results to organized text files with timestamps, ensuring complete tracking history and easy result retrieval. Every query generates a formatted report stored in a dedicated folder structure.
with open(nombre_archivo, "w", encoding="utf-8") as file: file.write("="*60 + "\n") file.write("INFORMACIÓN DE GEOLOCALIZACIÓN IP - MÉTODO 1\n") file.write("="*60 + "\n\n") file.write(f"Fecha de consulta: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n") file.write(f"IP: {data.get('query', 'N/A')}\n") file.write(f"País: {data.get('country', 'N/A')}\n") file.write(f"Código de país: {data.get('countryCode', 'N/A')}\n") # ... more fields file.write(f"\nGoogle Maps: https://www.google.com/maps?q={lat},{lon}\n")
Example output:
IP_8.8.8.8_20240315_143022.txt
============================================================INFORMACIÓN DE GEOLOCALIZACIÓN IP - MÉTODO 1============================================================Fecha de consulta: 2024-03-15 14:30:22IP: 8.8.8.8País: United StatesCódigo de país: USRegión: CaliforniaCiudad: Mountain ViewCódigo postal: 94035Latitud: 37.386Longitud: -122.0838Zona horaria: America/Los_AngelesISP: Google LLCOrganización: Google Public DNSAS: AS15169 Google LLCGoogle Maps: https://www.google.com/maps?q=37.386,-122.0838
with open(nombre_archivo, "w", encoding="utf-8") as f: f.write("="*60 + "\n") f.write("ANÁLISIS DE NÚMERO TELEFÓNICO\n") f.write("="*60 + "\n\n") f.write(f"Fecha de consulta: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n\n") f.write(f"Número válido: {'Sí' if es_valido else 'No'}\n") f.write(f"Número posible: {'Sí' if es_posible else 'No'}\n\n") # ... more fields
Example output:
Telefono_593991234567_20240315_144521.txt
============================================================ANÁLISIS DE NÚMERO TELEFÓNICO============================================================Fecha de consulta: 2024-03-15 14:45:21Número válido: SíNúmero posible: SíFormato internacional: +593 99 123 4567Formato E.164: +593991234567Formato nacional: 099 123 4567País/Región: EcuadorRegión (EN): EcuadorCódigo de país: +593Número nacional: 991234567Operador: ClaroTipo de número: MóvilZonas horarias: America/Guayaquil
In addition to file saving, results are displayed on the console with color formatting:
# Success message in greenprint(f"\n{GREEN}[✓]{RESET} Resultados guardados en: {nombre_archivo}")print(f"{GREEN}[✓]{RESET} Ver en Google Maps: https://www.google.com/maps?q={lat},{lon}")