如何使用IronPdfEngine

This article was translated from English: Does it need improvement?
Translated
View the article in English

IronPdfEngine是一個精心製作的gRPC伺服器,用於監管一系列IronPDF任務,包括創建、編輯和閱讀PDF文件。

PDF的Python函式庫

安裝與 pip

 pip install ironpdf
Python 模組

下載 模組

立即下載

手動安裝到您的項目中

IronPdf Python 和 IronPdfEngine

IronPdf Python 不需要 IronPdfEngine 即可運行。IronPdfEngine 只是使用 IronPdf 的一種可選方式。默認情況下,IronPdf for Python 不會使用 IronPdfEngine。

請注意
每個版本的 IronPDF for Python 都需要特定版本的 IronPdfEngine。不支持跨版本。對於 IronPDF for Python 所需的 IronPdfEngine 版本將始終匹配。例如,IronPDF 2024.2.2 將使用 IronPdfEngine 2024.2.2

IronPdf Python 與遠端 IronPdfEngine

假設 IronPdfEngine 遠端運行在 123.456.7.8:33350

請注意
若要遠端執行 IronPdfEngine,請參考如何拉取並執行 IronPdfEngine.

使用 pip 安裝 IronPdf:

pip install ironpdf

安裝 IronPDF 後,您只需要告訴 IronPDF IronPdfEngine 的位置 (請確保地址可訪問,未被防火牆阻擋). 使用 IronPdfConnectionConfiguration 類別來配置連接設定。將此代碼添加到應用程式的初始階段 (或在調用任何 IronPDF 方法之前).

Installation.ConnectToIronPdfHost(
    IronPdf.GrpcLayer.IronPdfConnectionConfiguration.RemoteServer("123.456.7.8:33350"));
PYTHON

就是這麼簡單! 在此之後,您的應用程式將連接到 Remote IronPdfEngine!