groupdocs annotation cloud python
v23.12
Пакет Python для общения с API GroupDocs.annotation Cloud API
Python 2,7 или 3,4+
Установите groupdocs-annotation-cloud с PIP от PYPI BY:
pip install groupdocs-annotation-cloudИли репозиторий клона и установите через Setuptools:
python setup.py installПожалуйста, следуйте процедуре установки, а затем запустите следующее:
# Import module
import groupdocs_annotation_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_annotation_cloud . InfoApi . from_keys ( app_sid , app_key )
try :
# Retrieve supported file-formats
response = api . get_supported_file_formats ()
# Print out supported file-formats
print ( "Supported file-formats:" )
for format in response . formats :
print ( '{0} ({1})' . format ( format . file_format , format . extension ))
except groupdocs_annotation_cloud . ApiException as e :
print ( "Exception when calling get_supported_file_formats: {0}" . format ( e . message ))GroupDocs.annotation Cloud Python SDK Лицензирован по лицензии MIT.
+ Веб -сайт + продукт дома + документация + Форум бесплатной поддержки + блог
Ваш отзыв очень важен для нас. Пожалуйста, не стесняйтесь обращаться к нам, используя наши форумы поддержки.