html_content = """ Prueba Etiqueta - Star Natural
Star Natural

VCOL

Alimento en Disco Prensado
Marca:
Star Natural
Línea de Producto:
VCOL
Presentación 1:
VCOL 360 mL
Presentación 2:
VCOL 400 mL
Precio Especial
$15.555
""" # Save HTML file with open("prueba_VCOL_star_natural.html", "w", encoding="utf-8") as f: f.write(html_content) # Convert to PDF using WeasyPrint from weasyprint import HTML HTML("prueba_VCOL_star_natural.html").write_pdf("prueba_VCOL_star_natural.pdf") print("Files generated successfully.")