diff --git a/README.md b/README.md index ce0af34..b574bf5 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: 4.0 -- Package version: 25.6.0 +- Package version: 25.7.0 ## SDK and API Version Compatibility: @@ -118,10 +118,10 @@ Class | Method | HTTP request | Description *GenerateApi* | [**generate**](docs/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string. *GenerateApi* | [**generate_body**](docs/GenerateApi.md#generate_body) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format. *GenerateApi* | [**generate_multipart**](docs/GenerateApi.md#generate_multipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form. -*RecognizeApi* | [**recognize**](docs/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string. +*RecognizeApi* | [**recognize**](docs/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. *RecognizeApi* | [**recognize_base64**](docs/RecognizeApi.md#recognize_base64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format. *RecognizeApi* | [**recognize_multipart**](docs/RecognizeApi.md#recognize_multipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form. -*ScanApi* | [**scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string. +*ScanApi* | [**scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. *ScanApi* | [**scan_base64**](docs/ScanApi.md#scan_base64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format. *ScanApi* | [**scan_multipart**](docs/ScanApi.md#scan_multipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form. diff --git a/aspose_barcode_cloud/api/recognize_api.py b/aspose_barcode_cloud/api/recognize_api.py index 8142bab..51357fa 100644 --- a/aspose_barcode_cloud/api/recognize_api.py +++ b/aspose_barcode_cloud/api/recognize_api.py @@ -23,7 +23,7 @@ def __init__(self, api_client=None): def recognize( self, barcode_type, file_url, recognition_mode=None, recognition_image_kind=None, async_req=False, **kwargs ): - """Recognize barcode from file on server using GET requests with parameters in route and query string. + """Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True @@ -59,7 +59,7 @@ def recognize( return data def recognize_with_http_info(self, barcode_type, file_url, **kwargs): - """Recognize barcode from file on server using GET requests with parameters in route and query string. + """Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True diff --git a/aspose_barcode_cloud/api/scan_api.py b/aspose_barcode_cloud/api/scan_api.py index 051dcc1..4ebecce 100644 --- a/aspose_barcode_cloud/api/scan_api.py +++ b/aspose_barcode_cloud/api/scan_api.py @@ -21,7 +21,7 @@ def __init__(self, api_client=None): self.auth_settings = ["JWT"] def scan(self, file_url, async_req=False, **kwargs): - """Scan barcode from file on server using GET requests with parameter in query string. + """Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True @@ -42,7 +42,7 @@ def scan(self, file_url, async_req=False, **kwargs): return data def scan_with_http_info(self, file_url, **kwargs): - """Scan barcode from file on server using GET requests with parameter in query string. + """Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async_req=True diff --git a/aspose_barcode_cloud/api_client.py b/aspose_barcode_cloud/api_client.py index 8823962..3c6ba31 100644 --- a/aspose_barcode_cloud/api_client.py +++ b/aspose_barcode_cloud/api_client.py @@ -60,13 +60,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": "25.6.0", + "x-aspose-client-version": "25.7.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/25.6.0/python" + self.user_agent = "Aspose-Barcode-SDK/25.7.0/python" def __del__(self): self.rest_client.close() diff --git a/aspose_barcode_cloud/configuration.py b/aspose_barcode_cloud/configuration.py index e4cb0d8..107539c 100644 --- a/aspose_barcode_cloud/configuration.py +++ b/aspose_barcode_cloud/configuration.py @@ -258,7 +258,7 @@ def to_debug_report(self): "OS: {env}\n" "Python Version: {pyversion}\n" "Version of the API: 4.0\n" - "SDK Package Version: 25.6.0".format(env=sys.platform, pyversion=sys.version) + "SDK Package Version: 25.7.0".format(env=sys.platform, pyversion=sys.version) ) @staticmethod diff --git a/docs/RecognizeApi.md b/docs/RecognizeApi.md index 891725e..9c3229f 100644 --- a/docs/RecognizeApi.md +++ b/docs/RecognizeApi.md @@ -4,7 +4,7 @@ All URIs are relative to *https://api.aspose.cloud/v4.0* Method | HTTP request | Description ------ | ------------ | ----------- -[**recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string. +[**recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. [**recognize_base64**](RecognizeApi.md#recognize_base64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format. [**recognize_multipart**](RecognizeApi.md#recognize_multipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form. @@ -12,7 +12,7 @@ Method | HTTP request | Description # **recognize** > BarcodeResponseList recognize(barcode_type, file_url, recognition_mode=recognition_mode, recognition_image_kind=recognition_image_kind) -Recognize barcode from file on server using GET requests with parameters in route and query string. +Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. ### Example ```python @@ -32,7 +32,7 @@ recognition_mode = aspose_barcode_cloud.RecognitionMode() # RecognitionMode | Re recognition_image_kind = aspose_barcode_cloud.RecognitionImageKind() # RecognitionImageKind | Image kind for recognition (optional) try: - # Recognize barcode from file on server using GET requests with parameters in route and query string. + # Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. api_response = api_instance.recognize(barcode_type, file_url, recognition_mode=recognition_mode, recognition_image_kind=recognition_image_kind) pprint(api_response) except ApiException as e: diff --git a/docs/ScanApi.md b/docs/ScanApi.md index 574ce8e..04a5ac7 100644 --- a/docs/ScanApi.md +++ b/docs/ScanApi.md @@ -4,7 +4,7 @@ All URIs are relative to *https://api.aspose.cloud/v4.0* Method | HTTP request | Description ------ | ------------ | ----------- -[**scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string. +[**scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. [**scan_base64**](ScanApi.md#scan_base64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format. [**scan_multipart**](ScanApi.md#scan_multipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form. @@ -12,7 +12,7 @@ Method | HTTP request | Description # **scan** > BarcodeResponseList scan(file_url) -Scan barcode from file on server using GET requests with parameter in query string. +Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. ### Example ```python @@ -29,7 +29,7 @@ api_instance = aspose_barcode_cloud.ScanApi(aspose_barcode_cloud.ApiClient(confi file_url = 'file_url_example' # str | Url to barcode image try: - # Scan barcode from file on server using GET requests with parameter in query string. + # Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. api_response = api_instance.scan(file_url) pprint(api_response) except ApiException as e: diff --git a/setup.py b/setup.py index ca16bac..ad3d536 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages NAME = "aspose-barcode-cloud" -VERSION = "25.6.0" +VERSION = "25.7.0" # To install the library, run the following # # python setup.py install