A simple tool to reduce PostgreSQL dump size by nullifying large bytea/text columns.
Project description
pgslim 🐘
A simple Python CLI tool to reduce the size of a PostgreSQL dump by nullifying large bytea or text columns.
This is particularly useful when you've accidentally stored large files (like images, PDFs, or JSON responses) in your database and want to create a smaller dump for local development or staging.
Installation
You can install pgslim directly from PyPI (once uploaded):
pip install pgslim
Or from source:
git clone https://github.com/nguyenhuy158/pgslim
cd pgslim
pip install .
Usage
You can use pgslim in either Interactive Mode or Command-Line Mode.
Interactive Mode (Recommended)
Simply run the tool with no arguments to start an interactive wizard. It will scan your current directory for .sql files, fast-scan the selected file for tables and columns, and provide searchable dropdown menus to make your selection.
pgslim
Alternatively, you can provide a directory path to scan for .sql files:
pgslim /path/to/dumps
Command-Line Mode
For automation or quick usage, provide the input SQL file, the table name, and the column you want to nullify directly as positional arguments or named flags.
# Using positional arguments
pgslim dump_old.sql my_table large_column
# Using named flags
pgslim -i dump_old.sql -t my_table -c large_column -v
This will create a new file named dump_old_slim.sql (unless you specify a custom output with -o).
Arguments
| Positional / Named Flag | Description |
|---|---|
input / -i, --input |
Input SQL dump file (plain text format) |
table / -t, --table |
Name of the table (e.g., users) |
column / -c, --column |
Name of the column to nullify (e.g., attachment) |
| Optional Flag | Description |
|---|---|
-o, --output |
Output SQL dump file (defaults to <input>_slim.sql) |
-v, --verbose |
Enable verbose output to see detailed progress |
How it works
The tool parses the COPY blocks in a PostgreSQL plain-text dump. It identifies the target table and the index of the specified column. For every row in that COPY block, it replaces the column value with \N (PostgreSQL's representation of NULL).
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pgslim-0.2.2.tar.gz.
File metadata
- Download URL: pgslim-0.2.2.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b6537d0f03f16bb66da15f6c1dd429496d2a9a8f92988f524dbd0bb983251c9
|
|
| MD5 |
dc026fab721f7d12bf6bc6609aeadff0
|
|
| BLAKE2b-256 |
905f21e344cc520f785658e9fb2db37896d1e2bbb3af3bb3993e69937bcba9dd
|
File details
Details for the file pgslim-0.2.2-py2.py3-none-any.whl.
File metadata
- Download URL: pgslim-0.2.2-py2.py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff8dc97de17c1000ed004911de1db5aa2d103f6260ee451e2cec8e5eb33f3a1f
|
|
| MD5 |
4a73a13b732902eed66202c8f6774b46
|
|
| BLAKE2b-256 |
4ceead1111dfce8b837b1934fcc039904ef07b0db880b6ea779a3a2da33525de
|