Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 1.12 KB

File metadata and controls

57 lines (39 loc) · 1.12 KB

python-toolz v0.1.9

Zguillez | Guillermo de la Iglesia

Python helpers

Getting Started

Install

pip install --upgrade python-toolz

Usage

from python_toolz import helper as ztools

ztools.log("test")
db = ztools.database({
    'conn': os.environ['DB_HOST'],
    'database': os.environ['DB_NAME'],
    'user': os.environ['DB_USER'],
    'password': os.environ['DB_PASS']
})
data = db.sql("SELECT id, name FROM template ORDER BY id ASC LIMIT 0,5")
db.close()
print(data[0])
data = db.dict("SELECT id, name FROM template ORDER BY id ASC LIMIT 0,5", ['id', 'name'])
db.close()
print(data[0]['name'])

Contributing and issues

Contributors are welcome, please fork and send pull requests! If you have any ideas on how to make this project better then please submit an issue or email me.

License

©2023 Zguillez.IO

Original code licensed under MIT Open Source projects used within this project retain their original licenses.

Changelog

v0.1.0 (February 11, 2023)

  • Initial commit