PySQLTools
Project description
pysqltools
PySQLTools tries to ease the interaction between Python and SQL. The idea behind this project is to provide an easy framework to manage the interaction between this two languages. It allows dynamic queries management, using parameters in the SQL queries that can be later easily manipulated with the provided tools.
Install
you can install the latest distribution by
pip install pysqltools
Current Features
Query Module
The query module provides a Query class to work with Query objects, which will allow to modify the SQL Queries on an easy way with the class methods, and easily access the sql string with the sql attribute of the objects.
To add parameters to the query, use {{parameter}} on the SQL String.
The current methods are:
- ctes: Generator that yields the CTEs of the Query
- selects: Generator that yields the Select statements of the Query
- Windows: Generator that yields the Window Function contents of the query
- tables: Generator that yields the detected tables on the query
- parameters: Generator that yields all the parameters on the Query
- format: allows to assign values to the parameters in the query. Current supported types are str, int, float, datetime.datetime, list[int, float, str]
To call the format function, just call the parameters you have defined on your query. Example:
query:
select * from {{table_param}} limit 20
function call:
query = Query(sql = sql).format(table_param = "MyTable")
Insert Module
More to be developed. For now, it contains a Generator generate_insert_query
twith the following inputs:
- df: pd.DataFrame containing the data we want to insert
- table: name of the table we want to insert into
- schema: name of the schema were the table is located
- batch_size: How many rows on one insert query Note: if no table is provided, a parameter {{table}} will be automatically created on the Query object. It can be later changed using the .format() method.
The Generator yields Insert Queries (with batch_size
rows) that can be iterated to execute.
Connection Module
Allows to instantiate a SQL Connection to execute and fetch results (i.e., use the insert_pandas method from the insert module) Supported connections:
- ibm_db
- mysql
- pymssql
- pymysql
- sqlalchemy
- trino
Table Module
Allows to create tables on a SQL Database given a pandas DataFrame. Also contains the option to insert the data of the dataframe in the new table by calling the insert module
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
Built Distribution
File details
Details for the file pysqltools-0.2.8.tar.gz
.
File metadata
- Download URL: pysqltools-0.2.8.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.5 Darwin/23.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00f26d2d9a283516249a86e0781831700da617011f74a3972acdb3ebd9ce0a3a |
|
MD5 | c93e8fc2df7495a5c06ea6b35607d3ad |
|
BLAKE2b-256 | d49e5998e388c68ce537755b00155e8ca0e269e99538bb19af019a38b2bc5ae0 |
File details
Details for the file pysqltools-0.2.8-py3-none-any.whl
.
File metadata
- Download URL: pysqltools-0.2.8-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.5 Darwin/23.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a98762b6f268f9ddb0c09f78d3c7186aa99a297641b124abda6c6dd013e8669 |
|
MD5 | b7a8a225d42bd01ef0f6204180f23ef2 |
|
BLAKE2b-256 | c24a3d4bb2aac1fb0f1aa3c982bb4274dd2f94fea1908dbc20d235e0df0e1c50 |