import os import sys 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 = PostRowStyleRequest( 'Book1.xlsx', 'Sheet1', 1, Style(number=2),folder= 'PythonTest',storage_name= '') api.post_row_style(request)