Skip to content

Commit 89033df

Browse files
Merge branch 'master' into release
2 parents 02326f1 + d4e2cf0 commit 89033df

13 files changed

+44
-38
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
1616
- [Convert a document to desired file format](https://docs.aspose.cloud/display/wordscloud/Convert+Document+to+Destination+Format+with+Detailed+Settings+and+Save+Result+to+Storage) along with detailed settings.
1717
- Convert an encrypted PDF document into Word document format.
1818

19+
## Enhancements in Version 23.3
20+
21+
- Fix compatibility between CreateDocument API and Dropbox storage.
22+
- Fix compatibility for property PageCount for FixedPageSaveOptionsData.
23+
24+
1925
## Enhancements in Version 23.2
2026

2127
- Added operations to manipulate with Structure Document Tags (SDT) in documents.

asposewordscloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
8383

8484
self.pool = None
8585
self.rest_client = rest.RESTClientObject(configuration)
86-
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-version': '23.2'}
86+
self.default_headers = {'x-aspose-client': 'python sdk', 'x-aspose-version': '23.3'}
8787
if header_name is not None:
8888
self.default_headers[header_name] = header_value
8989
self.cookie = cookie
9090
# Set default User-Agent.
91-
self.user_agent = 'python sdk 23.2'
91+
self.user_agent = 'python sdk 23.3'
9292

9393
def __del__(self):
9494
if not self.pool is None:

asposewordscloud/apis/words_api.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13328,8 +13328,8 @@ def get_range_text(self, request, **kwargs): # noqa: E501
1332813328

1332913329
:param is_async bool
1333013330
:param name str : The filename of the input document. (required)
13331-
:param range_start_identifier str : The range start identifier. (required)
13332-
:param range_end_identifier str : The range end identifier.
13331+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
13332+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
1333313333
:param folder str : Original document folder.
1333413334
:param storage str : Original document storage.
1333513335
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
@@ -13406,8 +13406,8 @@ def get_range_text_online(self, request, **kwargs): # noqa: E501
1340613406

1340713407
:param is_async bool
1340813408
:param document file : The document. (required)
13409-
:param range_start_identifier str : The range start identifier. (required)
13410-
:param range_end_identifier str : The range end identifier.
13409+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
13410+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
1341113411
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
1341213412
:param password str : Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
1341313413
:param encrypted_password str : Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
@@ -20389,8 +20389,8 @@ def remove_range(self, request, **kwargs): # noqa: E501
2038920389

2039020390
:param is_async bool
2039120391
:param name str : The filename of the input document. (required)
20392-
:param range_start_identifier str : The range start identifier. (required)
20393-
:param range_end_identifier str : The range end identifier.
20392+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
20393+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
2039420394
:param folder str : Original document folder.
2039520395
:param storage str : Original document storage.
2039620396
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
@@ -20468,8 +20468,8 @@ def remove_range_online(self, request, **kwargs): # noqa: E501
2046820468

2046920469
:param is_async bool
2047020470
:param document file : The document. (required)
20471-
:param range_start_identifier str : The range start identifier. (required)
20472-
:param range_end_identifier str : The range end identifier.
20471+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
20472+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
2047320473
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
2047420474
:param password str : Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
2047520475
:param encrypted_password str : Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
@@ -21523,9 +21523,9 @@ def replace_with_text(self, request, **kwargs): # noqa: E501
2152321523

2152421524
:param is_async bool
2152521525
:param name str : The filename of the input document. (required)
21526-
:param range_start_identifier str : The range start identifier. (required)
21526+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
2152721527
:param range_text ReplaceRange : Model with text for replacement. (required)
21528-
:param range_end_identifier str : The range end identifier.
21528+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
2152921529
:param folder str : Original document folder.
2153021530
:param storage str : Original document storage.
2153121531
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
@@ -21606,9 +21606,9 @@ def replace_with_text_online(self, request, **kwargs): # noqa: E501
2160621606

2160721607
:param is_async bool
2160821608
:param document file : The document. (required)
21609-
:param range_start_identifier str : The range start identifier. (required)
21609+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
2161021610
:param range_text ReplaceRange : Model with text for replacement. (required)
21611-
:param range_end_identifier str : The range end identifier.
21611+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
2161221612
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
2161321613
:param password str : Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
2161421614
:param encrypted_password str : Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
@@ -21917,9 +21917,9 @@ def save_as_range(self, request, **kwargs): # noqa: E501
2191721917

2191821918
:param is_async bool
2191921919
:param name str : The filename of the input document. (required)
21920-
:param range_start_identifier str : The range start identifier. (required)
21920+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
2192121921
:param document_parameters RangeDocument : Parameters of a new document. (required)
21922-
:param range_end_identifier str : The range end identifier.
21922+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
2192321923
:param folder str : Original document folder.
2192421924
:param storage str : Original document storage.
2192521925
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
@@ -21999,9 +21999,9 @@ def save_as_range_online(self, request, **kwargs): # noqa: E501
2199921999

2200022000
:param is_async bool
2200122001
:param document file : The document. (required)
22002-
:param range_start_identifier str : The range start identifier. (required)
22002+
:param range_start_identifier str : The range start identifier. Identifier examples: id0.0.0, page0. (required)
2200322003
:param document_parameters RangeDocument : Parameters of a new document. (required)
22004-
:param range_end_identifier str : The range end identifier.
22004+
:param range_end_identifier str : The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
2200522005
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
2200622006
:param password str : Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
2200722007
:param encrypted_password str : Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.

asposewordscloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,6 @@ def to_debug_report(self):
262262
return "Python SDK Debug Report:\n"\
263263
"OS: {env}\n"\
264264
"Python Version: {pyversion}\n"\
265-
"Version of the API: 23.2\n"\
266-
"SDK Package Version: 23.2".\
265+
"Version of the API: 23.3\n"\
266+
"SDK Package Version: 23.3".\
267267
format(env=sys.platform, pyversion=sys.version)

asposewordscloud/models/requests/get_range_text_online_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class GetRangeTextOnlineRequest(BaseRequestObject):
3636
Request model for get_range_text_online operation.
3737
Initializes a new instance.
3838
:param document The document.
39-
:param range_start_identifier The range start identifier.
40-
:param range_end_identifier The range end identifier.
39+
:param range_start_identifier The range start identifier. Identifier examples: id0.0.0, page0.
40+
:param range_end_identifier The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4141
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
4242
:param password Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
4343
:param encrypted_password Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.

asposewordscloud/models/requests/get_range_text_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class GetRangeTextRequest(BaseRequestObject):
3636
Request model for get_range_text operation.
3737
Initializes a new instance.
3838
:param name The filename of the input document.
39-
:param range_start_identifier The range start identifier.
40-
:param range_end_identifier The range end identifier.
39+
:param range_start_identifier The range start identifier. Identifier examples: id0.0.0, page0.
40+
:param range_end_identifier The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4141
:param folder Original document folder.
4242
:param storage Original document storage.
4343
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.

asposewordscloud/models/requests/remove_range_online_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class RemoveRangeOnlineRequest(BaseRequestObject):
3636
Request model for remove_range_online operation.
3737
Initializes a new instance.
3838
:param document The document.
39-
:param range_start_identifier The range start identifier.
40-
:param range_end_identifier The range end identifier.
39+
:param range_start_identifier The range start identifier. Identifier examples: id0.0.0, page0.
40+
:param range_end_identifier The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4141
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
4242
:param password Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
4343
:param encrypted_password Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.

asposewordscloud/models/requests/remove_range_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ class RemoveRangeRequest(BaseRequestObject):
3636
Request model for remove_range operation.
3737
Initializes a new instance.
3838
:param name The filename of the input document.
39-
:param range_start_identifier The range start identifier.
40-
:param range_end_identifier The range end identifier.
39+
:param range_start_identifier The range start identifier. Identifier examples: id0.0.0, page0.
40+
:param range_end_identifier The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4141
:param folder Original document folder.
4242
:param storage Original document storage.
4343
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.

asposewordscloud/models/requests/replace_with_text_online_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ class ReplaceWithTextOnlineRequest(BaseRequestObject):
3636
Request model for replace_with_text_online operation.
3737
Initializes a new instance.
3838
:param document The document.
39-
:param range_start_identifier The range start identifier.
39+
:param range_start_identifier The range start identifier. Identifier examples: id0.0.0, page0.
4040
:param range_text Model with text for replacement.
41-
:param range_end_identifier The range end identifier.
41+
:param range_end_identifier The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4242
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
4343
:param password Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
4444
:param encrypted_password Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.

asposewordscloud/models/requests/replace_with_text_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ class ReplaceWithTextRequest(BaseRequestObject):
3636
Request model for replace_with_text operation.
3737
Initializes a new instance.
3838
:param name The filename of the input document.
39-
:param range_start_identifier The range start identifier.
39+
:param range_start_identifier The range start identifier. Identifier examples: id0.0.0, page0.
4040
:param range_text Model with text for replacement.
41-
:param range_end_identifier The range end identifier.
41+
:param range_end_identifier The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4242
:param folder Original document folder.
4343
:param storage Original document storage.
4444
:param load_encoding Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.

0 commit comments

Comments
 (0)