python connection tools collection


License
Other
Install
pip install pyconn==0.1.2

Documentation

Requirements:

  • Python 2
  • qpython

Usage:

db = Server()
db.name = "DBNAME"
db.host = "127.0.0.1"
db.port = 6000
db.username = "username"
db.password = "password"

q = Query(db_DMQ)
t = q.query_sync("{select from t where col=x}", numpy.string_(x))
t = q.query_sync("{select from t}[]")