Conversion en fichiers MHTML dans Python
Contents
[
Hide
]
Aspose.Cells - Conversion en MHTML
Pour convertir la feuille de calcul en fichier MHTML en utilisant Aspose.Cells for Java dans Python, appelez simplement la feuille de calcul_à_méthode mhtml() du module Convertisseur.
Code Python
saveFormat = self.SaveFormat
# Specify the file path
filePath = self.dataDir + "Book1.xlsx"
# Specify the HTML saving options
sv = self.HtmlSaveOptions(saveFormat.M_HTML)
# Instantiate a workbook and open the template XLSX file
wb = self.Workbook(filePath)
# Save the MHT file
wb.save(filePath + ".out.mht", sv)
\# Print message
print "Excel to MHTML conversion performed successfully."
Télécharger le code d’exécution
TéléchargerConversion en MHTML (Aspose.Cells) à partir de l’un des sites de codage social mentionnés ci-dessous :