groupdocs.annotation云python sdk

groupdocs-annotation-cloud的Python项目详细描述


groupdocs.annotation云python sdk

用于与groupdocs.annotation cloud api通信的python包

要求

Python 2.7或3.4+

安装

使用PIPPyPI安装groupdocs-annotation-cloud,安装方式:

pip install groupdocs-annotation-cloud

或者克隆存储库并通过Setuptools安装:

python setup.py install

开始

请按照installation procedure操作,然后运行以下命令:

# Import moduleimportgroupdocs_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 APIapi=groupdocs_annotation_cloud.InfoApi.from_keys(app_sid,app_key)try:# Retrieve supported file-formatsresponse=api.get_supported_file_formats()# Print out supported file-formatsprint("Supported file-formats:")forformatinresponse.formats:print('{0} ({1})'.format(format.file_format,format.extension))exceptgroupdocs_annotation_cloud.ApiExceptionase:print("Exception when calling get_supported_file_formats: {0}".format(e.message))

许可

GroupDocs.Annotation Cloud Python SDK许可于MIT License

资源

联系我们

你的反馈对我们很重要请随时使用我们的Support Forums与我们联系

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java Grid loadmask(true)在gxt中不起作用   java将字符串索引转换为整数   为什么Java泛型适用于基元数组,但不适用于基元数组?   java如何让Azure应用程序服务Tomcat将所有80/443流量转发到运行在同一应用程序服务上的JBoss   具有多个值的java转换映射到树?   java如何设置SQL server连接URL?   java设置了多个相互独立的JFrame   安全性在JAVA中如何使用RSAPrivateKey的密码短语?   java不能使用比Apache Velocity中更大的条件   如何在Java中打印字符串的所有排列   停止Android Studio自动导入java。sql。日期   对象简单计算器程序java   java如何在安卓中使用“&”符号作为字符串?   java Connect,为我的安卓应用程序从REST API发布和获取数据