Query your DB using natural language instead of SQL queries
Project description
TalkToSQL
TalkToSQL is an CLI tool that lets you query your DB with natural language instead of SQL queries.
Usage
$ talktosql learn
Successfully saved the DB Schema Info to /Users/woniesong92/.talktosql_schema_info
$ talktosql ask --q "Who owns a dog?"
SELECT o.first_name, o.last_name FROM Owners o JOIN Pets p ON o.owner_id = p.owner_id WHERE p.species = 'dog';
+------------+-----------+
| first_name | last_name |
+------------+-----------+
| John | Doe |
| Jane | Doe |
| Bob | Smith |
+------------+-----------+
$ talktosql ask --q "Is there anyone who owns a cat named Mittens?"
SELECT o.first_name, o.last_name FROM Owners o JOIN Pets p ON o.owner_id = p.owner_id WHERE p.species = 'cat' AND p.pet_name = 'Mittens';
+------------+-----------+
| first_name | last_name |
+------------+-----------+
| Alice | Johnson |
+------------+-----------+
Quickstart
-
Install the package
pip install talktosql -U
-
Set the environment variables
You can create a
.env
file in your local directory to get kickstarted.OPENAI_API_KEY="SOME_API_KEY" OPENAI_ORG_ID="SOME_ORG_ID" OPENAI_MODEL_NAME="gpt-4" TALKTOSQL_DATABASE_URL="mysql://myuser:mypassword@localhost/mydb" TALKTOSQL_DATABASE_NAME="mydb"
Alternatively, you can run these in your terminal or set these in your terminal config (~/.zshrc)
export OPENAI_API_KEY="SOME_API_KEY" export OPENAI_ORG_ID="SOME_ORG_ID" export OPENAI_MODEL_NAME="gpt-4" export TALKTOSQL_DATABASE_URL="mysql://myuser:mypassword@localhost/mydb" # export TALKTOSQL_DATABASE_URL="postgresql://myuser:mypassword@localhost/mydb" export TALKTOSQL_DATABASE_NAME="mydb"
- Get the value for
OPENAI_API_KEY
from OpenAI API Keys - Get the value for
OPENAI_ORG_ID
from OpenAI Org Settings
- Get the value for
-
Help TalktoSQL learn your DB Schema. This will save your DB schema info to a file in your home directory (
~/.talktosql_schema_info
)talktosql learn
-
Query your DB in English intead of an SQL query
talktosql ask --q "how many dogs are there?"
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
talktosql-0.0.1.tar.gz
(5.8 kB
view hashes)
Built Distribution
Close
Hashes for talktosql-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1427d11399281d21c8246606a5746ded9bad2f233e5453bd038783ce89ecfd80 |
|
MD5 | 30afa0f451144f3c7cd65930151c3f5c |
|
BLAKE2b-256 | d4c2946a9ff9e85180152dac50b71152078fa8ace2836e0792c4a860f4c48803 |