문서 편집기 REST API는 외부 애플리케이션을 설치할 필요 없이 WYSIWYG HTML 편집기를 사용하여 널리 사용되는 문서 형식을 편집합니다.
무료 평가판 시작GroupDocs.Editor Python용 Cloud SDK를 사용하면 개발자가 GroupDocs.Editor Cloud REST API와 통합하여 Python 기반 애플리케이션 내에 문서 편집 기능을 더 쉽게 통합할 수 있습니다. GroupDocs.Editor Cloud API를 사용하여 프런트 엔드 HTML 편집기에서 지원되는 문서 유형(Microsoft Word, Excel 스프레드시트, PowerPoint, TXT, HTML, XML)을 간단히 가져와서 고급 문서 편집 작업을 수행하고 편집 후 원본 문서 형식으로 다시 저장하세요. 문서.
GroupDocs.Editor Python용 Cloud SDK는 낮은 수준의 요청을 관리하고 응답을 처리하여 귀중한 개발 시간을 절약하는 GroupDocs.Editor Cloud REST API 위에 계층으로 구축되었습니다. 개발자는 프로젝트에서 필요한 경우에만 특정 코드를 작성하는 데 집중할 수 있습니다.
클라우드에서 파일에 주석을 달기 위한 소스 코드를 찾고 있다면 GitHub의 GroupDocs.Editor Python용 Cloud SDK를 확인하세요. .
아무런 제한 없이 GroupDocs.Editor를 사용해 보세요 로우 코드 Python API를 사용할 수 있습니다.
GroupDocs.Editor Cloud는 서비스를 자체 호스팅하는 데 사용할 수 있는 Docker 이미지로도 제공됩니다. 또는 현재 REST API를 구동하는 GroupDocs.Editor 고급 코드 API를 사용하여 자체 서비스를 구축할 수도 있습니다.
//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)