borbEasy Examples

Read, write, and manipulate PDF documents in pure Python

Getting started with borb

Installation and basic usage of borb.

python
# Install: pip install borb
import borb

# Basic borb usage
print(f"Using borb")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: borb)

borb is a third-party package. Read, write, and manipulate PDF documents in pure Python. Install with: pip install borb

Common borb operations

Frequently used features of borb.

python
# Install: pip install borb
import borb

# Common borb patterns
print(f"borb version: {borb.__version__}")

These are the most commonly used features of borb in everyday development.

Want to try these examples interactively?

Open Easy Playground