-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Aspose.Cells Cloud SDK 24.8.0
- Loading branch information
1 parent
50ccd3b
commit aa67484
Showing
52 changed files
with
1,520 additions
and
583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import os | ||
import sys | ||
from asposecellscloud.apis.cells_api import CellsApi | ||
from asposecellscloud.models import * | ||
from asposecellscloud.requests import * | ||
|
||
api = CellsApi(os.getenv('CellsCloudClientId'),os.getenv('CellsCloudClientSecret'),"v3.0",os.getenv('CellsCloudApiBaseUrl')) | ||
remote_folder = 'TestData/In' | ||
|
||
local_name = 'BookText.xlsx' | ||
remote_name = 'BookText.xlsx' | ||
|
||
addTextOptionsDataSource = DataSource(data_source_type= 'CloudFileSystem' ,data_path= 'BookText.xlsx' ) | ||
addTextOptions = AddTextOptions(data_source= addTextOptionsDataSource ,text= 'Aspose.Cells Cloud is an excellent product.' ,worksheet= '202401' ,select_poistion= 'AtTheBeginning' ,skip_empty_cells= True ) | ||
mapFiles = { | ||
local_name: local_name | ||
} | ||
request = UploadFileRequest( mapFiles, remote_folder + '/' + remote_name,storage_name= '') | ||
api.upload_file(request) | ||
|
||
request = PostAddTextContentRequest( addTextOptions) | ||
api.post_add_text_content(request) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import os | ||
import sys | ||
from asposecellscloud.apis.cells_api import CellsApi | ||
from asposecellscloud.models import * | ||
from asposecellscloud.requests import * | ||
|
||
api = CellsApi(os.getenv('CellsCloudClientId'),os.getenv('CellsCloudClientSecret'),"v3.0",os.getenv('CellsCloudApiBaseUrl')) | ||
remote_folder = 'TestData/In' | ||
|
||
local_name = 'BookText.xlsx' | ||
remote_name = 'BookText.xlsx' | ||
|
||
trimContentOptionsDataSource = DataSource(data_source_type= 'CloudFileSystem' ,data_path= 'BookText.xlsx' ) | ||
trimContentOptionsScopeOptions = ScopeOptions(scope= 'EntireWorkbook' ) | ||
trimContentOptions = TrimContentOptions(data_source= trimContentOptionsDataSource ,trim_leading= True ,trim_trailing= True ,trim_space_between_word_to1= True ,remove_all_line_breaks= True ,scope_options= trimContentOptionsScopeOptions ) | ||
mapFiles = { | ||
local_name: local_name | ||
} | ||
request = UploadFileRequest( mapFiles, remote_folder + '/' + remote_name,storage_name= '') | ||
api.upload_file(request) | ||
|
||
request = PostTrimContentRequest( trimContentOptions) | ||
api.post_trim_content(request) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
# coding: utf-8 | ||
""" | ||
<copyright company="Aspose" file="ScopeItempy.cs"> | ||
Copyright (c) 2024 Aspose.Cells Cloud | ||
</copyright> | ||
<summary> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
</summary> | ||
""" | ||
|
||
from pprint import pformat | ||
from six import iteritems | ||
import re | ||
|
||
class ScopeItem(object): | ||
|
||
""" | ||
NOTE: This class is auto generated by the swagger code generator program. | ||
Do not edit the class manually. | ||
""" | ||
|
||
|
||
""" | ||
Attributes: | ||
swagger_types (dict): The key is attribute name | ||
and the value is attribute type. | ||
attribute_map (dict): The key is attribute name | ||
and the value is json key in definition. | ||
""" | ||
|
||
swagger_types = { | ||
'worksheet_name' : 'str', | ||
'ranges' : 'list[str]' | ||
} | ||
|
||
attribute_map = { | ||
'worksheet_name' : 'WorksheetName' , | ||
'ranges' : 'Ranges' | ||
} | ||
|
||
@staticmethod | ||
def get_swagger_types(): | ||
return ScopeItem.swagger_types | ||
|
||
@staticmethod | ||
def get_attribute_map(): | ||
return ScopeItem.attribute_map | ||
|
||
def get_from_container(self, attr): | ||
if attr in self.container: | ||
return self.container[attr] | ||
return None | ||
|
||
def __init__(self,worksheet_name=None ,ranges=None ,**kw): | ||
""" | ||
Associative dict for storing property values | ||
""" | ||
self.container = {} | ||
|
||
""" | ||
ScopeItem - a model defined in Swagger | ||
""" | ||
self.container['worksheet_name'] = None | ||
self.container['ranges'] = None | ||
params = locals() | ||
self.worksheet_name = worksheet_name | ||
if 'worksheet_name' in params: | ||
self.worksheet_name = params["worksheet_name"] | ||
|
||
|
||
|
||
self.ranges = ranges | ||
if 'ranges' in params: | ||
self.ranges = params["ranges"] | ||
|
||
|
||
|
||
|
||
@property | ||
def worksheet_name(self): | ||
return self.container['worksheet_name'] | ||
|
||
@worksheet_name.setter | ||
def worksheet_name(self, worksheet_name): | ||
self.container['worksheet_name'] = worksheet_name | ||
@property | ||
def ranges(self): | ||
return self.container['ranges'] | ||
|
||
@ranges.setter | ||
def ranges(self, ranges): | ||
self.container['ranges'] = ranges | ||
|
||
def to_dict(self): | ||
""" | ||
Returns the model properties as a dict | ||
""" | ||
result = {} | ||
|
||
for attr, _ in iteritems(self.get_swagger_types()): | ||
value = self.get_from_container(attr) | ||
if isinstance(value, list): | ||
result[attr] = list(map( | ||
lambda x: x.to_dict() if hasattr(x, "to_dict") else x, | ||
value | ||
)) | ||
elif hasattr(value, "to_dict"): | ||
result[attr] = value.to_dict() | ||
elif isinstance(value, dict): | ||
result[attr] = dict(map( | ||
lambda item: (item[0], item[1].to_dict()) | ||
if hasattr(item[1], "to_dict") else item, | ||
value.items() | ||
)) | ||
else: | ||
result[attr] = value | ||
|
||
return result | ||
|
||
def to_str(self): | ||
""" | ||
Returns the string representation of the model | ||
""" | ||
return pformat(self.to_dict()) | ||
|
||
def __repr__(self): | ||
""" | ||
For `print` and `pprint` | ||
""" | ||
return self.to_str() | ||
|
||
def __eq__(self, other): | ||
""" | ||
Returns true if both objects are equal | ||
""" | ||
if not isinstance(other, ScopeItem): | ||
return False | ||
|
||
return self.__dict__ == other.__dict__ | ||
|
||
def __ne__(self, other): | ||
""" | ||
Returns true if both objects are not equal | ||
""" | ||
return not self == other |
Oops, something went wrong.