Export JSON to DOCX file in the Cloud
Excel & OpenOffice spreadsheet export with open source Cloud SDK for Python
Exoprt JSON to DOCX file in Cloud SDK for Python
- Create an account at Dashboard to get free API quota & authorization details
- Initialize
CellsApi
with Client Id, Client Secret, Base URL & API version - Call
cells_workbook_put_convert_workbook
method to get the resultant DOCX stream
Get Started with Excel REST API
Get Excel Cloud SDK for .NET source code from GitHub to compile the SDK yourself or head to the Releases for alternative download options.
Also have a look at Swagger-based API Reference to know more about the Excel REST API.
Python Code for JSON to DOCX Conversion
// 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.xlsx",format="docx")
shutil.move(file1, "destFile.docx")
FAQ
-
How can I get started with Aspose. REST APIs?Quickstart not only guides through the initialization of Aspose. Cloud API, it also helps in installing the required libraries.
-
Where can I see the release notes for Aspose. Cloud API?Complete release notes can be reviewed at Aspose. Cloud Documentation.
-
Is it safe to convert to in the Cloud?Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
-
What file formats are supported by Aspose. Cloud API?Aspose. Cloud can convert to and more. Checkout the complete list of supported file formats.
-
I do not have time to set up. Is there a quick demo for to that I can try?Indeed! Checkout the to Conversion App.