Skip to content

Commit 6f53ceb

Browse files
update to 24.1
1 parent 19bb342 commit 6f53ceb

File tree

295 files changed

+320
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

295 files changed

+320
-313
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Aspose.PDF Cloud
3+
Copyright (c) 2024 Aspose.PDF Cloud
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,11 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
3030
## Read PDF Formats
3131
MHT, PCL, PS, XSLFO, MD
3232

33-
## Enhancements in Version 23.12
34-
- Support to update bookmark in password protected PDF document.
35-
- Support to delete bookmarks from password protected PDF document.
36-
- Support to add bookmarks to password protected PDF document.
37-
- Support to delete properties of password protected PDF document.
38-
- Support to add properties of password protected PDF document.
39-
- Support to read properties of password protected PDF document.
33+
## Enhancements in Version 24.1
34+
- Add support to convert password protected PDF to SVG in PutPdfInRequestToSvg API.
35+
- Add support to convert password protected PDF to SVG in PutPdfInStorageToSvg API.
4036
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
4137

42-
## Bugs fixed in Version 23.12
43-
- PDF to XLSX Conversion clubs data in one cell.
44-
- GetDocumentBookmarks does not get bookmarks from protected PDF.
45-
4638
## Requirements.
4739
Python 2.7 and 3.4+
4840

asposepdfcloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55
66
7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights

asposepdfcloud/api_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Aspose.PDF Cloud API Reference
44
55
6-
Copyright (c) 2023 Aspose.PDF Cloud
6+
Copyright (c) 2024 Aspose.PDF Cloud
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
99
in the Software without restriction, including without limitation the rights
@@ -83,7 +83,7 @@ def __init__(self, app_key, app_sid, host=None):
8383
self.rest_client = RESTClientObject()
8484
self.default_headers = {}
8585
self.default_headers['x-aspose-client'] = 'python sdk'
86-
self.default_headers['x-aspose-client-version'] = '23.12.0'
86+
self.default_headers['x-aspose-client-version'] = '24.1.0'
8787

8888
self.app_key = app_key
8989
self.app_sid = app_sid

asposepdfcloud/apis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55
66
7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights

asposepdfcloud/apis/pdf_api.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55

66

7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights
@@ -17500,6 +17500,7 @@ def get_pdf_in_storage_to_svg(self, name, **kwargs):
1750017500
:param bool compress_output_to_zip_archive: Specifies whether output will be created as one zip-archive.
1750117501
:param str folder: The document folder.
1750217502
:param str storage: The document storage.
17503+
:param str password: The password (Base64).
1750317504
:return: file
1750417505
If the method is called asynchronously,
1750517506
returns the request thread.
@@ -17528,12 +17529,13 @@ def get_pdf_in_storage_to_svg_with_http_info(self, name, **kwargs):
1752817529
:param bool compress_output_to_zip_archive: Specifies whether output will be created as one zip-archive.
1752917530
:param str folder: The document folder.
1753017531
:param str storage: The document storage.
17532+
:param str password: The password (Base64).
1753117533
:return: file
1753217534
If the method is called asynchronously,
1753317535
returns the request thread.
1753417536
"""
1753517537

17536-
all_params = ['name', 'compress_output_to_zip_archive', 'folder', 'storage']
17538+
all_params = ['name', 'compress_output_to_zip_archive', 'folder', 'storage', 'password']
1753717539
all_params.append('callback')
1753817540
all_params.append('_return_http_data_only')
1753917541
all_params.append('_preload_content')
@@ -17566,6 +17568,8 @@ def get_pdf_in_storage_to_svg_with_http_info(self, name, **kwargs):
1756617568
query_params.append(('folder', params['folder']))
1756717569
if 'storage' in params:
1756817570
query_params.append(('storage', params['storage']))
17571+
if 'password' in params:
17572+
query_params.append(('password', params['password']))
1756917573

1757017574
header_params = {}
1757117575

@@ -37269,6 +37273,7 @@ def put_pdf_in_request_to_svg(self, out_path, **kwargs):
3726937273
for asynchronous request. (optional)
3727037274
:param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required)
3727137275
:param str storage: The document storage.
37276+
:param str password: The password (Base64).
3727237277
:param file file: A file to be converted.
3727337278
:return: AsposeResponse
3727437279
If the method is called asynchronously,
@@ -37296,13 +37301,14 @@ def put_pdf_in_request_to_svg_with_http_info(self, out_path, **kwargs):
3729637301
for asynchronous request. (optional)
3729737302
:param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required)
3729837303
:param str storage: The document storage.
37304+
:param str password: The password (Base64).
3729937305
:param file file: A file to be converted.
3730037306
:return: AsposeResponse
3730137307
If the method is called asynchronously,
3730237308
returns the request thread.
3730337309
"""
3730437310

37305-
all_params = ['out_path', 'storage', 'file']
37311+
all_params = ['out_path', 'storage', 'password', 'file']
3730637312
all_params.append('callback')
3730737313
all_params.append('_return_http_data_only')
3730837314
all_params.append('_preload_content')
@@ -37331,6 +37337,8 @@ def put_pdf_in_request_to_svg_with_http_info(self, out_path, **kwargs):
3733137337
query_params.append(('outPath', params['out_path']))
3733237338
if 'storage' in params:
3733337339
query_params.append(('storage', params['storage']))
37340+
if 'password' in params:
37341+
query_params.append(('password', params['password']))
3733437342

3733537343
header_params = {}
3733637344

@@ -39053,6 +39061,7 @@ def put_pdf_in_storage_to_svg(self, name, out_path, **kwargs):
3905339061
:param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required)
3905439062
:param str folder: The document folder.
3905539063
:param str storage: The document storage.
39064+
:param str password: The password (Base64).
3905639065
:return: AsposeResponse
3905739066
If the method is called asynchronously,
3905839067
returns the request thread.
@@ -39081,12 +39090,13 @@ def put_pdf_in_storage_to_svg_with_http_info(self, name, out_path, **kwargs):
3908139090
:param str out_path: Full resulting filename (ex. /folder1/folder2/result.svg) (required)
3908239091
:param str folder: The document folder.
3908339092
:param str storage: The document storage.
39093+
:param str password: The password (Base64).
3908439094
:return: AsposeResponse
3908539095
If the method is called asynchronously,
3908639096
returns the request thread.
3908739097
"""
3908839098

39089-
all_params = ['name', 'out_path', 'folder', 'storage']
39099+
all_params = ['name', 'out_path', 'folder', 'storage', 'password']
3909039100
all_params.append('callback')
3909139101
all_params.append('_return_http_data_only')
3909239102
all_params.append('_preload_content')
@@ -39122,6 +39132,8 @@ def put_pdf_in_storage_to_svg_with_http_info(self, name, out_path, **kwargs):
3912239132
query_params.append(('folder', params['folder']))
3912339133
if 'storage' in params:
3912439134
query_params.append(('storage', params['storage']))
39135+
if 'password' in params:
39136+
query_params.append(('password', params['password']))
3912539137

3912639138
header_params = {}
3912739139

asposepdfcloud/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55
66
7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights
@@ -199,5 +199,5 @@ def to_debug_report(self):
199199
"OS: {env}\n"\
200200
"Python Version: {pyversion}\n"\
201201
"Version of the API: 3.0\n"\
202-
"SDK Package Version: 23.12.0".\
202+
"SDK Package Version: 24.1.0".\
203203
format(env=sys.platform, pyversion=sys.version)

asposepdfcloud/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55
66
7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights

asposepdfcloud/models/annotation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55
66
7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights

asposepdfcloud/models/annotation_flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Aspose.PDF Cloud API Reference
55
66
7-
Copyright (c) 2023 Aspose.PDF Cloud
7+
Copyright (c) 2024 Aspose.PDF Cloud
88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal
1010
in the Software without restriction, including without limitation the rights

0 commit comments

Comments
 (0)