Quickstart
ingestr is a command-line app that allows you to ingest data from any source into any destination using simple command-line flags, no code necessary.
- ✨ copy data from your Postgres / Mongo / BigQuery or any other source into any destination
- ➕ incremental loading:
append,mergeordelete+insert - 🐍 single-command installation
ingestr takes away the complexity of managing any backend or writing any code for ingesting data, simply run the command and watch the magic.
Installation
We recommend using uv to run ingestr.
pip install uv
uvx ingestrAlternatively, if you'd like to install it globally:
uv pip install --system ingestrWhile installation with vanilla pip is possible, it's an order of magnitude slower.
Quickstart
ingestr ingest \
--source-uri 'chess://?players=awryaw,albertojgomez' \
--source-table 'profiles' \
--dest-uri 'duckdb:///./chess.duckdb' \
--dest-table 'raw.profiles'That's it.
INFO
The steps here assume you have DuckDB installed. DuckDB runs locally with zero setup and keeps the quickstart easy and fast.
This command will:
- fetch the
profilestable for the requested chess players. - write the data into the DuckDB database at
./chess.duckdbunderraw.profiles.
If you'd like a quick check, you can query the table directly:
duckdb ./chess.duckdb "select * from raw.profiles"Or alternatively explore the table in the DuckDB UI:
duckdb -ui ./chess.duckdbSupported sources & destinations
See the Supported Sources & Destinations page for a list of all supported sources and destinations.