Skip to main content

Extract PostgreSQL records with all related data via FK relationships

Project description

PgSlice

PgSlice Logo

Bump only what you need

PyPI Docker Image Version Codecov PyPI - Wheel PyPI - Python Version PyPI - License

Python CLI tool for extracting PostgreSQL records with all related data via foreign key relationships.

PgSlice Example

PgSlice Example Wide

Overview

pgslice extracts a specific database record and ALL its related records by following foreign key relationships bidirectionally. Perfect for:

  • Reproducing production bugs locally with real data
  • Creating partial database dumps for specific users/entities
  • Testing with realistic data subsets
  • Debugging issues that only occur with specific data states

Extract only what you need while maintaining referential integrity.

Features

  • CLI-first design: Dumps always saved to files with visible progress (matches REPL behavior)
  • Bidirectional FK traversal: Follows relationships in both directions (forward and reverse)
  • Circular relationship handling: Prevents infinite loops with visited tracking
  • Multiple records: Extract multiple records in one operation
  • Timeframe filtering: Filter specific tables by date ranges
  • PK remapping: Auto-remaps auto-generated primary keys for clean imports
  • DDL generation: Optionally include CREATE DATABASE/SCHEMA/TABLE statements for self-contained dumps
  • Progress bar: Visual progress indicator for dump operations
  • Schema caching: SQLite-based caching for improved performance
  • Type-safe: Full type hints with mypy strict mode
  • Secure: SQL injection prevention, secure password handling

Installation

From PyPI (Recommended)

# Install with pipx (isolated environment, recommended)
pipx install pgslice

# Or with pip
pip install pgslice

# Or with uv
uv tool install pgslice

# check instalation
pgslice --version
# or
uv run pgslice --version

From Docker Hub

# Pull the image
docker pull edraobdu/pgslice:latest

# Check instalation
docker run --rm -it \
  -v $(pwd)/dumps:/home/pgslice/.pgslice/dumps \
  -e PGPASSWORD=your_password \
  edraobdu/pgslice:latest \
  pgslice --version

# Pin to specific version
docker pull edraobdu/pgslice:0.1.1

# Use specific platform
docker pull --platform linux/amd64 edraobdu/pgslice:latest

Connecting to Localhost Database

When your PostgreSQL database runs on your host machine, use --network host (Linux) or host.docker.internal (Mac/Windows):

# Linux: Use host networking
docker run --rm -it \
  --network host \
  -v $(pwd)/dumps:/home/pgslice/.pgslice/dumps \
  -e PGPASSWORD=your_password \
  edraobdu/pgslice:latest \
  pgslice --host localhost --database your_db --dump users --pks 42

# Mac/Windows: Use special hostname
docker run --rm -it \
  -v $(pwd)/dumps:/home/pgslice/.pgslice/dumps \
  -e PGPASSWORD=your_password \
  edraobdu/pgslice:latest \
  pgslice --host host.docker.internal --database your_db --dump users --pks 42

See DOCKER_USAGE.md for more connection options.

Docker Volume Permissions

The pgslice container runs as user pgslice (UID 1000) for security. When mounting local directories as volumes, you may encounter permission issues.

The entrypoint script automatically fixes permissions on mounted volumes. However, if you still encounter issues:

# Fix permissions on host before mounting
sudo chown -R 1000:1000 ./dumps

# Then run normally
docker run --rm -it \
  -v $(pwd)/dumps:/home/pgslice/.pgslice/dumps \
  edraobdu/pgslice:latest \
  pgslice --host your.db.host --database your_db --dump users --pks 42

Alternative: Run container as your user:

docker run --rm -it \
  -v $(pwd)/dumps:/home/pgslice/.pgslice/dumps \
  --user $(id -u):$(id -g) \
  edraobdu/pgslice:latest \
  pgslice --host your.db.host --database your_db --dump users --pks 42

From Source (Development)

See DEVELOPMENT.md for detailed development setup instructions.

Quick Start

CLI Mode

Dumps are always saved to files with visible progress indicators (helpful for large datasets):

# Basic dump (auto-generates filename like: public_users_42_TIMESTAMP.sql)
PGPASSWORD=xxx pgslice --host localhost --database mydb --dump users --pks 42

# Multiple records
PGPASSWORD=xxx pgslice --host localhost --database mydb --dump users --pks 1,2,3

# Specify output file path
pgslice --host localhost --database mydb --dump users --pks 42 --output user_42.sql

# Dump by timeframe (instead of PKs) - filters main table by date range
pgslice --host localhost --database mydb --dump orders \
    --timeframe "created_at:2024-01-01:2024-12-31" --output orders_2024.sql

# Wide mode: follow all relationships including self-referencing FKs
# Be cautious - this can result in larger datasets
pgslice --host localhost --database mydb --dump customer --pks 42 --wide

# Keep original primary keys (no remapping)
pgslice --host localhost --database mydb --dump film --pks 1 --keep-pks

# Generate self-contained SQL with DDL statements
# Includes CREATE DATABASE/SCHEMA/TABLE statements
pgslice --host localhost --database mydb --dump film --pks 1 --create-schema

# Apply truncate filter to limit related tables by date range
pgslice --host localhost --database mydb --dump customer --pks 42 \
    --truncate "rental:rental_date:2024-01-01:2024-12-31"

# Enable debug logging (writes to stderr)
pgslice --host localhost --database mydb --dump users --pks 42 \
    --log-level DEBUG 2>debug.log

Schema Exploration

# List all tables in the schema
pgslice --host localhost --database mydb --tables

# Describe table structure and relationships
pgslice --host localhost --database mydb --describe users

Interactive REPL

# Start interactive REPL
PGPASSWORD=mypassword pgslice --host localhost --database mydb --user myuser --port 5432

pgslice> dump film 1 --output film_1.sql
pgslice> tables
pgslice> describe film

Configuration

Key environment variables (see .env.example for full reference):

Variable Description Default
DB_HOST Database host localhost
DB_PORT Database port 5432
DB_NAME Database name -
DB_USER Database user -
DB_SCHEMA Schema to use public
PGPASSWORD Database password (env var only) -
CACHE_ENABLED Enable schema caching true
CACHE_TTL_HOURS Cache time-to-live 24
LOG_LEVEL Logging level (disabled by default unless specified) disabled
PGSLICE_OUTPUT_DIR Output directory ~/.pgslice/dumps

Security

  • Parameterized queries: All SQL uses proper parameterization
  • SQL injection prevention: Identifier validation
  • Secure passwords: Never logged or stored
  • Read-only enforcement: Safe for production databases

Contributing

Contributions are welcome! See DEVELOPMENT.md for comprehensive development documentation including:

  • Local development setup
  • Code quality standards and testing guidelines
  • Version management and publishing workflow
  • Architecture and design patterns

Quick start for contributors:

make setup        # One-time setup (installs dependencies, hooks)
make test         # Run all tests
git commit        # Pre-commit hooks run automatically (linting, formatting, type-checking)

For troubleshooting common development issues, see the Troubleshooting section in DEVELOPMENT.md.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pgslice-0.2.2.tar.gz (56.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pgslice-0.2.2-py3-none-any.whl (61.6 kB view details)

Uploaded Python 3

File details

Details for the file pgslice-0.2.2.tar.gz.

File metadata

  • Download URL: pgslice-0.2.2.tar.gz
  • Upload date:
  • Size: 56.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.20 {"installer":{"name":"uv","version":"0.9.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pgslice-0.2.2.tar.gz
Algorithm Hash digest
SHA256 c4bc6ea870724a6b569c03fd12de167e59ba705603bf539e05f3229058e88a2d
MD5 a92707701a7ee5415f86dbf965a877f8
BLAKE2b-256 3e37a3a2c2a4aa6cf837e42cc0717029085969ad27688f5f058bf8b2db6ca3eb

See more details on using hashes here.

File details

Details for the file pgslice-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: pgslice-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.20 {"installer":{"name":"uv","version":"0.9.20","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pgslice-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3ca8882c7932177bed093a59c85b34096040fd3576feaa52d20051e26e487808
MD5 90703216b536df6d830edd268da0ffd1
BLAKE2b-256 2020c58f2535ec73d8f211683c86366d236aa78ad8b6ed7276d52157e2b75b14

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page