diff --git a/Makefile b/Makefile index fef1059..020ae7c 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ dist: .PHONY: format format: - python -m black --line-length=120 -v $(SRC) tests + black --line-length=120 -v $(SRC) tests example.py .PHONY: format_doc format_doc: diff --git a/README.md b/README.md index 057a2ed..3fc521e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![PyPI](https://img.shields.io/pypi/v/aspose-barcode-cloud)](https://pypi.org/project/aspose-barcode-cloud/) - API version: 3.0 -- Package version: 24.3.0 +- Package version: 24.4.0 ## Demo applications @@ -119,6 +119,7 @@ Class | Method | HTTP request | Description *BarcodeApi* | [**put_barcode_generate_file**](docs/BarcodeApi.md#put_barcode_generate_file) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content) *BarcodeApi* | [**put_barcode_recognize_from_body**](docs/BarcodeApi.md#put_barcode_recognize_from_body) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body. *BarcodeApi* | [**put_generate_multiple**](docs/BarcodeApi.md#put_generate_multiple) | **PUT** /barcode/{name}/generateMultiple | Generate image with multiple barcodes and put new file on server +*BarcodeApi* | [**scan_barcode**](docs/BarcodeApi.md#scan_barcode) | **POST** /barcode/scan | Quickly scan a barcode from an image. *FileApi* | [**copy_file**](docs/FileApi.md#copy_file) | **PUT** /barcode/storage/file/copy/{srcPath} | Copy file *FileApi* | [**delete_file**](docs/FileApi.md#delete_file) | **DELETE** /barcode/storage/file/{path} | Delete file *FileApi* | [**download_file**](docs/FileApi.md#download_file) | **GET** /barcode/storage/file/{path} | Download file diff --git a/aspose_barcode_cloud/__init__.py b/aspose_barcode_cloud/__init__.py index abc3da6..2ca0a84 100644 --- a/aspose_barcode_cloud/__init__.py +++ b/aspose_barcode_cloud/__init__.py @@ -2,31 +2,6 @@ # flake8: noqa: F401 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - from __future__ import absolute_import from aspose_barcode_cloud.rest import ApiException diff --git a/aspose_barcode_cloud/api/barcode_api.py b/aspose_barcode_cloud/api/barcode_api.py index fe99be9..ca7ce25 100644 --- a/aspose_barcode_cloud/api/barcode_api.py +++ b/aspose_barcode_cloud/api/barcode_api.py @@ -1,29 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import, division import re # noqa: F401 @@ -489,7 +465,7 @@ def get_barcode_recognize( :param bool allow_additional_restorations: Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. # noqa: E501 :param float region_likelihood_threshold_percent: Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. # noqa: E501 :param list[int] scan_window_sizes: Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. # noqa: E501 - :param float similarity: Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 + :param float similarity: Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 :param bool skip_diagonal_search: Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. # noqa: E501 :param bool read_tiny_barcodes: Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. # noqa: E501 :param str australian_post_encoding_table: Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. # noqa: E501 @@ -865,7 +841,7 @@ def post_barcode_recognize_from_url_or_content( :param bool allow_additional_restorations: Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. # noqa: E501 :param float region_likelihood_threshold_percent: Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. # noqa: E501 :param list[int] scan_window_sizes: Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. # noqa: E501 - :param float similarity: Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 + :param float similarity: Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 :param bool skip_diagonal_search: Allows detector to skip search for diagonal barcodes. Setting it to false will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. # noqa: E501 :param bool read_tiny_barcodes: Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. # noqa: E501 :param str australian_post_encoding_table: Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. # noqa: E501 @@ -1885,3 +1861,105 @@ def put_generate_multiple_with_http_info(self, name, generator_params_list, **kw _request_timeout=params.get("_request_timeout"), collection_formats=collection_formats, ) + + def scan_barcode(self, image_file, decode_types=None, timeout=None, async_req=False, **kwargs): + """Quickly scan a barcode from an image. + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = BarcodeApi().scan_barcode(image_file, async_req=True) + >>> result = thread.get() + + :param file image_file: Image as file # noqa: E501 + :param list[DecodeBarcodeType] decode_types: Types of barcode to recognize # noqa: E501 + :param int timeout: Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. # noqa: E501 + :param async_req bool + :return: BarcodeResponseList + If the method is called asynchronously, + returns the request thread. + """ + kwargs["_return_http_data_only"] = True + if async_req: + return self.scan_barcode_with_http_info(image_file, decode_types=decode_types, timeout=timeout, **kwargs) + else: + (data) = self.scan_barcode_with_http_info(image_file, decode_types=decode_types, timeout=timeout, **kwargs) + return data + + def scan_barcode_with_http_info(self, image_file, **kwargs): + """Quickly scan a barcode from an image. + + This method makes a synchronous HTTP request by default. To make an + asynchronous HTTP request, please pass async_req=True + >>> thread = BarcodeApi().scan_barcode_with_http_info(image_file, async_req=True) + >>> result = thread.get() + + :param file image_file: Image as file # noqa: E501 + :return: BarcodeResponseList + If the method is called asynchronously, + returns the request thread. + """ + + all_params = {"image_file", "decode_types", "timeout"} + all_params.add("async_req") + all_params.add("_return_http_data_only") + all_params.add("_preload_content") + all_params.add("_request_timeout") + + params = locals() + for key, val in six.iteritems(params["kwargs"]): + if key not in all_params: + raise TypeError("Got an unexpected keyword argument '%s'" " to method scan_barcode" % key) + if val is None: + continue + + params[key] = val + del params["kwargs"] + # verify the required parameter "image_file" is set + if "image_file" not in params or params["image_file"] is None: + raise ValueError("Missing the required parameter 'image_file' when calling 'scan_barcode'") + + collection_formats = {} + + path_params = {} + + query_params = [] + + header_params = {} + + form_params = [] + local_var_files = {} + if "image_file" in params: + local_var_files["imageFile"] = params["image_file"] + if "decode_types" in params: + form_params.append(("decodeTypes", params["decode_types"])) + collection_formats["decodeTypes"] = "multi" + if "timeout" in params: + form_params.append(("timeout", params["timeout"])) + + body_params = None + # HTTP header "Accept" + header_params["Accept"] = self.api_client.select_header_accept(["application/json"]) + + # HTTP header "Content-Type" + header_params["Content-Type"] = self.api_client.select_header_content_type(["multipart/form-data"]) + + # Authentication setting + auth_settings = ["JWT"] + + return self.api_client.call_api( + "/barcode/scan", + "POST", + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + response_type="BarcodeResponseList", + auth_settings=auth_settings, + async_req=params.get("async_req"), + _return_http_data_only=params.get("_return_http_data_only"), + _preload_content=params.get("_preload_content", True), + _request_timeout=params.get("_request_timeout"), + collection_formats=collection_formats, + ) diff --git a/aspose_barcode_cloud/api/file_api.py b/aspose_barcode_cloud/api/file_api.py index 32b20cb..933b1a8 100644 --- a/aspose_barcode_cloud/api/file_api.py +++ b/aspose_barcode_cloud/api/file_api.py @@ -1,29 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import, division import re # noqa: F401 diff --git a/aspose_barcode_cloud/api/folder_api.py b/aspose_barcode_cloud/api/folder_api.py index ea6080c..dc53b68 100644 --- a/aspose_barcode_cloud/api/folder_api.py +++ b/aspose_barcode_cloud/api/folder_api.py @@ -1,29 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import, division import re # noqa: F401 diff --git a/aspose_barcode_cloud/api/storage_api.py b/aspose_barcode_cloud/api/storage_api.py index 8305c7b..6b4cb7c 100644 --- a/aspose_barcode_cloud/api/storage_api.py +++ b/aspose_barcode_cloud/api/storage_api.py @@ -1,29 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import, division import re # noqa: F401 diff --git a/aspose_barcode_cloud/api_client.py b/aspose_barcode_cloud/api_client.py index 7485a49..94acd88 100644 --- a/aspose_barcode_cloud/api_client.py +++ b/aspose_barcode_cloud/api_client.py @@ -1,27 +1,4 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" from __future__ import absolute_import, division @@ -90,13 +67,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook self.rest_client = RESTClientObject(configuration) self.default_headers = { "x-aspose-client": "python sdk", - "x-aspose-client-version": "24.3.0", + "x-aspose-client-version": "24.4.0", } if header_name is not None: self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = "Aspose-Barcode-SDK/24.3.0/python" + self.user_agent = "Aspose-Barcode-SDK/24.4.0/python" def __del__(self): self.rest_client.close() diff --git a/aspose_barcode_cloud/configuration.py b/aspose_barcode_cloud/configuration.py index 923bd83..2879263 100644 --- a/aspose_barcode_cloud/configuration.py +++ b/aspose_barcode_cloud/configuration.py @@ -1,29 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import, division import contextlib @@ -286,7 +262,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: 3.0\n" - "SDK Package Version: 24.3.0".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 24.4.0".format(env=sys.platform, pyversion=sys.version) ) @staticmethod diff --git a/aspose_barcode_cloud/models/__init__.py b/aspose_barcode_cloud/models/__init__.py index b4f0cd2..ab2f7f0 100644 --- a/aspose_barcode_cloud/models/__init__.py +++ b/aspose_barcode_cloud/models/__init__.py @@ -1,30 +1,6 @@ # coding: utf-8 # flake8: noqa -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import diff --git a/aspose_barcode_cloud/models/api_error.py b/aspose_barcode_cloud/models/api_error.py index 7df4d73..92fd1a4 100644 --- a/aspose_barcode_cloud/models/api_error.py +++ b/aspose_barcode_cloud/models/api_error.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/api_error_response.py b/aspose_barcode_cloud/models/api_error_response.py index 64d4ae5..1dc2e7f 100644 --- a/aspose_barcode_cloud/models/api_error_response.py +++ b/aspose_barcode_cloud/models/api_error_response.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/australian_post_params.py b/aspose_barcode_cloud/models/australian_post_params.py index 23616fa..721778b 100644 --- a/aspose_barcode_cloud/models/australian_post_params.py +++ b/aspose_barcode_cloud/models/australian_post_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 @@ -65,7 +40,7 @@ def __init__(self, encoding_table=None, short_bar_height=None): # noqa: E501 def encoding_table(self): """Gets the encoding_table of this AustralianPostParams. # noqa: E501 - Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\" # noqa: E501 + Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other # noqa: E501 :return: The encoding_table of this AustralianPostParams. # noqa: E501 :rtype: CustomerInformationInterpretingType @@ -76,7 +51,7 @@ def encoding_table(self): def encoding_table(self, encoding_table): """Sets the encoding_table of this AustralianPostParams. - Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\" # noqa: E501 + Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other # noqa: E501 :param encoding_table: The encoding_table of this AustralianPostParams. # noqa: E501 :type: CustomerInformationInterpretingType diff --git a/aspose_barcode_cloud/models/auto_size_mode.py b/aspose_barcode_cloud/models/auto_size_mode.py index 6437f90..c41f2a8 100644 --- a/aspose_barcode_cloud/models/auto_size_mode.py +++ b/aspose_barcode_cloud/models/auto_size_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/available_graphics_unit.py b/aspose_barcode_cloud/models/available_graphics_unit.py index 144cb7e..ebf0ead 100644 --- a/aspose_barcode_cloud/models/available_graphics_unit.py +++ b/aspose_barcode_cloud/models/available_graphics_unit.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/aztec_encode_mode.py b/aspose_barcode_cloud/models/aztec_encode_mode.py index 5771bf0..41fab9f 100644 --- a/aspose_barcode_cloud/models/aztec_encode_mode.py +++ b/aspose_barcode_cloud/models/aztec_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/aztec_params.py b/aspose_barcode_cloud/models/aztec_params.py index a55bc49..5475ded 100644 --- a/aspose_barcode_cloud/models/aztec_params.py +++ b/aspose_barcode_cloud/models/aztec_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/aztec_symbol_mode.py b/aspose_barcode_cloud/models/aztec_symbol_mode.py index 2358d72..dfed66a 100644 --- a/aspose_barcode_cloud/models/aztec_symbol_mode.py +++ b/aspose_barcode_cloud/models/aztec_symbol_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/barcode_response.py b/aspose_barcode_cloud/models/barcode_response.py index f72b471..f3ab738 100644 --- a/aspose_barcode_cloud/models/barcode_response.py +++ b/aspose_barcode_cloud/models/barcode_response.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/barcode_response_list.py b/aspose_barcode_cloud/models/barcode_response_list.py index eff785f..efae13e 100644 --- a/aspose_barcode_cloud/models/barcode_response_list.py +++ b/aspose_barcode_cloud/models/barcode_response_list.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/border_dash_style.py b/aspose_barcode_cloud/models/border_dash_style.py index f9d6857..7e09d4b 100644 --- a/aspose_barcode_cloud/models/border_dash_style.py +++ b/aspose_barcode_cloud/models/border_dash_style.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/caption_params.py b/aspose_barcode_cloud/models/caption_params.py index 60dcaf9..7edc66f 100644 --- a/aspose_barcode_cloud/models/caption_params.py +++ b/aspose_barcode_cloud/models/caption_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/checksum_validation.py b/aspose_barcode_cloud/models/checksum_validation.py index 7cd1731..aae3783 100644 --- a/aspose_barcode_cloud/models/checksum_validation.py +++ b/aspose_barcode_cloud/models/checksum_validation.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/codabar_checksum_mode.py b/aspose_barcode_cloud/models/codabar_checksum_mode.py index bf344ed..130641d 100644 --- a/aspose_barcode_cloud/models/codabar_checksum_mode.py +++ b/aspose_barcode_cloud/models/codabar_checksum_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/codabar_params.py b/aspose_barcode_cloud/models/codabar_params.py index bc892b7..419af85 100644 --- a/aspose_barcode_cloud/models/codabar_params.py +++ b/aspose_barcode_cloud/models/codabar_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/codabar_symbol.py b/aspose_barcode_cloud/models/codabar_symbol.py index 47caf51..812a92a 100644 --- a/aspose_barcode_cloud/models/codabar_symbol.py +++ b/aspose_barcode_cloud/models/codabar_symbol.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/codablock_params.py b/aspose_barcode_cloud/models/codablock_params.py index cfa48e0..72cb032 100644 --- a/aspose_barcode_cloud/models/codablock_params.py +++ b/aspose_barcode_cloud/models/codablock_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/code128_emulation.py b/aspose_barcode_cloud/models/code128_emulation.py index c7577c7..e8905ee 100644 --- a/aspose_barcode_cloud/models/code128_emulation.py +++ b/aspose_barcode_cloud/models/code128_emulation.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/code128_encode_mode.py b/aspose_barcode_cloud/models/code128_encode_mode.py index 460ab87..776b21a 100644 --- a/aspose_barcode_cloud/models/code128_encode_mode.py +++ b/aspose_barcode_cloud/models/code128_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/code128_params.py b/aspose_barcode_cloud/models/code128_params.py index c4bcf2c..1bcfc4e 100644 --- a/aspose_barcode_cloud/models/code128_params.py +++ b/aspose_barcode_cloud/models/code128_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/code16_k_params.py b/aspose_barcode_cloud/models/code16_k_params.py index f8ee348..7f55d67 100644 --- a/aspose_barcode_cloud/models/code16_k_params.py +++ b/aspose_barcode_cloud/models/code16_k_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/code_location.py b/aspose_barcode_cloud/models/code_location.py index d188f03..d504b88 100644 --- a/aspose_barcode_cloud/models/code_location.py +++ b/aspose_barcode_cloud/models/code_location.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/coupon_params.py b/aspose_barcode_cloud/models/coupon_params.py index cd3b794..1df78ff 100644 --- a/aspose_barcode_cloud/models/coupon_params.py +++ b/aspose_barcode_cloud/models/coupon_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/customer_information_interpreting_type.py b/aspose_barcode_cloud/models/customer_information_interpreting_type.py index dc0b3f7..ddf9600 100644 --- a/aspose_barcode_cloud/models/customer_information_interpreting_type.py +++ b/aspose_barcode_cloud/models/customer_information_interpreting_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/data_bar_params.py b/aspose_barcode_cloud/models/data_bar_params.py index fc6f9f5..f5f13bd 100644 --- a/aspose_barcode_cloud/models/data_bar_params.py +++ b/aspose_barcode_cloud/models/data_bar_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/data_matrix_ecc_type.py b/aspose_barcode_cloud/models/data_matrix_ecc_type.py index d0f4661..f84eb1c 100644 --- a/aspose_barcode_cloud/models/data_matrix_ecc_type.py +++ b/aspose_barcode_cloud/models/data_matrix_ecc_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/data_matrix_encode_mode.py b/aspose_barcode_cloud/models/data_matrix_encode_mode.py index ecd6237..89a20c0 100644 --- a/aspose_barcode_cloud/models/data_matrix_encode_mode.py +++ b/aspose_barcode_cloud/models/data_matrix_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/data_matrix_params.py b/aspose_barcode_cloud/models/data_matrix_params.py index 5dfdc81..184ca15 100644 --- a/aspose_barcode_cloud/models/data_matrix_params.py +++ b/aspose_barcode_cloud/models/data_matrix_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/data_matrix_version.py b/aspose_barcode_cloud/models/data_matrix_version.py index 779ff9f..4a38707 100644 --- a/aspose_barcode_cloud/models/data_matrix_version.py +++ b/aspose_barcode_cloud/models/data_matrix_version.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/decode_barcode_type.py b/aspose_barcode_cloud/models/decode_barcode_type.py index e68140e..2b43034 100644 --- a/aspose_barcode_cloud/models/decode_barcode_type.py +++ b/aspose_barcode_cloud/models/decode_barcode_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/disc_usage.py b/aspose_barcode_cloud/models/disc_usage.py index c6132e5..4e69c8e 100644 --- a/aspose_barcode_cloud/models/disc_usage.py +++ b/aspose_barcode_cloud/models/disc_usage.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/dot_code_encode_mode.py b/aspose_barcode_cloud/models/dot_code_encode_mode.py index 4f5e714..350dd29 100644 --- a/aspose_barcode_cloud/models/dot_code_encode_mode.py +++ b/aspose_barcode_cloud/models/dot_code_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/dot_code_params.py b/aspose_barcode_cloud/models/dot_code_params.py index ab975a0..a3d4cf8 100644 --- a/aspose_barcode_cloud/models/dot_code_params.py +++ b/aspose_barcode_cloud/models/dot_code_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/eci_encodings.py b/aspose_barcode_cloud/models/eci_encodings.py index 41e97d2..7b06801 100644 --- a/aspose_barcode_cloud/models/eci_encodings.py +++ b/aspose_barcode_cloud/models/eci_encodings.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/enable_checksum.py b/aspose_barcode_cloud/models/enable_checksum.py index 5b1b1ad..8802d51 100644 --- a/aspose_barcode_cloud/models/enable_checksum.py +++ b/aspose_barcode_cloud/models/enable_checksum.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/encode_barcode_type.py b/aspose_barcode_cloud/models/encode_barcode_type.py index 97665c2..480d951 100644 --- a/aspose_barcode_cloud/models/encode_barcode_type.py +++ b/aspose_barcode_cloud/models/encode_barcode_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/error.py b/aspose_barcode_cloud/models/error.py index 0f51e7f..5448f2f 100644 --- a/aspose_barcode_cloud/models/error.py +++ b/aspose_barcode_cloud/models/error.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/error_details.py b/aspose_barcode_cloud/models/error_details.py index 71a1c59..5ec3815 100644 --- a/aspose_barcode_cloud/models/error_details.py +++ b/aspose_barcode_cloud/models/error_details.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/file_version.py b/aspose_barcode_cloud/models/file_version.py index e835feb..58b318d 100644 --- a/aspose_barcode_cloud/models/file_version.py +++ b/aspose_barcode_cloud/models/file_version.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/file_versions.py b/aspose_barcode_cloud/models/file_versions.py index 5c12f25..5f50189 100644 --- a/aspose_barcode_cloud/models/file_versions.py +++ b/aspose_barcode_cloud/models/file_versions.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/files_list.py b/aspose_barcode_cloud/models/files_list.py index 89865ad..55bb99b 100644 --- a/aspose_barcode_cloud/models/files_list.py +++ b/aspose_barcode_cloud/models/files_list.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/files_upload_result.py b/aspose_barcode_cloud/models/files_upload_result.py index 8f0cce5..cc27d70 100644 --- a/aspose_barcode_cloud/models/files_upload_result.py +++ b/aspose_barcode_cloud/models/files_upload_result.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/font_mode.py b/aspose_barcode_cloud/models/font_mode.py index 8c42b66..c96d7cb 100644 --- a/aspose_barcode_cloud/models/font_mode.py +++ b/aspose_barcode_cloud/models/font_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/font_params.py b/aspose_barcode_cloud/models/font_params.py index ce1516f..c9aad01 100644 --- a/aspose_barcode_cloud/models/font_params.py +++ b/aspose_barcode_cloud/models/font_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/font_style.py b/aspose_barcode_cloud/models/font_style.py index 3ab4be0..90dfb64 100644 --- a/aspose_barcode_cloud/models/font_style.py +++ b/aspose_barcode_cloud/models/font_style.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/generator_params.py b/aspose_barcode_cloud/models/generator_params.py index e3e6ebf..4817a6f 100644 --- a/aspose_barcode_cloud/models/generator_params.py +++ b/aspose_barcode_cloud/models/generator_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/generator_params_list.py b/aspose_barcode_cloud/models/generator_params_list.py index 5f5f5a1..237b8f3 100644 --- a/aspose_barcode_cloud/models/generator_params_list.py +++ b/aspose_barcode_cloud/models/generator_params_list.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/han_xin_encode_mode.py b/aspose_barcode_cloud/models/han_xin_encode_mode.py index ea08b24..056a45d 100644 --- a/aspose_barcode_cloud/models/han_xin_encode_mode.py +++ b/aspose_barcode_cloud/models/han_xin_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/han_xin_error_level.py b/aspose_barcode_cloud/models/han_xin_error_level.py index a7081e5..dfca5ad 100644 --- a/aspose_barcode_cloud/models/han_xin_error_level.py +++ b/aspose_barcode_cloud/models/han_xin_error_level.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/han_xin_params.py b/aspose_barcode_cloud/models/han_xin_params.py index 9efa643..82c8cd4 100644 --- a/aspose_barcode_cloud/models/han_xin_params.py +++ b/aspose_barcode_cloud/models/han_xin_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/han_xin_version.py b/aspose_barcode_cloud/models/han_xin_version.py index acf08d8..6727045 100644 --- a/aspose_barcode_cloud/models/han_xin_version.py +++ b/aspose_barcode_cloud/models/han_xin_version.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/itf14_border_type.py b/aspose_barcode_cloud/models/itf14_border_type.py index dfa04b1..aae3ee9 100644 --- a/aspose_barcode_cloud/models/itf14_border_type.py +++ b/aspose_barcode_cloud/models/itf14_border_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/itf_params.py b/aspose_barcode_cloud/models/itf_params.py index 98ca3c8..59675f0 100644 --- a/aspose_barcode_cloud/models/itf_params.py +++ b/aspose_barcode_cloud/models/itf_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/macro_character.py b/aspose_barcode_cloud/models/macro_character.py index 5bd8394..48a7f70 100644 --- a/aspose_barcode_cloud/models/macro_character.py +++ b/aspose_barcode_cloud/models/macro_character.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/maxi_code_encode_mode.py b/aspose_barcode_cloud/models/maxi_code_encode_mode.py index ce2c6e0..2fe434a 100644 --- a/aspose_barcode_cloud/models/maxi_code_encode_mode.py +++ b/aspose_barcode_cloud/models/maxi_code_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/maxi_code_mode.py b/aspose_barcode_cloud/models/maxi_code_mode.py index fb891a3..80edc74 100644 --- a/aspose_barcode_cloud/models/maxi_code_mode.py +++ b/aspose_barcode_cloud/models/maxi_code_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/maxi_code_params.py b/aspose_barcode_cloud/models/maxi_code_params.py index f77566f..0031d97 100644 --- a/aspose_barcode_cloud/models/maxi_code_params.py +++ b/aspose_barcode_cloud/models/maxi_code_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/object_exist.py b/aspose_barcode_cloud/models/object_exist.py index 34849d7..4c104d6 100644 --- a/aspose_barcode_cloud/models/object_exist.py +++ b/aspose_barcode_cloud/models/object_exist.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/padding.py b/aspose_barcode_cloud/models/padding.py index 69d09a9..69f5b59 100644 --- a/aspose_barcode_cloud/models/padding.py +++ b/aspose_barcode_cloud/models/padding.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/patch_code_params.py b/aspose_barcode_cloud/models/patch_code_params.py index cfc9e01..82c2e34 100644 --- a/aspose_barcode_cloud/models/patch_code_params.py +++ b/aspose_barcode_cloud/models/patch_code_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/patch_format.py b/aspose_barcode_cloud/models/patch_format.py index 23917bd..f5a6945 100644 --- a/aspose_barcode_cloud/models/patch_format.py +++ b/aspose_barcode_cloud/models/patch_format.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/pdf417_compaction_mode.py b/aspose_barcode_cloud/models/pdf417_compaction_mode.py index 819186e..50dc90c 100644 --- a/aspose_barcode_cloud/models/pdf417_compaction_mode.py +++ b/aspose_barcode_cloud/models/pdf417_compaction_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/pdf417_error_level.py b/aspose_barcode_cloud/models/pdf417_error_level.py index ad6e50f..eb0af20 100644 --- a/aspose_barcode_cloud/models/pdf417_error_level.py +++ b/aspose_barcode_cloud/models/pdf417_error_level.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/pdf417_macro_terminator.py b/aspose_barcode_cloud/models/pdf417_macro_terminator.py index 507a793..de06529 100644 --- a/aspose_barcode_cloud/models/pdf417_macro_terminator.py +++ b/aspose_barcode_cloud/models/pdf417_macro_terminator.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/pdf417_params.py b/aspose_barcode_cloud/models/pdf417_params.py index a97cbb2..dd8ccfd 100644 --- a/aspose_barcode_cloud/models/pdf417_params.py +++ b/aspose_barcode_cloud/models/pdf417_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/postal_params.py b/aspose_barcode_cloud/models/postal_params.py index ecbc749..fb45812 100644 --- a/aspose_barcode_cloud/models/postal_params.py +++ b/aspose_barcode_cloud/models/postal_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/preset_type.py b/aspose_barcode_cloud/models/preset_type.py index 4bd0844..7f2f14e 100644 --- a/aspose_barcode_cloud/models/preset_type.py +++ b/aspose_barcode_cloud/models/preset_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/qr_encode_mode.py b/aspose_barcode_cloud/models/qr_encode_mode.py index e8b1613..94e36f7 100644 --- a/aspose_barcode_cloud/models/qr_encode_mode.py +++ b/aspose_barcode_cloud/models/qr_encode_mode.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/qr_encode_type.py b/aspose_barcode_cloud/models/qr_encode_type.py index 4b1d1d1..12ff8c2 100644 --- a/aspose_barcode_cloud/models/qr_encode_type.py +++ b/aspose_barcode_cloud/models/qr_encode_type.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/qr_error_level.py b/aspose_barcode_cloud/models/qr_error_level.py index 4f31b83..27852da 100644 --- a/aspose_barcode_cloud/models/qr_error_level.py +++ b/aspose_barcode_cloud/models/qr_error_level.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/qr_params.py b/aspose_barcode_cloud/models/qr_params.py index bff72dd..613ca9a 100644 --- a/aspose_barcode_cloud/models/qr_params.py +++ b/aspose_barcode_cloud/models/qr_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/qr_version.py b/aspose_barcode_cloud/models/qr_version.py index 0559007..1896404 100644 --- a/aspose_barcode_cloud/models/qr_version.py +++ b/aspose_barcode_cloud/models/qr_version.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/reader_params.py b/aspose_barcode_cloud/models/reader_params.py index 4bf0f4f..1a29006 100644 --- a/aspose_barcode_cloud/models/reader_params.py +++ b/aspose_barcode_cloud/models/reader_params.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 @@ -992,7 +967,7 @@ def scan_window_sizes(self, scan_window_sizes): def similarity(self): """Gets the similarity of this ReaderParams. # noqa: E501 - Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 + Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 :return: The similarity of this ReaderParams. # noqa: E501 :rtype: float @@ -1003,7 +978,7 @@ def similarity(self): def similarity(self, similarity): """Sets the similarity of this ReaderParams. - Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 + Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] # noqa: E501 :param similarity: The similarity of this ReaderParams. # noqa: E501 :type: float diff --git a/aspose_barcode_cloud/models/region_point.py b/aspose_barcode_cloud/models/region_point.py index 49dfa6d..23041e2 100644 --- a/aspose_barcode_cloud/models/region_point.py +++ b/aspose_barcode_cloud/models/region_point.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/result_image_info.py b/aspose_barcode_cloud/models/result_image_info.py index d34f7ba..55c4316 100644 --- a/aspose_barcode_cloud/models/result_image_info.py +++ b/aspose_barcode_cloud/models/result_image_info.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/storage_exist.py b/aspose_barcode_cloud/models/storage_exist.py index 35cfd3c..1a7179c 100644 --- a/aspose_barcode_cloud/models/storage_exist.py +++ b/aspose_barcode_cloud/models/storage_exist.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/storage_file.py b/aspose_barcode_cloud/models/storage_file.py index f940463..1a253f5 100644 --- a/aspose_barcode_cloud/models/storage_file.py +++ b/aspose_barcode_cloud/models/storage_file.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/structured_append.py b/aspose_barcode_cloud/models/structured_append.py index fe54860..458ed30 100644 --- a/aspose_barcode_cloud/models/structured_append.py +++ b/aspose_barcode_cloud/models/structured_append.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/models/text_alignment.py b/aspose_barcode_cloud/models/text_alignment.py index 994e020..1add323 100644 --- a/aspose_barcode_cloud/models/text_alignment.py +++ b/aspose_barcode_cloud/models/text_alignment.py @@ -1,30 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - - import pprint import re # noqa: F401 import warnings # noqa: F401 diff --git a/aspose_barcode_cloud/rest.py b/aspose_barcode_cloud/rest.py index e892e03..ead3feb 100644 --- a/aspose_barcode_cloud/rest.py +++ b/aspose_barcode_cloud/rest.py @@ -1,29 +1,5 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - from __future__ import absolute_import, division import io @@ -65,6 +41,7 @@ def getheader(self, name, default=None): class RESTClientObject(object): + def __init__(self, configuration, pools_size=4, maxsize=None): # urllib3.PoolManager will pass all kw parameters to connectionpool # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501 @@ -384,6 +361,7 @@ def close(self): class ApiException(Exception): + def __init__(self, status=0, reason=None, http_resp=None): # type: (int, str, RESTResponse) -> None if http_resp: diff --git a/docs/AustralianPostParams.md b/docs/AustralianPostParams.md index 3b19bfa..8fe83b4 100644 --- a/docs/AustralianPostParams.md +++ b/docs/AustralianPostParams.md @@ -6,7 +6,7 @@ AustralianPost barcode parameters. Name | Type | Description | Notes ---- | ---- | ----------- | ----- -**encoding_table** | [**CustomerInformationInterpretingType**](CustomerInformationInterpretingType.md) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\" | [optional] +**encoding_table** | [**CustomerInformationInterpretingType**](CustomerInformationInterpretingType.md) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other | [optional] **short_bar_height** | **float** | Short bar's height of AustralianPost barcode. | [optional] [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/BarcodeApi.md b/docs/BarcodeApi.md index 6470627..f3baf65 100644 --- a/docs/BarcodeApi.md +++ b/docs/BarcodeApi.md @@ -11,6 +11,7 @@ Method | HTTP request | Description [**put_barcode_generate_file**](BarcodeApi.md#put_barcode_generate_file) | **PUT** /barcode/{name}/generate | Generate barcode and save on server (from query params or from file with json or xml content) [**put_barcode_recognize_from_body**](BarcodeApi.md#put_barcode_recognize_from_body) | **PUT** /barcode/{name}/recognize | Recognition of a barcode from file on server with parameters in body. [**put_generate_multiple**](BarcodeApi.md#put_generate_multiple) | **PUT** /barcode/{name}/generateMultiple | Generate image with multiple barcodes and put new file on server +[**scan_barcode**](BarcodeApi.md#scan_barcode) | **POST** /barcode/scan | Quickly scan a barcode from an image. # **get_barcode_generate** @@ -182,7 +183,7 @@ fast_scan_only = True # bool | Allows engine for 1D barcodes to quickly recogniz allow_additional_restorations = True # bool | Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. (optional) region_likelihood_threshold_percent = 1.2 # float | Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. (optional) scan_window_sizes = [56] # list[int] | Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. (optional) -similarity = 1.2 # float | Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] (optional) +similarity = 1.2 # float | Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] (optional) skip_diagonal_search = True # bool | Allows detector to skip search for diagonal barcodes. Setting it to False will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. (optional) read_tiny_barcodes = True # bool | Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. (optional) australian_post_encoding_table = 'australian_post_encoding_table_example' # str | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. (optional) @@ -234,7 +235,7 @@ Name | Type | Description | Notes **allow_additional_restorations** | **bool**| Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. | [optional] **region_likelihood_threshold_percent** | **float**| Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. | [optional] **scan_window_sizes** | [**list[int]**](int.md)| Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. | [optional] - **similarity** | **float**| Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional] + **similarity** | **float**| Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional] **skip_diagonal_search** | **bool**| Allows detector to skip search for diagonal barcodes. Setting it to False will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional] **read_tiny_barcodes** | **bool**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional] **australian_post_encoding_table** | **str**| Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional] @@ -306,7 +307,7 @@ fast_scan_only = True # bool | Allows engine for 1D barcodes to quickly recogniz allow_additional_restorations = True # bool | Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. (optional) region_likelihood_threshold_percent = 1.2 # float | Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. (optional) scan_window_sizes = [56] # list[int] | Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. (optional) -similarity = 1.2 # float | Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] (optional) +similarity = 1.2 # float | Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] (optional) skip_diagonal_search = True # bool | Allows detector to skip search for diagonal barcodes. Setting it to False will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. (optional) read_tiny_barcodes = True # bool | Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. (optional) australian_post_encoding_table = 'australian_post_encoding_table_example' # str | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. (optional) @@ -357,7 +358,7 @@ Name | Type | Description | Notes **allow_additional_restorations** | **bool**| Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. | [optional] **region_likelihood_threshold_percent** | **float**| Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. | [optional] **scan_window_sizes** | [**list[int]**](int.md)| Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. | [optional] - **similarity** | **float**| Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional] + **similarity** | **float**| Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional] **skip_diagonal_search** | **bool**| Allows detector to skip search for diagonal barcodes. Setting it to False will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional] **read_tiny_barcodes** | **bool**| Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional] **australian_post_encoding_table** | **str**| Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional] @@ -670,3 +671,56 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **scan_barcode** +> BarcodeResponseList scan_barcode(image_file, decode_types=decode_types, timeout=timeout) + +Quickly scan a barcode from an image. + +### Example +```python +from __future__ import division, print_function +import time +import aspose_barcode_cloud +from aspose_barcode_cloud.rest import ApiException +from pprint import pprint + +# Configure OAuth2 access token for authorization: JWT +configuration = aspose_barcode_cloud.Configuration(access_token="YOUR_ACCESS_TOKEN") + +# create an instance of the API class +api_instance = aspose_barcode_cloud.BarcodeApi(aspose_barcode_cloud.ApiClient(configuration)) +image_file = '/path/to/file.txt' # file | Image as file +decode_types = [aspose_barcode_cloud.DecodeBarcodeType()] # list[DecodeBarcodeType] | Types of barcode to recognize (optional) +timeout = 56 # int | Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. (optional) + +try: + # Quickly scan a barcode from an image. + api_response = api_instance.scan_barcode(image_file, decode_types=decode_types, timeout=timeout) + pprint(api_response) +except ApiException as e: + print("Exception when calling BarcodeApi->scan_barcode: %s\n" % e) +``` + +### Parameters + +Name | Type | Description | Notes +---- | ---- | ------------ | ----- + **image_file** | **file**| Image as file | + **decode_types** | [**list[DecodeBarcodeType]**](DecodeBarcodeType.md)| Types of barcode to recognize | [optional] + **timeout** | **int**| Timeout of recognition process in milliseconds. Default value is 15_000 (15 seconds). Maximum value is 30_000 (1/2 minute). In case of a timeout RequestTimeout (408) status will be returned. Try reducing the image size to avoid timeout. | [optional] + +### Return type + +[**BarcodeResponseList**](BarcodeResponseList.md) + +### Authorization + +[JWT](../README.md#JWT) + +### HTTP request headers + + - **Content-Type**: multipart/form-data + - **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + diff --git a/docs/ReaderParams.md b/docs/ReaderParams.md index 0c1c149..c043850 100644 --- a/docs/ReaderParams.md +++ b/docs/ReaderParams.md @@ -37,7 +37,7 @@ Name | Type | Description | Notes **allow_additional_restorations** | **bool** | Allows engine using additional image restorations to recognize corrupted barcodes. At this time, it is used only in MicroPdf417 barcode type. Default value: False. | [optional] **region_likelihood_threshold_percent** | **float** | Sets threshold for detected regions that may contain barcodes. Value 0.7 means that bottom 70% of possible regions are filtered out and not processed further. Region likelihood threshold must be between [0.05, 0.9] Use high values for clear images with few barcodes. Use low values for images with many barcodes or for noisy images. Low value may lead to a bigger recognition time. | [optional] **scan_window_sizes** | **list[int]** | Scan window sizes in pixels. Allowed sizes are 10, 15, 20, 25, 30. Scanning with small window size takes more time and provides more accuracy but may fail in detecting very big barcodes. Combining of several window sizes can improve detection quality. | [optional] -**similarity** | **float** | Similarity coefficient depends on how homogeneous barcodes are. Use high value for for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional] +**similarity** | **float** | Similarity coefficient depends on how homogeneous barcodes are. Use high value for clear barcodes. Use low values to detect barcodes that ara partly damaged or not lighten evenly. Similarity coefficient must be between [0.5, 0.9] | [optional] **skip_diagonal_search** | **bool** | Allows detector to skip search for diagonal barcodes. Setting it to False will increase detection time but allow to find diagonal barcodes that can be missed otherwise. Enabling of diagonal search leads to a bigger detection time. | [optional] **read_tiny_barcodes** | **bool** | Allows engine to recognize tiny barcodes on large images. Ignored if AllowIncorrectBarcodes is set to True. Default value: False. | [optional] **australian_post_encoding_table** | [**CustomerInformationInterpretingType**](CustomerInformationInterpretingType.md) | Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other. | [optional] diff --git a/example.py b/example.py index 2319ffa..cfce46b 100644 --- a/example.py +++ b/example.py @@ -8,7 +8,8 @@ ApiClient, Configuration, EncodeBarcodeType, - PresetType, + CodeLocation, + DecodeBarcodeType, ) config = Configuration( @@ -20,11 +21,11 @@ api = BarcodeApi(ApiClient(config)) # Generate barcode -response = api.get_barcode_generate(EncodeBarcodeType.QR, "Example", text_location="None") +response = api.get_barcode_generate(EncodeBarcodeType.QR, "Example", text_location=CodeLocation.NONE) with open("example.png", "wb") as f: f.write(response.data) print("Barcode saved to file 'example.png'") # Recognize barcode -response = api.post_barcode_recognize_from_url_or_content(image="example.png", preset=PresetType.HIGHPERFORMANCE) +response = api.scan_barcode("example.png", decode_types=[DecodeBarcodeType.QR]) pprint(response) diff --git a/setup.py b/setup.py index ac09abb..ba8622d 100644 --- a/setup.py +++ b/setup.py @@ -1,35 +1,11 @@ # coding: utf-8 -""" - - Copyright (c) 2024 Aspose.BarCode for Cloud - - 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. - -""" - import os from setuptools import setup, find_packages NAME = "aspose-barcode-cloud" -VERSION = "24.3.0" +VERSION = "24.4.0" # To install the library, run the following # # python setup.py install diff --git a/testdata/qr_and_code128.png b/testdata/qr_and_code128.png new file mode 100644 index 0000000..04ea058 Binary files /dev/null and b/testdata/qr_and_code128.png differ diff --git a/tests/test_scan.py b/tests/test_scan.py new file mode 100644 index 0000000..142701c --- /dev/null +++ b/tests/test_scan.py @@ -0,0 +1,35 @@ +from __future__ import absolute_import, division + +import os +import unittest + +from aspose_barcode_cloud import ApiClient, BarcodeApi, DecodeBarcodeType +from .load_configuration import TEST_CONFIGURATION + + +class TestScanBarcode(unittest.TestCase): + @classmethod + def setUpClass(cls): + cls.api = BarcodeApi(api_client=ApiClient(configuration=TEST_CONFIGURATION)) + + cls.test_filename = os.path.abspath( + os.path.join(os.path.dirname(__file__), "..", "testdata", "qr_and_code128.png") + ) + + def test_scan_barcode(self): + """Test case for scan_barcode + + Scan barcode. + """ + + response = self.api.scan_barcode( + self.test_filename, decode_types=[DecodeBarcodeType.CODE128, DecodeBarcodeType.QR] + ) + + self.assertEqual(2, len(response.barcodes)) + + self.assertEqual(DecodeBarcodeType.QR, response.barcodes[0].type) + self.assertEqual("QR text", response.barcodes[0].barcode_value) + + self.assertEqual(DecodeBarcodeType.CODE128, response.barcodes[1].type) + self.assertEqual("Code128 text", response.barcodes[1].barcode_value)