groupdocs-conversion-cloud 25.5__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/presentation_load_options.py +6 -6
- groupdocs_conversion_cloud/models/spreadsheet_load_options.py +492 -126
- groupdocs_conversion_cloud/models/web_load_options.py +158 -3
- groupdocs_conversion_cloud/models/word_processing_load_options.py +662 -65
- groupdocs_conversion_cloud-25.8.dist-info/METADATA +132 -0
- {groupdocs_conversion_cloud-25.5.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/RECORD +14 -14
- {groupdocs_conversion_cloud-25.5.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/WHEEL +1 -1
- groupdocs_conversion_cloud-25.5.dist-info/METADATA +0 -94
- {groupdocs_conversion_cloud-25.5.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/licenses/LICENSE +0 -0
- {groupdocs_conversion_cloud-25.5.dist-info → groupdocs_conversion_cloud-25.8.dist-info}/top_level.txt +0 -0
@@ -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.5.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
|
@@ -133,13 +133,13 @@ groupdocs_conversion_cloud/models/pptm_load_options.py,sha256=cJgRG7FMWlDkklAHuh
|
|
133
133
|
groupdocs_conversion_cloud/models/pptx_convert_options.py,sha256=ifF_5acH2UFZwM0gzZiGTwAvZ8R040_pv8Us9antPg4,3745
|
134
134
|
groupdocs_conversion_cloud/models/pptx_load_options.py,sha256=UMkekMAjYbzNK4RkeAgTSXuGp0I5pjZgO1k4ZzGgHgQ,3721
|
135
135
|
groupdocs_conversion_cloud/models/presentation_convert_options.py,sha256=gGaAZzRAWzqfCM_kr3lRIoY_bnykEmWuTztkls7OTLc,5867
|
136
|
-
groupdocs_conversion_cloud/models/presentation_load_options.py,sha256=
|
136
|
+
groupdocs_conversion_cloud/models/presentation_load_options.py,sha256=Yeo1_KkxV9QtG2arG7LGdabywOlbCiFGY3QhE8_uPpc,18385
|
137
137
|
groupdocs_conversion_cloud/models/psd_convert_options.py,sha256=WBXF0t2sgoWPvERYSlbxK330FwwIvUXzSRRdqnLwTDw,9555
|
138
138
|
groupdocs_conversion_cloud/models/psd_load_options.py,sha256=YHTXL1gJFBAozYotlUEIXWFfRAlezo2WTlxHH0FIGZo,3701
|
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,13 +168,13 @@ 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
|
175
175
|
groupdocs_conversion_cloud/models/wmf_load_options.py,sha256=vDKZW_km1fkZr35B3u9NW4MPmE2eq4SfvXEGqN7YVyU,3701
|
176
176
|
groupdocs_conversion_cloud/models/word_processing_convert_options.py,sha256=QI-lxLcMJsYoKW3ASlHHbcHAdItejx2D7n0br1IQ-b0,12929
|
177
|
-
groupdocs_conversion_cloud/models/word_processing_load_options.py,sha256=
|
177
|
+
groupdocs_conversion_cloud/models/word_processing_load_options.py,sha256=REyQh6yBupwnwDeILbV864G70ApXhYYBs7bIVT0w31c,38966
|
178
178
|
groupdocs_conversion_cloud/models/xls2003_convert_options.py,sha256=UQkBJhXXNatAwVp1_1I-GyQR0trEVJ-QUb5kXj8pkWg,3761
|
179
179
|
groupdocs_conversion_cloud/models/xls2003_load_options.py,sha256=L-VFiBDh8it5CuMP114jsCX5rYxzwO7FYQgfy5IbdVE,3737
|
180
180
|
groupdocs_conversion_cloud/models/xls_convert_options.py,sha256=kvNmfSiRAA66uzUw80463dGXvI82GX5VHm20z_sI4Rk,3737
|
@@ -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.5
|
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).
|
File without changes
|
File without changes
|