Metadata-Version: 2.1
Name: python-ezsql
Version: 0.0.2
Summary: This python package is based from python mysql connector
Home-page: https://github.com/Mackhintoshi/EzSQL
Author: Jerick GUtierrez
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mysql-connector-python

# Welcome to EzSQL!

This python package is based from python mysql connector. It allows you to easily consume MySQL service without doing much of the code. 


# Features

	 - Perform Basic Secure prepared MySQL queries
	 - Perform SELECT queries with your return data format of choice
		 - Get a JSON formatted result
		 - Get a List formatted result
		 - Get results in Tuple
	- Supports DB Credentials from Environment Variables
    
## Installation

    pip install python-ezsql

## Setting up your credentials

To set your credentials, you can set the following in your environment variable. You may also put it in your .env file 

    EZSQL_DBUSER=your_user
    EZSQL_DBPASS=your_pass
    EZSQL_DBHOST=your_host
    EZSQL_DBNAME=your_db
    

## Creating a query instance

    from ezsql.EzSQL import Query

    #query_string is your prepared statement.
    query_string = "SELECT * FROM table_a WHERE id = %s"
    
    #query_values is a tuple of values
    query_values = (1,)
    
    _ezsql = Query(query_string,query_values)
    
## SELECT That returns tuple

    
    _result = _ezsql.run_select()
    print(_result)

outputs

    [(1, 'foo', 18)]
    
        
## SELECT That returns a list

      
    _result = _ezsql.run_select_with_list()
    print(_result)

outputs

    [1, 'foo', 18]

## SELECT That returns a JSON

      
    _result = _ezsql.run_select_with_json()
    print(_result)

outputs

    [{'id': 1, 'name': 'foo', 'age': 18}]

## INSERT

      
    _result = _ezsql.run_insert()
    print(_result)

outputs

    True
    
## UPDATE

      
    _result = _ezsql.run_update()
    print(_result)

outputs

    True

## DELETE

      
    _result = _ezsql.run_delete()
    print(_result)

outputs

    True
    
