petlEasy Examples

ETL: extract, transform, load tabular data

Getting started with petl

Installation and basic usage of petl.

python
# Install: pip install petl
import petl

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

petl is a third-party package. ETL: extract, transform, load tabular data. Install with: pip install petl

Common petl operations

Frequently used features of petl.

python
# Install: pip install petl
import petl

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

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

Want to try these examples interactively?

Open Easy Playground