Datasets:

Modalities:
Image
Text
Size:
< 1K
Libraries:
Datasets
License:
Ine_Reverso / crear.py
judith0's picture
agregando 30 a 100 img
d7b6fc9
raw
history blame
633 Bytes
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(51, 100):
data = {
"CIC": "",
"OCR": "",
"MRZ" : "IDMEX",
"modelType": "DEF"
}
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.")