使用我們的 REST API,Python 開發人員可以輕鬆創建 DOC 文檔。要製作 DOC 文檔格式的文件,您需要使用我們的 Python Cloud SDK 執行幾個步驟:
由於一個空的 DOC 文檔應該正式包含一個段落,因此當您以編程方式創建 DOC 文件時,您將獲得這樣一個基本結構。
請注意,可以立即將內容添加到新創建的 DOC 文檔中。因此,您將獲得的不僅僅是一個空的 DOC 文件,而是一個包含所需內容的文檔。有關如何修改 DOC 文檔的更多信息,請參閱 'Edit DOC Document' 頁面。
如前所述,我們的 Python Cloud SDK 允許您以編程方式創建 DOC 文檔。您可以嘗試我們強大的功能並評估如何使用以下 Python 示例創建 DOC 文件:
import asposewordscloud
words_api = WordsApi(client_id = '####-####-####-####-####', client_secret = '##################')
file_name= 'Output.doc'
create_document_request = asposewordscloud.models.requests.CreateDocumentRequest(
file_name=file_name)
words_api.create_document(create_document_request)
download_document_request = asposewordscloud.models.requests.DownloadFileRequest(path=file_name)
words_api.download_file(download_document_request)
使用 PyPi 存儲庫安裝 Aspose.Words Cloud SDK for Python 。運行 pip install aspose-words-cloud 安裝 SDK,然後通過 import asposewordscloud 導入包。作為替代方案,您可以從 GitHub 手動克隆 Aspose.Words Cloud SDK for Python 源代碼並在您的項目中使用它。請按照這些 Instructions 快速獲取必要的安全憑證並訪問我們的 REST API。
請參閱 Repository Documentation 以查看詳細信息。