CursusDB Python Native Client Module Importing package from cursusdb-py import Client Using # host/fqdn, port, db username, db password, TLS ? c = Client("0.0.0.0", 7681, "username", "password", False) print(c.connect()) print(c.query("select count from tweets;")) c.close()