How to Use IronPdfEngine
IronPdfEngine is a gRPC server crafted to oversee a range of IronPDF tasks, encompassing the creation, editing, and reading of PDF documents.
How to Use IronPdfEngine as a Remote Server
- Install the Python library to utilize IronPdfEngine
- Install the IronPdf package from PyPi
- Utilize the IronPdfConnectionConfiguration class to configure the connection settings
- Use the IronPdfEngine to render HTML to PDF with an identical to Chrome renderer
Install with pip
pip install ironpdf
Download Module
Manually install into your project
IronPdf Python and IronPdfEngine
IronPdf Python does not require IronPdfEngine to run. IronPdfEngine is just an optional ways to use IronPdf. By default IronPdf for Python will not use IronPdfEngine.
Please note
IronPdf Python with Remote IronPdfEngine
Assume that IronPdfEngine run remotely at 123.456.7.8:33350
Please note
Install IronPdf using pip:
pip install ironpdf
After installing IronPdf, you just need to tell IronPdf where IronPdfEngine is (please make sure that address is accessible, not blocked by firewall). Use the IronPdfConnectionConfiguration class to configure the connection settings. Add this code at the initial stage of your application (or just before calling any IronPdf method).
Installation.ConnectToIronPdfHost(
IronPdf.GrpcLayer.IronPdfConnectionConfiguration.RemoteServer("123.456.7.8:33350"));
Simple as that! After this your application will be conected Remote IronPdfEngine!