recibos_telmex / crear.py
judith0's picture
agregando 24 telmex
973b040
import json
import os
# Ruta de la carpeta donde se guardarán los archivos JSON
folder_path = "./data/key"
# Verificar si la carpeta existe, de lo contrario, crearla
if not os.path.exists(folder_path):
os.makedirs(folder_path)
for i in range(411, 450):
data = {
"date": "",
"name": "",
"fullAddress": "",
"address": {
"street": "",
"colony": "",
"city": "",
"state": ""
},
"zipCode": "",
"barCode": "",
"totalPayment": "",
"billingMonth": "",
"clientPhone": "",
"billNumber": "",
"paymentLimitDate": "",
"caption": "TELEFONOS DE MEXICO",
"type": "telmex"
}
file_name = f"{i}.json"
file_path = os.path.join(folder_path, file_name)
with open(file_path, 'w') as f:
json.dump(data, f, indent=4)
print(f"Archivo {file_name} creado en {folder_path}.")
print("Creación de archivos JSON completada.")