groupdocs-conversion-cloud 25.6__py3-none-any.whl → 25.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- groupdocs_conversion_cloud/api_client.py +2 -2
- groupdocs_conversion_cloud/configuration.py +2 -2
- groupdocs_conversion_cloud/models/cad_load_options.py +63 -34
- groupdocs_conversion_cloud/models/email_load_options.py +294 -145
- groupdocs_conversion_cloud/models/pdf_load_options.py +238 -56
- groupdocs_conversion_cloud/models/spreadsheet_load_options.py +492 -126
- groupdocs_conversion_cloud/models/web_load_options.py +158 -3
- groupdocs_conversion_cloud-25.8.dist-info/METADATA +132 -0
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/RECORD +12 -12
- groupdocs_conversion_cloud-25.6.dist-info/METADATA +0 -94
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/WHEEL +0 -0
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/licenses/LICENSE +0 -0
- {groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/top_level.txt +0 -0
@@ -46,34 +46,59 @@ class WebLoadOptions(LoadOptions):
|
|
46
46
|
"""
|
47
47
|
swagger_types = {
|
48
48
|
'page_numbering': 'bool',
|
49
|
+
'base_path': 'str',
|
49
50
|
'encoding': 'str',
|
51
|
+
'skip_external_resources': 'bool',
|
50
52
|
'use_pdf': 'bool',
|
51
|
-
'rendering_mode': 'str'
|
53
|
+
'rendering_mode': 'str',
|
54
|
+
'zoom': 'int',
|
55
|
+
'page_layout': 'str',
|
56
|
+
'custom_css_style': 'str'
|
52
57
|
}
|
53
58
|
|
54
59
|
attribute_map = {
|
55
60
|
'page_numbering': 'PageNumbering',
|
61
|
+
'base_path': 'BasePath',
|
56
62
|
'encoding': 'Encoding',
|
63
|
+
'skip_external_resources': 'SkipExternalResources',
|
57
64
|
'use_pdf': 'UsePdf',
|
58
|
-
'rendering_mode': 'RenderingMode'
|
65
|
+
'rendering_mode': 'RenderingMode',
|
66
|
+
'zoom': 'Zoom',
|
67
|
+
'page_layout': 'PageLayout',
|
68
|
+
'custom_css_style': 'CustomCssStyle'
|
59
69
|
}
|
60
70
|
|
61
|
-
def __init__(self, page_numbering=None, encoding=None, use_pdf=None, rendering_mode=None, **kwargs): # noqa: E501
|
71
|
+
def __init__(self, page_numbering=None, base_path=None, encoding=None, skip_external_resources=None, use_pdf=None, rendering_mode=None, zoom=None, page_layout=None, custom_css_style=None, **kwargs): # noqa: E501
|
62
72
|
"""Initializes new instance of WebLoadOptions""" # noqa: E501
|
63
73
|
|
64
74
|
self._page_numbering = None
|
75
|
+
self._base_path = None
|
65
76
|
self._encoding = None
|
77
|
+
self._skip_external_resources = None
|
66
78
|
self._use_pdf = None
|
67
79
|
self._rendering_mode = None
|
80
|
+
self._zoom = None
|
81
|
+
self._page_layout = None
|
82
|
+
self._custom_css_style = None
|
68
83
|
|
69
84
|
if page_numbering is not None:
|
70
85
|
self.page_numbering = page_numbering
|
86
|
+
if base_path is not None:
|
87
|
+
self.base_path = base_path
|
71
88
|
if encoding is not None:
|
72
89
|
self.encoding = encoding
|
90
|
+
if skip_external_resources is not None:
|
91
|
+
self.skip_external_resources = skip_external_resources
|
73
92
|
if use_pdf is not None:
|
74
93
|
self.use_pdf = use_pdf
|
75
94
|
if rendering_mode is not None:
|
76
95
|
self.rendering_mode = rendering_mode
|
96
|
+
if zoom is not None:
|
97
|
+
self.zoom = zoom
|
98
|
+
if page_layout is not None:
|
99
|
+
self.page_layout = page_layout
|
100
|
+
if custom_css_style is not None:
|
101
|
+
self.custom_css_style = custom_css_style
|
77
102
|
|
78
103
|
base = super(WebLoadOptions, self)
|
79
104
|
base.__init__(**kwargs)
|
@@ -107,6 +132,30 @@ class WebLoadOptions(LoadOptions):
|
|
107
132
|
raise ValueError("Invalid value for `page_numbering`, must not be `None`") # noqa: E501
|
108
133
|
self._page_numbering = page_numbering
|
109
134
|
|
135
|
+
@property
|
136
|
+
def base_path(self):
|
137
|
+
"""
|
138
|
+
Gets the base_path. # noqa: E501
|
139
|
+
|
140
|
+
The base path/url for the html # noqa: E501
|
141
|
+
|
142
|
+
:return: The base_path. # noqa: E501
|
143
|
+
:rtype: str
|
144
|
+
"""
|
145
|
+
return self._base_path
|
146
|
+
|
147
|
+
@base_path.setter
|
148
|
+
def base_path(self, base_path):
|
149
|
+
"""
|
150
|
+
Sets the base_path.
|
151
|
+
|
152
|
+
The base path/url for the html # noqa: E501
|
153
|
+
|
154
|
+
:param base_path: The base_path. # noqa: E501
|
155
|
+
:type: str
|
156
|
+
"""
|
157
|
+
self._base_path = base_path
|
158
|
+
|
110
159
|
@property
|
111
160
|
def encoding(self):
|
112
161
|
"""
|
@@ -131,6 +180,32 @@ class WebLoadOptions(LoadOptions):
|
|
131
180
|
"""
|
132
181
|
self._encoding = encoding
|
133
182
|
|
183
|
+
@property
|
184
|
+
def skip_external_resources(self):
|
185
|
+
"""
|
186
|
+
Gets the skip_external_resources. # noqa: E501
|
187
|
+
|
188
|
+
If true all external resource will not be loading # noqa: E501
|
189
|
+
|
190
|
+
:return: The skip_external_resources. # noqa: E501
|
191
|
+
:rtype: bool
|
192
|
+
"""
|
193
|
+
return self._skip_external_resources
|
194
|
+
|
195
|
+
@skip_external_resources.setter
|
196
|
+
def skip_external_resources(self, skip_external_resources):
|
197
|
+
"""
|
198
|
+
Sets the skip_external_resources.
|
199
|
+
|
200
|
+
If true all external resource will not be loading # noqa: E501
|
201
|
+
|
202
|
+
:param skip_external_resources: The skip_external_resources. # noqa: E501
|
203
|
+
:type: bool
|
204
|
+
"""
|
205
|
+
if skip_external_resources is None:
|
206
|
+
raise ValueError("Invalid value for `skip_external_resources`, must not be `None`") # noqa: E501
|
207
|
+
self._skip_external_resources = skip_external_resources
|
208
|
+
|
134
209
|
@property
|
135
210
|
def use_pdf(self):
|
136
211
|
"""
|
@@ -190,6 +265,86 @@ class WebLoadOptions(LoadOptions):
|
|
190
265
|
self._rendering_mode = rendering_mode
|
191
266
|
else:
|
192
267
|
self._rendering_mode = allowed_values[int(rendering_mode) if six.PY3 else long(rendering_mode)]
|
268
|
+
|
269
|
+
@property
|
270
|
+
def zoom(self):
|
271
|
+
"""
|
272
|
+
Gets the zoom. # noqa: E501
|
273
|
+
|
274
|
+
|
275
|
+
:return: The zoom. # noqa: E501
|
276
|
+
:rtype: int
|
277
|
+
"""
|
278
|
+
return self._zoom
|
279
|
+
|
280
|
+
@zoom.setter
|
281
|
+
def zoom(self, zoom):
|
282
|
+
"""
|
283
|
+
Sets the zoom.
|
284
|
+
|
285
|
+
|
286
|
+
:param zoom: The zoom. # noqa: E501
|
287
|
+
:type: int
|
288
|
+
"""
|
289
|
+
if zoom is None:
|
290
|
+
raise ValueError("Invalid value for `zoom`, must not be `None`") # noqa: E501
|
291
|
+
self._zoom = zoom
|
292
|
+
|
293
|
+
@property
|
294
|
+
def page_layout(self):
|
295
|
+
"""
|
296
|
+
Gets the page_layout. # noqa: E501
|
297
|
+
|
298
|
+
Specifies the page layout options when loading web documents # noqa: E501
|
299
|
+
|
300
|
+
:return: The page_layout. # noqa: E501
|
301
|
+
:rtype: str
|
302
|
+
"""
|
303
|
+
return self._page_layout
|
304
|
+
|
305
|
+
@page_layout.setter
|
306
|
+
def page_layout(self, page_layout):
|
307
|
+
"""
|
308
|
+
Sets the page_layout.
|
309
|
+
|
310
|
+
Specifies the page layout options when loading web documents # noqa: E501
|
311
|
+
|
312
|
+
:param page_layout: The page_layout. # noqa: E501
|
313
|
+
:type: str
|
314
|
+
"""
|
315
|
+
if page_layout is None:
|
316
|
+
raise ValueError("Invalid value for `page_layout`, must not be `None`") # noqa: E501
|
317
|
+
allowed_values = ["None", "ScaleToPageWidth", "ScaleToPageHeight"] # noqa: E501
|
318
|
+
if not page_layout.isdigit():
|
319
|
+
if page_layout not in allowed_values:
|
320
|
+
raise ValueError(
|
321
|
+
"Invalid value for `page_layout` ({0}), must be one of {1}" # noqa: E501
|
322
|
+
.format(page_layout, allowed_values))
|
323
|
+
self._page_layout = page_layout
|
324
|
+
else:
|
325
|
+
self._page_layout = allowed_values[int(page_layout) if six.PY3 else long(page_layout)]
|
326
|
+
|
327
|
+
@property
|
328
|
+
def custom_css_style(self):
|
329
|
+
"""
|
330
|
+
Gets the custom_css_style. # noqa: E501
|
331
|
+
|
332
|
+
|
333
|
+
:return: The custom_css_style. # noqa: E501
|
334
|
+
:rtype: str
|
335
|
+
"""
|
336
|
+
return self._custom_css_style
|
337
|
+
|
338
|
+
@custom_css_style.setter
|
339
|
+
def custom_css_style(self, custom_css_style):
|
340
|
+
"""
|
341
|
+
Sets the custom_css_style.
|
342
|
+
|
343
|
+
|
344
|
+
:param custom_css_style: The custom_css_style. # noqa: E501
|
345
|
+
:type: str
|
346
|
+
"""
|
347
|
+
self._custom_css_style = custom_css_style
|
193
348
|
|
194
349
|
def to_dict(self):
|
195
350
|
"""Returns the model properties as a dict"""
|
@@ -0,0 +1,132 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: groupdocs-conversion-cloud
|
3
|
+
Version: 25.8
|
4
|
+
Summary: GroupDocs.Conversion Cloud Python SDK
|
5
|
+
Home-page: http://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-python
|
6
|
+
Author: GroupDocs
|
7
|
+
Author-email: support@groupdocs.cloud
|
8
|
+
Keywords: groupdocs,conversion,cloud,python,sdk
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
10
|
+
Classifier: Intended Audience :: Developers
|
11
|
+
Classifier: Topic :: Software Development :: Libraries
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
13
|
+
Classifier: Programming Language :: Python :: 2.7
|
14
|
+
Classifier: Programming Language :: Python :: 3.4
|
15
|
+
Classifier: Programming Language :: Python :: 3.5
|
16
|
+
Classifier: Programming Language :: Python :: 3.6
|
17
|
+
Classifier: Programming Language :: Python :: 3.7
|
18
|
+
Description-Content-Type: text/markdown
|
19
|
+
License-File: LICENSE
|
20
|
+
Requires-Dist: urllib3>=1.15
|
21
|
+
Requires-Dist: six>=1.10
|
22
|
+
Requires-Dist: certifi
|
23
|
+
Requires-Dist: python-dateutil
|
24
|
+
Dynamic: author
|
25
|
+
Dynamic: author-email
|
26
|
+
Dynamic: classifier
|
27
|
+
Dynamic: description
|
28
|
+
Dynamic: description-content-type
|
29
|
+
Dynamic: home-page
|
30
|
+
Dynamic: keywords
|
31
|
+
Dynamic: license-file
|
32
|
+
Dynamic: requires-dist
|
33
|
+
Dynamic: summary
|
34
|
+
|
35
|
+
# GroupDocs.Conversion Cloud Python SDK
|
36
|
+
|
37
|
+
This repository contains GroupDocs.Conversion Cloud SDK for Python source code. This SDK has been developed to help you get started with using our document conversion REST API, allowing to seamlessly convert your documents to any format you need. With this single API, you can convert back and forth between over 50 types of documents and images, including all Microsoft Office and OpenDocument file formats, PDF documents, HTML, CAD, raster images and many more.
|
38
|
+
|
39
|
+
## Requirements
|
40
|
+
|
41
|
+
Python 2.7 or 3.4+
|
42
|
+
|
43
|
+
## Installation
|
44
|
+
Install `groupdocs-conversion-cloud` with [PIP](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/) by:
|
45
|
+
|
46
|
+
```sh
|
47
|
+
pip install groupdocs-conversion-cloud
|
48
|
+
```
|
49
|
+
|
50
|
+
Or clone repository and install it via [Setuptools](http://pypi.python.org/pypi/setuptools):
|
51
|
+
|
52
|
+
```sh
|
53
|
+
python setup.py install
|
54
|
+
```
|
55
|
+
|
56
|
+
### Create an account
|
57
|
+
Creating an account is very simple. Go to Dashboard to create a free account.
|
58
|
+
We’re using Single Sign On across our websites, therefore, if you already have an account with our services, you can use it to also access the [Dashboard](https://dashboard.groupdocs.cloud).
|
59
|
+
|
60
|
+
### Create an API client app
|
61
|
+
Before you can make any requests to GroupDocs Cloud API you need to get a Client Id and a Client Secret. This will be used to invoke GroupDocs Cloud API. You can get it by creating a new [Application](https://dashboard.groupdocs.cloud/applications).
|
62
|
+
|
63
|
+
## Convert document
|
64
|
+
|
65
|
+
Please follow the [installation procedure](#installation) and then run following:
|
66
|
+
|
67
|
+
```python
|
68
|
+
# Import module
|
69
|
+
import groupdocs_conversion_cloud
|
70
|
+
|
71
|
+
# Get your clientId and clientSecret at https://dashboard.groupdocs.cloud (free registration is required).
|
72
|
+
client_id = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
|
73
|
+
client_secret = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
74
|
+
|
75
|
+
# Create instance of the API
|
76
|
+
apiInstance = groupdocs_conversion_cloud.ConvertApi.from_keys(client_id, client_secret)
|
77
|
+
|
78
|
+
# Prepare request
|
79
|
+
request = groupdocs_conversion_cloud.ConvertDocumentDirectRequest("pdf", "myFile.docx")
|
80
|
+
|
81
|
+
# Convert
|
82
|
+
result = apiInstance.convert_document_direct(request)
|
83
|
+
|
84
|
+
print("Document converted: " + result)
|
85
|
+
|
86
|
+
```
|
87
|
+
|
88
|
+
## Convert document using cloud storage
|
89
|
+
|
90
|
+
```python
|
91
|
+
# Import module
|
92
|
+
import groupdocs_conversion_cloud
|
93
|
+
|
94
|
+
# Get your clientId and clientSecret at https://dashboard.groupdocs.cloud (free registration is required).
|
95
|
+
client_id = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
|
96
|
+
client_secret = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
97
|
+
|
98
|
+
# Create instances of the APIs
|
99
|
+
fileApi = groupdocs_conversion_cloud.FileApi.from_keys(client_id, client_secret)
|
100
|
+
convertApi = groupdocs_conversion_cloud.ConvertApi.from_keys(client_id, client_secret)
|
101
|
+
|
102
|
+
# Upload file
|
103
|
+
fileApi.upload_file(groupdocs_conversion_cloud.UploadFileRequest("myFile.docx", "myFile.docx"))
|
104
|
+
|
105
|
+
# Prepare convert settings
|
106
|
+
settings = groupdocs_conversion_cloud.ConvertSettings()
|
107
|
+
settings.file_path = "myFile.docx"
|
108
|
+
settings.format = "pdf"
|
109
|
+
settings.output_path = "converted"
|
110
|
+
|
111
|
+
# Convert
|
112
|
+
result = convertApi.convert_document(groupdocs_conversion_cloud.ConvertDocumentRequest(settings))
|
113
|
+
|
114
|
+
print("Document converted: " + result)
|
115
|
+
|
116
|
+
# Download result
|
117
|
+
response = fileApi.download_file(groupdocs_conversion_cloud.DownloadFileRequest("converted/myFile.pdf", None))
|
118
|
+
|
119
|
+
```
|
120
|
+
|
121
|
+
## Licensing
|
122
|
+
GroupDocs.Conversion Cloud Python SDK licensed under [MIT License](http://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-python/LICENSE).
|
123
|
+
|
124
|
+
## Resources
|
125
|
+
+ [**Website**](https://www.groupdocs.cloud)
|
126
|
+
+ [**Product Home**](https://products.groupdocs.cloud/conversion)
|
127
|
+
+ [**Documentation**](https://docs.groupdocs.cloud/display/conversioncloud/Home)
|
128
|
+
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/conversion)
|
129
|
+
+ [**Blog**](https://blog.groupdocs.cloud/category/conversion)
|
130
|
+
|
131
|
+
## Contact Us
|
132
|
+
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/conversion).
|
{groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/RECORD
RENAMED
@@ -1,8 +1,8 @@
|
|
1
1
|
groupdocs_conversion_cloud/__init__.py,sha256=bgS8QYCgFOSsoxaZd2rbEuIXsHUcWxk4e8IfpOoKlig,16232
|
2
|
-
groupdocs_conversion_cloud/api_client.py,sha256=
|
2
|
+
groupdocs_conversion_cloud/api_client.py,sha256=uVZZRisGd3o7XVjq7POZ9_RrY0NHy85DA4lyAp1pWrg,26245
|
3
3
|
groupdocs_conversion_cloud/api_exception.py,sha256=sCJYE-ULzZmOmQ5JY_AJiMKJy2Q9xGlkIz2qOcrcTCQ,2664
|
4
4
|
groupdocs_conversion_cloud/auth.py,sha256=gFrQkTMK2inOTupbLUmDusqmV7lcQcp_EhvMCpTPujY,3297
|
5
|
-
groupdocs_conversion_cloud/configuration.py,sha256=
|
5
|
+
groupdocs_conversion_cloud/configuration.py,sha256=UJhzJvDt8lt7kDLg3v53goZJMWUCjRrfMorJk1M-uYw,7671
|
6
6
|
groupdocs_conversion_cloud/rest.py,sha256=L80hCK4WVpwVOQbxKgJJyffvhYr69obg5q9wKK3UJgU,13729
|
7
7
|
groupdocs_conversion_cloud/apis/__init__.py,sha256=3Ym0gZeACRN-srnslZn5DTM0zfp0EiAgA_FwWIgFteU,533
|
8
8
|
groupdocs_conversion_cloud/apis/async_api.py,sha256=hlfweaOWaajCLQZpxbdj4GoWaswumCGtNX7GQsM6B6A,27318
|
@@ -17,7 +17,7 @@ groupdocs_conversion_cloud/models/api_error.py,sha256=uCig04CSq1O7nTht7nNznrttUn
|
|
17
17
|
groupdocs_conversion_cloud/models/api_error_response.py,sha256=72ccy2kGpoZ_gYBozFOav6lPFyclEVEcCpgXWeGfFMU,4664
|
18
18
|
groupdocs_conversion_cloud/models/bmp_convert_options.py,sha256=RT8xVioWkbeTcVTNoTqjUb6WvWNAdkfn1YUFq6bKvU0,3725
|
19
19
|
groupdocs_conversion_cloud/models/bmp_load_options.py,sha256=QMkQUOoFb_6nZFPs1y27L8LqpuHe7bzmUgdfTK117BU,3701
|
20
|
-
groupdocs_conversion_cloud/models/cad_load_options.py,sha256=
|
20
|
+
groupdocs_conversion_cloud/models/cad_load_options.py,sha256=b6yGW4oulPuzEfuhv0nVcZjOKozkGOzuSpqCiB8ijlw,7480
|
21
21
|
groupdocs_conversion_cloud/models/cf2_load_options.py,sha256=P6-k1SMQP5-oIuSfnU9Wbcc2XbJ1_jEzsRiQ_4yKfdk,3697
|
22
22
|
groupdocs_conversion_cloud/models/consumption_result.py,sha256=tvdpeehKrG5Kg7yFrJmsFw0CU6R49gexYejs7kDYdjg,6140
|
23
23
|
groupdocs_conversion_cloud/models/convert_options.py,sha256=swD89qC-2XgxKvtyDEfMzcXRJwSQdBa3a5L46TT5Cl0,6977
|
@@ -50,7 +50,7 @@ groupdocs_conversion_cloud/models/dwg_load_options.py,sha256=UwUdvCMveuoqkQkz_ub
|
|
50
50
|
groupdocs_conversion_cloud/models/dwt_load_options.py,sha256=5kPGv-OX54h0kqKAlKBNn1vwYpZmRQ6Ua7xM4q-XAlc,3697
|
51
51
|
groupdocs_conversion_cloud/models/dxf_load_options.py,sha256=3ITNP2EEpSUMRuRN2esfIPuDfIQqFvBAaUVNedgJZdk,3697
|
52
52
|
groupdocs_conversion_cloud/models/e_book_convert_options.py,sha256=at7h9cWwJpV79bxLVbbD-AZvEvxRi4GmJYewQPWr1a8,6720
|
53
|
-
groupdocs_conversion_cloud/models/email_load_options.py,sha256=
|
53
|
+
groupdocs_conversion_cloud/models/email_load_options.py,sha256=Or5T3DtxuWPBG-MmSwNjUPl4g8v4L5n-t_6t_KK0cLc,19503
|
54
54
|
groupdocs_conversion_cloud/models/emf_convert_options.py,sha256=qpdf_EmB69kG9Fy35w_3Okdl-tbkJR1zakBc_yvNlvA,3725
|
55
55
|
groupdocs_conversion_cloud/models/emf_load_options.py,sha256=YQYNt6tuhil27006W4HxjELEW72ebWNZLhHf8FaYvJA,3701
|
56
56
|
groupdocs_conversion_cloud/models/eml_load_options.py,sha256=xFI_lbfGCq5qnCfo8uZaw1GbGEczuqstYqNTD2xCdNI,3701
|
@@ -110,7 +110,7 @@ groupdocs_conversion_cloud/models/ots_load_options.py,sha256=rFcSHyIy4F6WLMpRrU9
|
|
110
110
|
groupdocs_conversion_cloud/models/ott_convert_options.py,sha256=8YQ3gGavpKvr2Ak616O_F2SRAHObh9EfYLEJ_NVDVH0,3743
|
111
111
|
groupdocs_conversion_cloud/models/ott_load_options.py,sha256=JZo5xtkOPp37_Sizxc_fHD0zW-q9M8fyo_-qDQnpkSo,3719
|
112
112
|
groupdocs_conversion_cloud/models/pdf_convert_options.py,sha256=1qoTH40ywHzTij0Mz7VLMGxgjcxt2jQbOEJV4crdulQ,40147
|
113
|
-
groupdocs_conversion_cloud/models/pdf_load_options.py,sha256=
|
113
|
+
groupdocs_conversion_cloud/models/pdf_load_options.py,sha256=a2LLitxIU4uZDxhMjQDAnb3Zc58z8I5_rlkOXepf6Ng,14647
|
114
114
|
groupdocs_conversion_cloud/models/pdl_convert_options.py,sha256=hQ7fcPnYPC10-YUSbpomG_6ibe8ygtynbO2reSE7NY4,3737
|
115
115
|
groupdocs_conversion_cloud/models/personal_storage_load_options.py,sha256=CNr9ij_uox-IOxVc2Wf38ykZTx2R1Nu-Ka6NqcZ7W3k,5342
|
116
116
|
groupdocs_conversion_cloud/models/plt_load_options.py,sha256=uGHerxZj4SKYfjLxDq7WvMA6Xveym942vTdSjtv3jw8,3697
|
@@ -139,7 +139,7 @@ groupdocs_conversion_cloud/models/psd_load_options.py,sha256=YHTXL1gJFBAozYotlUE
|
|
139
139
|
groupdocs_conversion_cloud/models/pst_load_options.py,sha256=cs9QARAItq6TALpK4eiR6g8_5hNmBd1U3-ndVbvChNY,3701
|
140
140
|
groupdocs_conversion_cloud/models/rtf_convert_options.py,sha256=6-Kg70jO4-pgi-mggj1_ejLoqupicOuIHDbTffby6mo,5311
|
141
141
|
groupdocs_conversion_cloud/models/spreadsheet_convert_options.py,sha256=pag93dL8sLTWeEJmQpe1IdRaFVHUa1AX9c07-Oi5x0I,6350
|
142
|
-
groupdocs_conversion_cloud/models/spreadsheet_load_options.py,sha256=
|
142
|
+
groupdocs_conversion_cloud/models/spreadsheet_load_options.py,sha256=BRyYjoCK4SaoOazibMuHGhACRhGxvxb0ZQSx8AcpjdI,28751
|
143
143
|
groupdocs_conversion_cloud/models/stl_load_options.py,sha256=ombRK52g_rUI2H2hOM1P2hY5HB-VoTDXcwepA-gnpfw,3697
|
144
144
|
groupdocs_conversion_cloud/models/storage_exist.py,sha256=gbCOed-GXTKPojm-HfcYCXVmngiNcYgzQ2EsJWqfmXo,4266
|
145
145
|
groupdocs_conversion_cloud/models/storage_file.py,sha256=3uc0vG1NZ0vlGlSUMRNhGVfittnwO4foQYsFLOsWb88,7163
|
@@ -168,7 +168,7 @@ groupdocs_conversion_cloud/models/vsx_load_options.py,sha256=caAueeGQPhFySFfWo3U
|
|
168
168
|
groupdocs_conversion_cloud/models/vtx_load_options.py,sha256=orJh9323WeXg8ywuxfbfdaJ3E0S3kmXRRXyVkyLxpww,3705
|
169
169
|
groupdocs_conversion_cloud/models/watermark_options.py,sha256=7YUEORND6CeENMFQbW0wOimxdnl9w2WvEftPpDFEdlA,16177
|
170
170
|
groupdocs_conversion_cloud/models/web_convert_options.py,sha256=XbbaD6jI05DKbHJAfTS7i4lN9xVNMczgrnToM1xgvcY,7842
|
171
|
-
groupdocs_conversion_cloud/models/web_load_options.py,sha256=
|
171
|
+
groupdocs_conversion_cloud/models/web_load_options.py,sha256=POpo4_nPoDAXOMECsO_OzDkFl4PljB03Lb7MqwGze-s,13079
|
172
172
|
groupdocs_conversion_cloud/models/webp_convert_options.py,sha256=KXrpiTO2ZvfLJV-qnG8No_3IDtBHolcQgilSi8-DVKo,4665
|
173
173
|
groupdocs_conversion_cloud/models/webp_load_options.py,sha256=z6Zt5WAmHr545wxjdH0zEGHM--tM3HnuG1G30aoBGCM,3707
|
174
174
|
groupdocs_conversion_cloud/models/wmf_convert_options.py,sha256=XI8-X21EII-Vh6zDxZGUivlbQ5Z8ofCOcClb8U_QJ2c,3725
|
@@ -190,7 +190,7 @@ groupdocs_conversion_cloud/models/xltm_load_options.py,sha256=it_vPEVd7bRtx5-zge
|
|
190
190
|
groupdocs_conversion_cloud/models/xltx_convert_options.py,sha256=4QQiXi3O_AMuQ7HwaN4FdaxEqiE_TFH6pE4tMEMYRvA,3743
|
191
191
|
groupdocs_conversion_cloud/models/xltx_load_options.py,sha256=HWTVvcweqGhKiDd3Thx_1cAA86Ih5XoRH0I20ZFhzw8,3719
|
192
192
|
groupdocs_conversion_cloud/models/xml_load_options.py,sha256=EnfTazRGPOfcN8g_i194XoPBb6AWQat2MdHfLhrdxw8,4753
|
193
|
-
groupdocs_conversion_cloud-25.
|
193
|
+
groupdocs_conversion_cloud-25.8.dist-info/licenses/LICENSE,sha256=Q7-vrpo6A1xjL5SlSuhiE88PxHSP9tF_RA9s5IlfznE,1105
|
194
194
|
test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
195
|
test/test_context.py,sha256=70m6itd5MUYewV3l1q3i0tqcuubCrSyhZqR2SjO9hGQ,4784
|
196
196
|
test/test_file.py,sha256=ydnQR2vyZMx7hRTw9BVWowHll7ICDSXz530trUf1bvQ,2435
|
@@ -202,7 +202,7 @@ test/apis/test_file_api.py,sha256=N5eUSmgWobu7WrTaLsidULB-zMgsN3EcxsJXlUpeYIw,37
|
|
202
202
|
test/apis/test_folder_api.py,sha256=aAbYP6d30YUOF0Rx-y7U39vG65rh03GSukjQuv9BnLc,3140
|
203
203
|
test/apis/test_info_api.py,sha256=oLs7EbrAeVJeDmfQYvtQK4mKQNFowrkGDdL7GI_M4Cw,2962
|
204
204
|
test/apis/test_storage_api.py,sha256=AaiLE3XYTto6zh182YvKVHlfpR7dcsiBqnu5BDhmSEY,2725
|
205
|
-
groupdocs_conversion_cloud-25.
|
206
|
-
groupdocs_conversion_cloud-25.
|
207
|
-
groupdocs_conversion_cloud-25.
|
208
|
-
groupdocs_conversion_cloud-25.
|
205
|
+
groupdocs_conversion_cloud-25.8.dist-info/METADATA,sha256=5xL-4UzhZ8wzxgL_h5xOJujO_m1yZ3ohxZkylOx0wBM,5175
|
206
|
+
groupdocs_conversion_cloud-25.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
207
|
+
groupdocs_conversion_cloud-25.8.dist-info/top_level.txt,sha256=QSw6h5GXn7SFkzZ5fIiGyHwma3Buwqb32LfNpDAu1rI,32
|
208
|
+
groupdocs_conversion_cloud-25.8.dist-info/RECORD,,
|
@@ -1,94 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: groupdocs-conversion-cloud
|
3
|
-
Version: 25.6
|
4
|
-
Summary: GroupDocs.Conversion Cloud Python SDK
|
5
|
-
Home-page: http://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-python
|
6
|
-
Author: GroupDocs
|
7
|
-
Author-email: support@groupdocs.cloud
|
8
|
-
Keywords: groupdocs,conversion,cloud,python,sdk
|
9
|
-
Classifier: Development Status :: 5 - Production/Stable
|
10
|
-
Classifier: Intended Audience :: Developers
|
11
|
-
Classifier: Topic :: Software Development :: Libraries
|
12
|
-
Classifier: License :: OSI Approved :: MIT License
|
13
|
-
Classifier: Programming Language :: Python :: 2.7
|
14
|
-
Classifier: Programming Language :: Python :: 3.4
|
15
|
-
Classifier: Programming Language :: Python :: 3.5
|
16
|
-
Classifier: Programming Language :: Python :: 3.6
|
17
|
-
Classifier: Programming Language :: Python :: 3.7
|
18
|
-
Description-Content-Type: text/markdown
|
19
|
-
License-File: LICENSE
|
20
|
-
Requires-Dist: urllib3>=1.15
|
21
|
-
Requires-Dist: six>=1.10
|
22
|
-
Requires-Dist: certifi
|
23
|
-
Requires-Dist: python-dateutil
|
24
|
-
Dynamic: author
|
25
|
-
Dynamic: author-email
|
26
|
-
Dynamic: classifier
|
27
|
-
Dynamic: description
|
28
|
-
Dynamic: description-content-type
|
29
|
-
Dynamic: home-page
|
30
|
-
Dynamic: keywords
|
31
|
-
Dynamic: license-file
|
32
|
-
Dynamic: requires-dist
|
33
|
-
Dynamic: summary
|
34
|
-
|
35
|
-
# GroupDocs.Conversion Cloud Python SDK
|
36
|
-
Python package for communicating with the GroupDocs.Conversion Cloud API
|
37
|
-
|
38
|
-
## Requirements
|
39
|
-
|
40
|
-
Python 2.7 or 3.4+
|
41
|
-
|
42
|
-
## Installation
|
43
|
-
Install `groupdocs-conversion-cloud` with [PIP](https://pypi.org/project/pip/) from [PyPI](https://pypi.org/) by:
|
44
|
-
|
45
|
-
```sh
|
46
|
-
pip install groupdocs-conversion-cloud
|
47
|
-
```
|
48
|
-
|
49
|
-
Or clone repository and install it via [Setuptools](http://pypi.python.org/pypi/setuptools):
|
50
|
-
|
51
|
-
```sh
|
52
|
-
python setup.py install
|
53
|
-
```
|
54
|
-
|
55
|
-
## Getting Started
|
56
|
-
|
57
|
-
Please follow the [installation procedure](#installation) and then run following:
|
58
|
-
|
59
|
-
```python
|
60
|
-
# Import module
|
61
|
-
import groupdocs_conversion_cloud
|
62
|
-
|
63
|
-
# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
|
64
|
-
app_sid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
|
65
|
-
app_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
|
66
|
-
|
67
|
-
# Create instance of the API
|
68
|
-
api = groupdocs_conversion_cloud.InfoApi.from_keys(app_sid, app_key)
|
69
|
-
|
70
|
-
try:
|
71
|
-
# Retrieve supported conversion types
|
72
|
-
request = groupdocs_conversion_cloud.GetSupportedConversionTypesRequest()
|
73
|
-
response = api.get_supported_conversion_types(request)
|
74
|
-
|
75
|
-
# Print out supported conversion types
|
76
|
-
print("Supported conversion types:")
|
77
|
-
for format in response:
|
78
|
-
print('{0} to [{1}]'.format(format.source_format, ', '.join(format.target_formats)))
|
79
|
-
except groupdocs_conversion_cloud.ApiException as e:
|
80
|
-
print("Exception when calling get_supported_conversion_types: {0}".format(e.message))
|
81
|
-
```
|
82
|
-
|
83
|
-
## Licensing
|
84
|
-
GroupDocs.Conversion Cloud Python SDK licensed under [MIT License](http://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-python/LICENSE).
|
85
|
-
|
86
|
-
## Resources
|
87
|
-
+ [**Website**](https://www.groupdocs.cloud)
|
88
|
-
+ [**Product Home**](https://products.groupdocs.cloud/conversion)
|
89
|
-
+ [**Documentation**](https://docs.groupdocs.cloud/display/conversioncloud/Home)
|
90
|
-
+ [**Free Support Forum**](https://forum.groupdocs.cloud/c/conversion)
|
91
|
-
+ [**Blog**](https://blog.groupdocs.cloud/category/conversion)
|
92
|
-
|
93
|
-
## Contact Us
|
94
|
-
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/conversion).
|
{groupdocs_conversion_cloud-25.6.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|