如何使用 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 远程运行

[{i:(要远程运行 IronPdfEngine,请参阅"如何拉动和运行 IronPdfEngine.")}]

使用 pip 安装 IronPdf:

pip install ironpdf

安装 IronPdf 后,你只需告诉 IronPdf IronPdfEngine 的位置 (请确保可以访问该地址,而不是被防火墙阻挡).使用 IronPdfConnectionConfiguration 类配置连接设置。在应用程序的初始阶段添加以下代码 (或在调用任何 IronPdf 方法之前).

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

就这么简单! 之后,您的应用程序将与远程 IronPdfEngine 连接。!