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 =  GetWorkbookDefaultStyleRequest( 'Book1.xlsx',folder= 'PythonTest',storage_name= '')
api.get_workbook_default_style(request)