Use case
A DuckDB desktop client for file transformation work.
Bendit is not trying to be a full database IDE. It focuses on using DuckDB where it shines: local analytical SQL over files.
Typical cases
- Need a practical DuckDB UI for local files
- Want a fast SQL workflow around Excel, CSV and Parquet
- Do not want to upload data to a cloud service
Example SQL
select
region,
count(*) as orders,
sum(amount) as revenue
from orders
group by region
order by revenue desc;
How Bendit helps
- Import the file directly into the local workbench.
- Inspect columns, types and preview rows.
- Transform with DuckDB SQL.
- Export a clean CSV or Parquet result.