Skip to main content

No project description provided

Reason this release was yanked:

Dependency Issues with python 3.13

Project description

SQTHON

Connect to multiple databases, run and generate raw SQL queries, perform analysis and make visualization.

⚠️ Pre-Release Notice

This package is currently in pre-release and is under active development.

So things to consider:

  • Expect Bugs: While the core functionality works, some features may not be fully stable.
  • Frequent Updates: APIs and features are subject to change in upcoming versions.
  • Contributions Welcome: Feedback and contributions are highly encouraged to help improve the package.

Actively working on:

  • 🚀 SqthonAI: Generate SQL queries using a Large Language Model (LLM) of your choice.
  • 💀 Security Improvements.
  • 🆕 New Features and Enhancements.
  • 🙄 Custom Exceptions for Better Error Messages.
  • Unit Test Coverage.

Package is not published to pypi yet and is being made using poetry. 🍕

Currently, this package will work on windows only.

Unit tests needs to be complete.

And for your safety create a virtual environment.😐

Contributors are always more than welcome. ❤️

If you don't have mysql installed, you can download it from here. ⭐

Installation 📦

1. Clone the repository.

https://github.com/HimrajDas/SQTHON.git
cd sqthon

2. Install poetry (if not installed)

Using Windows powershell

(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -

Using Linux, macOS, Windows (WSL)

curl -sSL https://install.python-poetry.org | python3 -

Using pipx

pipx install poetry

3. Install dependencies using poetry

poetry install

Alternative install 📦

pip install git+https://github.com/HimrajDas/SQTHON

Now how do I use it🤓

1. Create a .env file in your project root. [a must-do step]

  • set database passwords like this: <username>password

2. Let's connect to a database.

from sqthon import Sqthon
# Instantiate the class. Passwords gets fetch from the .env file (that's why you have to create it)
sq = Sqthon(dialect="mysql", user="root", host="localhost", service_instance_name="MySQL service instance name")

# Connects to a database
conn1 = sq.connect_to_database(database="dbname", local_infile=True) # local_infile controls the infile settings for the client.
conn2 = sq.connect_to_database("dbname")

# or you can connect like this:
conn3 = sq.connect_db.connect(database="dbname") # not preferred ❌.

If your MySQL server is not running then providing service_instance_name will start the server automatically. If you are not running the script as an administrator, it will ask for admin privilege to start the server.

3. Queries.

Suppose you have a database named dummy 🤓

Connect to the database.

dummy_conn = sq.connect_to_database(database="dummy")

Now, how do I run some queries?

# Suppose, You have a table named sales in the dummy database.
query = """
SELECT customer_name FROM sales;
"""

customer_names = dummy_conn.run_query(query=query) # it will return the result as pandas dataframe.

run_query have several params other than query, they are: visualize: bool = False, plot_type: str = None, x=None, y=None, title=None. If you make visualize=True and provide x, y and plot_type args then it will return a graph along with the data which I don't think is good for later use of the variable.

4. Visualization.

from  sqthon.data_visualizer import DataVisualizer as dv

conn1 = sq.connect_to_database("store_sales", infile=True)

query = """
SELECT YEAR(sales_month) as sales_year,
SUM(sales) AS sales,
kind_of_business
FROM us_store_sales
WHERE kind_of_business IN ('Men''s clothing stores', 'Women''s clothing stores', 'Family clothing stores')
GROUP BY sales_year, kind_of_business;
"""   # a query I performed on my database 😁

yearly_sales = conn1.run_query(query=query)
dv.plot(data=yearly_sales, plot_type="line", x="sales_year", y="sales", hue="kind_of_business")

5. Importing CSV to a Table.

I have isolated this feature for several security reasons. What do I mean is that it uses a separate engine to import the csv to a table which you don't need to worry about 😎

Currently, it supports mysql only.

Method Name: import_csv_to_mysqldb

Parameters:

  • csv_path: str
  • table: str
  • lines_terminated_by: str

In windows lines_terminated_by is generally '\r\n,' though you should inspect it before trying to import.

table: table name, if it doesn't exist then it will create the table according to the csv file. You don't need to worry about data types. It will handle it.

To import a file to mysql, you need to enable global infile both in server and client. In client it turns on when you set infile=True in connect to database.

To enable global infile in the server, just do this:

sq.server_infile_status()  # Returns True if it's on.
sq.global_infile_mode(mode="on")  # mode accepts one of two values only: "on" or "off"

Let's import it.

conn1 = sq.connect_to_database(database="example_db", local_infile=True) # local_infile = True
# if global infile is off in the server, then you have to turn it on. Just do this:
sq.global_infile_mode("on")
conn1.import_csv_to_mysqldb(csv_path="/path/to/csv", table="dummy", lines_terminated_by="\n")
# tip: you can use hex editor to analyze the csv file. If it have 0D 0A after end of the row, then
# it's terminated by '\r\n'

You can use generate_date_series to create date series like postgres generate_series.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqthon-0.1.1.tar.gz (21.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sqthon-0.1.1-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file sqthon-0.1.1.tar.gz.

File metadata

  • Download URL: sqthon-0.1.1.tar.gz
  • Upload date:
  • Size: 21.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Windows/11

File hashes

Hashes for sqthon-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8224b8be96599ea4a5a5ab8950822ce12fe235d1827d07e4a618f856a2271613
MD5 eb079a15bb266341b36d27ce59167dd0
BLAKE2b-256 420b1049f8421176e06f234bfdf99b3bebd11037298fbb3f4be8eec4e33bd3b2

See more details on using hashes here.

File details

Details for the file sqthon-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: sqthon-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Windows/11

File hashes

Hashes for sqthon-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ccdd18745d795cd32a2bdabdc1dd478c3559d93514265ad759ad5c568e17dbda
MD5 7edb6204f6e55e1cca108e94dac2406e
BLAKE2b-256 3dd634fcc246a0ac2f738ee9170a79f75d33a531f6fad3d55482a34b37a0cf5b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page