Python package for communicating with the GroupDocs.Conversion Cloud API
Python 2.7 or 3.4+
Install groupdocs-conversion-cloud
with PIP from PyPI by:
pip install groupdocs-conversion-cloud
Or clone repository and install it via Setuptools:
python setup.py install
Please follow the installation procedure and then run following:
# Import module
import groupdocs_conversion_cloud
# Get your app_sid and app_key at https://dashboard.groupdocs.cloud (free registration is required).
app_sid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
app_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# Create instance of the API
api = groupdocs_conversion_cloud.InfoApi.from_keys(app_sid, app_key)
try:
# Retrieve supported conversion types
request = groupdocs_conversion_cloud.GetSupportedConversionTypesRequest()
response = api.get_supported_conversion_types(request)
# Print out supported conversion types
print("Supported conversion types:")
for format in response:
print('{0} to [{1}]'.format(format.source_format, ', '.join(format.target_formats)))
except groupdocs_conversion_cloud.ApiException as e:
print("Exception when calling get_supported_conversion_types: {0}".format(e.message))
GroupDocs.Conversion Cloud Python SDK licensed under MIT License.
Your feedback is very important to us. Please feel free to contact us using our Support Forums.