duckdb-assistant: Generate & Execute DuckDB SQL
This repository provides a Python class and associated methods to generate and execute DuckDB SQL.
DuckDB is an open-source, low-footprint, in-process query processing engine which provides access to several data stores and structures like Parquet, CSV, JSON and data located in conventional Relational Database Management Systems (RDBMS). This package uses the duckdb Python package along with methods to call a Large Language Model (LLM) from Google Gemini to generate code in a convenient and conversational manner.
A wiki of this repo has been generated using DeepWiki and is available here:
Refer this doc for more details on how this project will evolve.
Installation
Local installation
- Clone this repository
- To install locally in editable mode, refer here
From PyPi
Run the following command for a pip installation of the package from PyPi.
pip install --upgrade duckdb-assistant
Usage - quick example
To initialise the DuckDBAssistant class:
from duckdb_assistant import DuckDBAssistant
dda = DuckDBAssistant()
Then, to generate a query in natural language,
duckdb_query = dda.generate("Create an empty customer table.")
print(duckdb_query)
Result:
>>> duckdb_query = dda.generate("Create an empty customer table.")
>>> print(duckdb_query)
CREATE TABLE IF NOT EXISTS customer (
customer_id INTEGER PRIMARY KEY,
first_name VARCHAR,
last_name VARCHAR,
email VARCHAR,
phone VARCHAR,
address VARCHAR,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
Then, you execute the generated query either through a DuckDB connection or through the inbuilt duckdb Python connection object as follows:
dda.dd.execute(duckdb_query)
which is another way of running
import duckdb as dd
dd.execute(duckdb_query)
Or, you can choose to call the execute and sql methods available with the class that directly call duckdb's execute and sql methods after generation.
dda.execute("Create an empty customer table.")
dda.sql("Print Hello World through SQL")
Result:
>>> dda.execute("Create an empty customer table.")
<_duckdb.DuckDBPyConnection object at 0x10c194af0>
>>>
>>> dda.sql("Print Hello World through SQL")
┌───────────────┐
│ 'Hello World' │
│ varchar │
├───────────────┤
│ Hello World │
└───────────────┘
>>>
Documentation
Refer this page for a list of all available methods and attributes.
Generative AI usage
Core functions (described in Documentation) use Large Language Models (LLM, starting with Gemini 3.6 Flash) from the Google Gemini family. While you are free to modify the code to accommodate other LLMs, these are at present the only LLMs supported. Read this important note regarding functions that make use of Generative AI.
IMPORTANT: All outputs returned from Generative AI tools such as LLMs should be carefully reviewed prior to actual use. Quality of Generative AI outputs are determined by the Large Language Model in use and may be incorrect. Always review the same.
Add the following environmental variable to a .env file supplying variables to your environment. Get your Gemini API key from Google AI Studio.
GEMINI_API_KEY = <your_key>
An example env file (sample.env) is provided for this purpose. Rename this to .env and use.
Convenience: tasks.json
This repository contains a tasks.json meant for use in Visual Studio Code which helps clean up temporary files and stands up a virtual environment for quick development and exploration. Remove this file if you do not want to have Visual Studio Code run the tasks in tasks.json.
Change Log
- Version: 0.2.0 (31JUL2026)
- Add explanation switch
Refer CHANGELOG.md for other changes.
Contact
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 duckdb_assistant-0.2.0.tar.gz.
File metadata
- Download URL: duckdb_assistant-0.2.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db1f5e530ad180104b3215be28cc37ed8b36ed6b3e77b6c1684140b1c1c52326
|
|
| MD5 |
450ab9260a1b42ca19dcd7b558c69618
|
|
| BLAKE2b-256 |
c4efd44b1d2555340ff66ce7c700d41895a7e7a2913a7003b2bf8bde4f363316
|
File details
Details for the file duckdb_assistant-0.2.0-py3-none-any.whl.
File metadata
- Download URL: duckdb_assistant-0.2.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fec50853153df101769a13c4b52173a5c7e174dc83f902b0c2e865b85aa03b2f
|
|
| MD5 |
db24ad126608ee2b7b3bcadef8b993ae
|
|
| BLAKE2b-256 |
6fcb7816cfa8278f83a7d5603fa7c3c322ff68a015851de58c052ff802825a7a
|