Konvertieren Sie XLTX in DOCX mit dem Cloud SDK Cells für Python
API
PUT
https://api.aspose.cloud/v3.0/cells/convert
Das Konvertieren von Dateiformaten von XLTX in DOCX kann eine komplexe Aufgabe sein. Unser Python SDK übernimmt alle XLTX-in-DOCX-Formatkonvertierungen und behält dabei den wichtigsten strukturellen und logischen Inhalt der XLTX-Quelltabelle bei. Unsere Python-Bibliothek bietet eine professionelle Lösung für die Online-Konvertierung von XLTX- in DOCX-Dateien. Dieses Cloud SDK bietet Python-Entwicklern leistungsstarke Funktionen und gewährleistet eine hochwertige DOCX-Ausgabe.
Python Codebeispiel für die Konvertierung von XLTX in DOCX mit Cells Cloud SDK
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/
import os
import shutil
from asposecellscloud.apis.cells_api import CellsApi
cells_api = CellsApi(os.getenv('ProductClientId'),os.getenv('ProductClientSecret'))
file1 = cells_api.cells_workbook_put_convert_workbook("Book1.xltx",format="docx")
shutil.move(file1, "destFile.docx")
So konvertieren Sie XLTX mit der Cells Cloud Python-Bibliothek in DOCX.
- Registrieren Sie ein Konto unterArmaturenbrett um ein kostenloses API-Kontingent und Autorisierungsdetails zu erhalten
- Installieren Sie die Bibliothek Python und fügen Sie die Referenz (importieren Sie die Bibliothek) zu Ihrem Projekt hinzu.
- Öffnen Sie die Quelldatei in Python.
- Verwenden Sie die Methode `put_convert_workbook`, um den resultierenden Stream abzurufen.
System Anforderungen
- Python 2.7 oder neuer
- Python 3.10 oder neuer