Skip to main content

A high-level sql command utility. Currently only MySQL is supported.

Project description

High SQL

CircleCI GitHub license

About

A high-level sql command utility. Currently, only MySQL is supported. PYPI Package

Table of Contents

Using the library

For a detailed usage example see example.py.

Installing and using the library

First, you need to install the library using pip:

$ pip install high_sql

Then, import it and initialize it like so:

from high_sql import HighMySQL

db_conf = {'hostname': 'your hostname', 'username': 'your username', 'password': 'your password',
           'db_name': 'your db name', 'port': 3306}
mysql_obj = HighMySQL(config=db_conf)

If you want to use a yml file to load the configuration, you can use the HighConfig class:

from high_sql import HighConfig
import os

config_path = str(os.path.join('confs', 'conf.yml'))
config = HighConfig(config_src=config_path)
db_conf = config.get_db_config()

Two example YAML files can be found in the confs folder. For more details on how to use this YAML configuration loader see this Readme.

Examples of usage

The currently supported operations are the following:

  • Inserts, Updates, Deletes, Select
  • Create, Truncate, Drop table
  • Show all tables

Insert

mysql_obj.insert_into_table('test_table', data={'firstname': 'Mr Name', 'lastname': 'surname'})

Update

mysql_obj.update_table('test_table', set_data={'lastname': 'New Last Name'},
                       where='firstname="Mr Name"')

Delete

mysql_obj.delete_from_table('test_table', where='firstname="Mr Name"')

Select

res = mysql_obj.select_from_table('test_table', columns='*', where='firstname="Mr Name"', 
                                  order_by='firstname', asc_or_desc='ASC', limit=5)

Truncate

mysql_obj.truncate_table('test_table')

Create

mysql_obj.create_table(table='test_table', schema=table_schema)

Drop

mysql_obj.drop_table('test_table')

Show Tables

mysql_obj.show_tables()

All of these examples can be found in example.py.

Manually install the library

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

You need to have a machine with anaconda installed and any Bash based shell (e.g. zsh) installed.

$ conda -V
conda 4.10.1

$ echo $SHELL
/usr/bin/zsh

Install the requirements

All the installation steps are being handled by the Makefile.

First, modify the python version (min_python) and everything else you need in the settings.ini.

Then, execute the following commands:

$ make create_env
$ conda activate yaml_config_wrapper
$ make dist

Now you are ready to use and modify the library.

Run the Unit Tests

If you want to run the unit tests, execute the following command:

$ make tests

Continuous Integration

For the continuous integration, the CircleCI service is being used. For more information you can check the setup guide.

For any modifications, edit the circleci config.

Update PyPI package

This is mainly for future reference for the developers of this project. First, create a file called ~/.pypirc with your pypi login details, as follows:

[pypi]
username = your_pypi_username
password = your_pypi_password

Then, modify the python version (min_python), project status (status), release version (version) and everything else you need in the settings.ini.

Finally, execute the following commands:

$ make create_env
$ conda activate yaml_config_wrapper
$ make release

For a dev release, change the testing_version and instead of make release, run make release_test.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Buy Me A Coffee

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

high-sql-0.0.1.tar.gz (14.3 kB view details)

Uploaded Source

Built Distribution

high_sql-0.0.1-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file high-sql-0.0.1.tar.gz.

File metadata

  • Download URL: high-sql-0.0.1.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for high-sql-0.0.1.tar.gz
Algorithm Hash digest
SHA256 fcc73fead924831d0d40f718013be0a7dc318415861dd971a0a225a00dcd1d1d
MD5 b4a41812bdcabf7734d43e489ea072d7
BLAKE2b-256 bf64e50f9adab71d5997443c241a23e573df288509e7be7be883d1c7f4ae621b

See more details on using hashes here.

File details

Details for the file high_sql-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: high_sql-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for high_sql-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 73cbfaeb2c0d81307ce8e68ddc0b51ff1319bea640462a4e7780c9ad8e344b50
MD5 4455f095198e212e167643fc86b6b399
BLAKE2b-256 d9468ede40d8847fecbc4f1a6950ab9b5b184c4cb88c2ff60ec02003ed40e8c4

See more details on using hashes here.

Supported by

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