Metadata-Version: 2.3
Name: dqb
Version: 0.1.0
Summary: Short uvx-compatible alias for the DuckDB CLI. DuckDB is a trademark of DuckDB Labs. This package is unofficial and unaffiliated.
Requires-Dist: duckdb-cli
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# dqb

A tiny convenience alias for running the DuckDB CLI with `uvx`.

```sh
uvx dqb
uvx dqb my.db
uvx dqb -c "select 1"
```

This package depends on `duckdb-cli` and exposes the same CLI entry point under the shorter command `dqb`.

The "problem" this package solves is that using duckdb as an ephemeral CLI tool currently requires writing:

```sh
uvx --from duckdb-cli duckdb
```

Which is just enough typing to make it a nuisance (for me at least).

DuckDB is a trademark of DuckDB Labs. This package is unofficial and unaffiliated.
