Skip to content

Commit a3285da

Browse files
committed
Release Aspose.Cells Cloud SDK 20.10
1 parent 4a0cb21 commit a3285da

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![PyPI](https://img.shields.io/pypi/v/asposecellscloud) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/asposecellscloud) ![PyPI - Downloads](https://img.shields.io/pypi/dm/asposecellscloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-python)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-python/20.9)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![PyPI](https://img.shields.io/pypi/v/asposecellscloud) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/asposecellscloud) ![PyPI - Downloads](https://img.shields.io/pypi/dm/asposecellscloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-python)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-python/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-python/20.10)
22

33

44
# Python SDK for Spreadsheet Processing in Cloud
@@ -21,11 +21,10 @@ Python Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate M
2121
- Convert worksheets to PDF, XPS & SVG formats.
2222
- Inter-convert files to popular Excel formats.
2323

24-
## Enhancements in Version 20.9
24+
## Enhancements in Version 20.10
2525

26-
- Supported sparkline groups.
27-
- Added API to update Pivot Fields.
28-
- Enhanced chart API.
26+
- Support to upload large file.
27+
- Enhancement for post sparkline group API.
2928

3029
## Read & Write Spreadsheet Formats
3130

asposecellscloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(self, host=None, header_name=None, header_value=None, cookie=None):
8383
self.host = host
8484
self.cookie = cookie
8585
# Set default User-Agent.
86-
self.user_agent = 'Swagger-Codegen/20.9/python'
86+
self.user_agent = 'Swagger-Codegen/20.10/python'
8787

8888
@property
8989
def user_agent(self):
@@ -740,4 +740,4 @@ def get_access_token(self, grant_type, client_id, client_secret, version, **kwar
740740
_preload_content=params.get('_preload_content', True),
741741
_request_timeout=params.get('_request_timeout'),
742742
collection_formats=collection_formats)
743-
return data[0].access_token
743+
return data[0].access_token

asposecellscloud/apis/cells_api.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ def __init__(self,appsid, appkey, version='v3.0', base_uri= 'https://api.aspose.
5858
config.api_client = ApiClient()
5959
self.api_client = config.api_client
6060
self.api_client.set_default_header("Authorization", "Bearer " + self.access_token)
61-
self.get_access_token_time = time.process_time()
61+
self.get_access_token_time = time.process_time()
6262
# self.api_client.set_default_header("Authorization", "Bearer " + self.auth_data.access_token)
6363

6464
def check_access_token(self):
6565
if self.access_token:
66-
timediff = time.process_time() - self.get_access_token_time
66+
timediff = time.process_time() - self.get_access_token_time
6767
if timediff > 86300 :
6868
api_client = ApiClient(self.base_uri)
6969
self.access_token = api_client.get_access_token("client_credentials", self.appsid, self.appkey,self.version)
7070
self.api_client.set_default_header("Authorization", "Bearer " + self.access_token)
71-
self.get_access_token_time = time.process_time()
71+
self.get_access_token_time = time.process_time()
7272

7373
def cells_auto_filter_delete_worksheet_date_filter(self, name, sheet_name, field_index, date_time_grouping_type, **kwargs):
7474
"""
@@ -22885,10 +22885,10 @@ def cells_sparkline_groups_post_worksheet_sparkline_group_with_http_info(self, n
2288522885
path_params['name'] = params['name']
2288622886
if 'sheet_name' in params:
2288722887
path_params['sheetName'] = params['sheet_name']
22888+
if 'sparkline_group_index' in params:
22889+
path_params['sparklineGroupIndex'] = params['sparkline_group_index']
2288822890

2288922891
query_params = []
22890-
if 'sparkline_group_index' in params:
22891-
query_params.append(('sparklineGroupIndex', params['sparkline_group_index']))
2289222892
if 'folder' in params:
2289322893
query_params.append(('folder', params['folder']))
2289422894
if 'storage_name' in params:

asposecellscloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,6 @@ def to_debug_report(self):
254254
return "Python SDK Debug Report:\n"\
255255
"OS: {env}\n"\
256256
"Python Version: {pyversion}\n"\
257-
"Version of the API: 20.9\n"\
258-
"SDK Package Version: 20.9".\
257+
"Version of the API: 3.0\n"\
258+
"SDK Package Version: 20.10".\
259259
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)