Zguillez | Guillermo de la Iglesia
pip install --upgrade python-toolz
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'])
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.
©2023 Zguillez.IO
Original code licensed under MIT Open Source projects used within this project retain their original licenses.
- Initial commit