Skip to content

Commit 1bf8369

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Version updated
1 parent bfb0f30 commit 1bf8369

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![PyPI](https://img.shields.io/pypi/v/aspose-barcode-cloud)](https://pypi.org/project/aspose-barcode-cloud/)
66

77
- API version: 4.0
8-
- Package version: 25.6.0
8+
- Package version: 25.7.0
99

1010
## SDK and API Version Compatibility:
1111

@@ -118,10 +118,10 @@ Class | Method | HTTP request | Description
118118
*GenerateApi* | [**generate**](docs/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
119119
*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.
120120
*GenerateApi* | [**generate_multipart**](docs/GenerateApi.md#generate_multipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
121-
*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.
121+
*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.
122122
*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.
123123
*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.
124-
*ScanApi* | [**scan**](docs/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
124+
*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.
125125
*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.
126126
*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.
127127

aspose_barcode_cloud/api/recognize_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def __init__(self, api_client=None):
2323
def recognize(
2424
self, barcode_type, file_url, recognition_mode=None, recognition_image_kind=None, async_req=False, **kwargs
2525
):
26-
"""Recognize barcode from file on server using GET requests with parameters in route and query string.
26+
"""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.
2727
2828
This method makes a synchronous HTTP request by default. To make an
2929
asynchronous HTTP request, please pass async_req=True
@@ -59,7 +59,7 @@ def recognize(
5959
return data
6060

6161
def recognize_with_http_info(self, barcode_type, file_url, **kwargs):
62-
"""Recognize barcode from file on server using GET requests with parameters in route and query string.
62+
"""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.
6363
6464
This method makes a synchronous HTTP request by default. To make an
6565
asynchronous HTTP request, please pass async_req=True

aspose_barcode_cloud/api/scan_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, api_client=None):
2121
self.auth_settings = ["JWT"]
2222

2323
def scan(self, file_url, async_req=False, **kwargs):
24-
"""Scan barcode from file on server using GET requests with parameter in query string.
24+
"""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.
2525
2626
This method makes a synchronous HTTP request by default. To make an
2727
asynchronous HTTP request, please pass async_req=True
@@ -42,7 +42,7 @@ def scan(self, file_url, async_req=False, **kwargs):
4242
return data
4343

4444
def scan_with_http_info(self, file_url, **kwargs):
45-
"""Scan barcode from file on server using GET requests with parameter in query string.
45+
"""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.
4646
4747
This method makes a synchronous HTTP request by default. To make an
4848
asynchronous HTTP request, please pass async_req=True

aspose_barcode_cloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
6060
self.rest_client = RESTClientObject(configuration)
6161
self.default_headers = {
6262
"x-aspose-client": "python sdk",
63-
"x-aspose-client-version": "25.6.0",
63+
"x-aspose-client-version": "25.7.0",
6464
}
6565
if header_name is not None:
6666
self.default_headers[header_name] = header_value
6767
self.cookie = cookie
6868
# Set default User-Agent.
69-
self.user_agent = "Aspose-Barcode-SDK/25.6.0/python"
69+
self.user_agent = "Aspose-Barcode-SDK/25.7.0/python"
7070

7171
def __del__(self):
7272
self.rest_client.close()

aspose_barcode_cloud/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def to_debug_report(self):
258258
"OS: {env}\n"
259259
"Python Version: {pyversion}\n"
260260
"Version of the API: 4.0\n"
261-
"SDK Package Version: 25.6.0".format(env=sys.platform, pyversion=sys.version)
261+
"SDK Package Version: 25.7.0".format(env=sys.platform, pyversion=sys.version)
262262
)
263263

264264
@staticmethod

docs/RecognizeApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ All URIs are relative to *https://api.aspose.cloud/v4.0*
44

55
Method | HTTP request | Description
66
------ | ------------ | -----------
7-
[**recognize**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
7+
[**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.
88
[**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.
99
[**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.
1010

1111

1212
# **recognize**
1313
> BarcodeResponseList recognize(barcode_type, file_url, recognition_mode=recognition_mode, recognition_image_kind=recognition_image_kind)
1414
15-
Recognize barcode from file on server using GET requests with parameters in route and query string.
15+
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.
1616

1717
### Example
1818
```python
@@ -32,7 +32,7 @@ recognition_mode = aspose_barcode_cloud.RecognitionMode() # RecognitionMode | Re
3232
recognition_image_kind = aspose_barcode_cloud.RecognitionImageKind() # RecognitionImageKind | Image kind for recognition (optional)
3333

3434
try:
35-
# Recognize barcode from file on server using GET requests with parameters in route and query string.
35+
# 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.
3636
api_response = api_instance.recognize(barcode_type, file_url, recognition_mode=recognition_mode, recognition_image_kind=recognition_image_kind)
3737
pprint(api_response)
3838
except ApiException as e:

docs/ScanApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ All URIs are relative to *https://api.aspose.cloud/v4.0*
44

55
Method | HTTP request | Description
66
------ | ------------ | -----------
7-
[**scan**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
7+
[**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.
88
[**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.
99
[**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.
1010

1111

1212
# **scan**
1313
> BarcodeResponseList scan(file_url)
1414
15-
Scan barcode from file on server using GET requests with parameter in query string.
15+
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.
1616

1717
### Example
1818
```python
@@ -29,7 +29,7 @@ api_instance = aspose_barcode_cloud.ScanApi(aspose_barcode_cloud.ApiClient(confi
2929
file_url = 'file_url_example' # str | Url to barcode image
3030

3131
try:
32-
# Scan barcode from file on server using GET requests with parameter in query string.
32+
# 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.
3333
api_response = api_instance.scan(file_url)
3434
pprint(api_response)
3535
except ApiException as e:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup, find_packages
66

77
NAME = "aspose-barcode-cloud"
8-
VERSION = "25.6.0"
8+
VERSION = "25.7.0"
99
# To install the library, run the following
1010
#
1111
# python setup.py install

0 commit comments

Comments
 (0)