Skip to content

Commit 2d2b6b3

Browse files
committed
Release Aspose.Cells Cloud SDK 22.12
1 parent bec9146 commit 2d2b6b3

File tree

12 files changed

+3281
-142
lines changed

12 files changed

+3281
-142
lines changed

README.md

Lines changed: 3 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/22.11)
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/22.12)
22

33

44
# Python SDK for Spreadsheet Processing in Cloud
@@ -21,11 +21,9 @@ 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-
## Feature & Enhancements in Version 22.11
24+
## Feature & Enhancements in Version 22.12
2525

26-
- Add api for converting workbook to json.
27-
- Add api for converting workbook to sql.
28-
- Add api for converting workbook to csv.
26+
- Support chart axis operations.
2927

3028
## Read & Write Spreadsheet Formats
3129

asposecellscloud/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
from .models.access_token_response import AccessTokenResponse
2929
from .models.area import Area
3030
from .models.auto_fitter_options import AutoFitterOptions
31+
from .models.axis import Axis
3132
from .models.barcode_response import BarcodeResponse
3233
from .models.barcode_response_list import BarcodeResponseList
3334
from .models.batch_convert_request import BatchConvertRequest
@@ -119,6 +120,7 @@
119120
from .models.text_water_marker_request import TextWaterMarkerRequest
120121
from .models.texture_fill import TextureFill
121122
from .models.theme_color import ThemeColor
123+
from .models.tick_labels import TickLabels
122124
from .models.tile_pic_option import TilePicOption
123125
from .models.top10 import Top10
124126
from .models.top10_filter import Top10Filter
@@ -135,6 +137,7 @@
135137
from .models.auto_shape_response import AutoShapeResponse
136138
from .models.auto_shapes import AutoShapes
137139
from .models.auto_shapes_response import AutoShapesResponse
140+
from .models.axis_response import AxisResponse
138141
from .models.cell import Cell
139142
from .models.cell_response import CellResponse
140143
from .models.cells import Cells

asposecellscloud/api_client.py

Lines changed: 1 addition & 1 deletion
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/22.11/python'
86+
self.user_agent = 'Swagger-Codegen/22.12/python'
8787

8888
@property
8989
def user_agent(self):

asposecellscloud/apis/cells_api.py

Lines changed: 1416 additions & 112 deletions
Large diffs are not rendered by default.

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: 22.11\n"\
258-
"SDK Package Version: 22.11".\
257+
"Version of the API: 22.3\n"\
258+
"SDK Package Version: 22.12".\
259259
format(env=sys.platform, pyversion=sys.version)

asposecellscloud/models/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
from .access_token_response import AccessTokenResponse
2929
from .area import Area
3030
from .auto_fitter_options import AutoFitterOptions
31+
from .axis import Axis
3132
from .barcode_response import BarcodeResponse
3233
from .barcode_response_list import BarcodeResponseList
3334
from .batch_convert_request import BatchConvertRequest
@@ -119,6 +120,7 @@
119120
from .text_water_marker_request import TextWaterMarkerRequest
120121
from .texture_fill import TextureFill
121122
from .theme_color import ThemeColor
123+
from .tick_labels import TickLabels
122124
from .tile_pic_option import TilePicOption
123125
from .top10 import Top10
124126
from .top10_filter import Top10Filter
@@ -135,6 +137,7 @@
135137
from .auto_shape_response import AutoShapeResponse
136138
from .auto_shapes import AutoShapes
137139
from .auto_shapes_response import AutoShapesResponse
140+
from .axis_response import AxisResponse
138141
from .cell import Cell
139142
from .cell_response import CellResponse
140143
from .cells import Cells

0 commit comments

Comments
 (0)