# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python import os from asposecellscloud.apis.cells_api import CellsApi from asposecellscloud.models import * from asposecellscloud.requests import * CellsCloudClientId ='....' # get from https://dashboard.aspose.cloud/#/applications CellsCloudClientSecret='....' # get from https://dashboard.aspose.cloud/#/applications api = CellsApi(CellsCloudClientId,CellsCloudClientSecret) request = PostMergeRequest( { 'assemblytest.xlsx': 'assemblytest.xlsx' ,'datasource.xlsx': 'datasource.xlsx' },out_format= 'pdf',merge_to_one_sheet= True) api.post_merge(request)