我们正在严格按照计划为不同平台提供 GroupDocs.Viewer Cloud SDK,在这方面,我们很高兴通知您另一个 SDK 版本,[GroupDocs.Viewer Cloud SDK for Python](https://products.groupdocs .云/查看器)。此 SDK 提供了一个完整的解决方案,用于在 Python 中使用 GroupDocs.Viewer Cloud API 以在云中无缝呈现受支持的文档。 GroupDocs.Viewer Cloud 是 REST API,支持多种文档格式,如 PDF、Words、电子表格、演示文稿、图像、CAD 等。它允许以 HTML 或图像形式呈现整个文档、逐页或自定义页面范围的受支持文档。它提供了一些其他令人兴奋的功能,例如水印、文档转换(旋转、重新排序和字体资源)。请单击 此处 了解更多详细信息。GroupDocs.Viewer Cloud SDK for Python 的开发旨在帮助您将所有这些功能集成到您的应用程序中。基于Python的应用程序没有任何麻烦。

适用于 Python 的 GroupDocs.Viewer Cloud SDK - 简介

GroupDocs.Viewer Cloud SDK for Python 是为其 Python 开发人员推出的。它是 REST API 的包装器,允许您在基于 Python 的平台中快速轻松地使用 GroupDocs.Viewer Cloud REST API,获得强类型和 IDE 亮点的所有优势。该发行版可在 GitHub 上获取。

适用于 Python 的 GroupDocs.Viewer Cloud SDK - 示例

还提供了GroupDocs.Viewer Cloud SDK for Python示例来指导开发人员熟悉SDK及其使用方法,以使用GroupDocs.Viewer Cloud REST API调用资源和操作。请参见以下类别的SDK示例。

InstallationGroupDocs.Viewer

Cloud SDK for Python 也可以作为 PyPI(Python 包索引) 中的发布包提供。您可以绕过源代码存储库并通过从 PyPI 安装直接依赖已发布的包:

pip install groupdocs-viewer-cloud

数据

为了渲染任何支持的文件,您首先需要将它们上传到 GroupDocs 云存储或第 3 方云存储以使用 GroupDocs.Viewer Cloud API。

入门

在项目中完成包和依赖项的安装后,您可以轻松地在基于 Python 的代码中调用 API 来使用 API 功能。以下是使用 Python SDK 演示 GroupDocs.Vewer Cloud API 工作原理的示例代码。请按照安装过程操作,然后运行以下Python代码:

# Import module
import groupdocs_viewer_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_viewer_cloud.ViewerApi.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_viewer_cloud.ApiException as e:
    print("Exception when calling get_supported_file_formats: {0}".format(e.message))

GroupDocs.Viewer 云资源

以下是完成任务可能需要的一些有用资源的链接。

立即开始免费试用

立即开始免费试用 – 您只需注册 GroupDocs 云服务。注册后,您就可以尝试 GroupDocs Cloud 提供的强大文件处理功能。