Python 文档编辑器 REST API 和 SDK

文档编辑器 REST API 使用任何所见即所得的 HTML 编辑器编辑流行的文档格式,而无需安装外部应用程序。

  • GroupDocs.Editor for cURL
  • GroupDocs.Editor for .NET
  • GroupDocs.Editor for Java
  • GroupDocs.Editor for PHP
  • GroupDocs.Editor for Ruby
  • GroupDocs.Editor for Node.js
  • GroupDocs.Editor for Android
开始免费试用

GroupDocs.Editor Cloud SDK for Python 通过与 GroupDocs.Editor Cloud REST API 集成,使开发人员可以更轻松地将文档编辑功能整合到基于 Python 的应用程序中。通过使用 GroupDocs.Editor Cloud API 在任何前端 HTML 编辑器中简单地获取支持的文档类型(Microsoft Word、Excel 电子表格、PowerPoint、TXT、HTML、XML)来执行高级文档编辑操作,并在编辑后将其保存回原始文档格式文件。

GroupDocs.Editor Cloud SDK for Python 构建为 GroupDocs.Editor Cloud REST API 之上的一个层,通过管理低级请求和处理响应来节省宝贵的开发时间。开发人员可以专注于仅根据项目需要编写特定代码。

经常问的问题

我想创建自己的 Python 应用程序来编辑文档?

如果您正在寻找用于在云端注释文件的源代码,请查看 GroupDocs.Editor Cloud SDK for Python at GitHub .

我可以在 Python 上免费试用 GroupDocs.Editor REST API 吗?

您可以试用 GroupDocs.Editor 低代码 Python API,没有任何限制。

我不想将我的机密文件上传到任何地方进行编辑?我有哪些选择?

GroupDocs.Editor Cloud 也可用作 Docker 镜像,可用于自托管 服务。或者,您可以使用目前驱动我们的 REST API 的 GroupDocs.Editor 高代码 API 构建您自己的服务。

高级文档编辑器 REST API 功能

在任何所见即所得编辑器中轻松集成

整体编辑 Word 文档或定义页面范围

支持多标签电子表格编辑

优化大型 CSV 或 TSV 文件的内存使用

提取文档信息(类型、大小、页数等)

可与任何语言或平台一起使用的 Cloud REST API

使用文字处理文档 - Python

  //Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
  editApi = groupdocs_editor_cloud.EditApi.from_keys(app_sid, app_key)
  fileApi = groupdocs_editor_cloud.FileApi.from_keys(app_sid, app_key)
  
  # The document already uploaded into the storage.
  # Load it into editable state
  fileInfo = groupdocs_editor_cloud.FileInfo("WordProcessing/password-protected.docx", None, None, "password")
  loadOptions = groupdocs_editor_cloud.WordProcessingLoadOptions()
  loadOptions.file_info = fileInfo
  loadOptions.output_path = "output"
  loadResult = editApi.load(groupdocs_editor_cloud.LoadRequest(loadOptions))        
  
  # Download html document
  htmlFile = fileApi.download_file(groupdocs_editor_cloud.DownloadFileRequest(loadResult.html_path))
  html = ""       
  with open(htmlFile, 'r') as file:
      html = file.read()
  
  # Edit something...    
  html = html.replace("Sample test text", "Hello world")
  
  # Upload html back to storage
  with open(htmlFile, 'w') as file:
      file.write(html)
  
  fileApi.upload_file(groupdocs_editor_cloud.UploadFileRequest(loadResult.html_path, htmlFile))
  
  # Save html back to docx
  saveOptions = groupdocs_editor_cloud.WordProcessingSaveOptions()
  saveOptions.file_info = fileInfo
  saveOptions.output_path = "output/edited.docx"
  saveOptions.html_path = loadResult.html_path
  saveOptions.resources_path = loadResult.resources_path
  saveResult = editApi.save(groupdocs_editor_cloud.SaveRequest(saveOptions))

  # Done
  print("Document edited: " + saveResult.path)

支持和学习资源

GroupDocs.Editor 为其他流行的开发环境提供文档查看 API

  中文