A helper for working with mysql written in python, with connection-pooling feature
It is possible to install the tool with pip:
pip install sc-mysqlhelper
- Connection pooling
The script itself is currently configuration free.
- PyMySQL 1.0.2
- DBUtils 2.0
Sample usage:
from mysqlhelper import MySQLHelper helper = MySQLHelper(host="localhost", port=3306, user="test", password="test", database="test") rs = helper.select_one(sql="select count(*) from users") print(rs[0])
The script is released under the MIT License. The MIT License is registered with and approved by the Open Source Initiative [1].
[1] | https://opensource.org/licenses/MIT |