Skip to content

Commit 82b028a

Browse files
committed
Update code.
1 parent f0edb09 commit 82b028a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/Example_QuickStart.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
from asposecellscloud.apis.cells_api import CellsApi
44
from asposecellscloud.models import *
55
from asposecellscloud.requests import *
6-
CellsCloudClientId ='....' # get from https://dashboard.aspose.cloud/#/applications
7-
CellsCloudClientSecret='....' # get from https://dashboard.aspose.cloud/#/applications
8-
instance = CellsApi(CellsCloudClientId,CellsCloudClientSecret)
9-
# instance = CellsApi(os.getenv('CellsCloudClientId'),os.getenv('CellsCloudClientSecret'))
6+
# CellsCloudClientId ='....' # get from https://dashboard.aspose.cloud/#/applications
7+
# CellsCloudClientSecret='....' # get from https://dashboard.aspose.cloud/#/applications
8+
# instance = CellsApi(CellsCloudClientId,CellsCloudClientSecret)
9+
instance = CellsApi(os.getenv('CellsCloudClientId'),os.getenv('CellsCloudClientSecret'))
1010
response = instance.put_convert_workbook(PutConvertWorkbookRequest( 'EmployeeSalesSummary.xlsx', 'pdf'))
1111
shutil.move( response ,"EmployeeSalesSummary.pdf")

0 commit comments

Comments
 (0)