exist-db

Configuring eulexistdb with python bringing errors in django setting module

Configuring eulexistdb with python bringing errors in django setting module Question: I have following code written in python in order to communicate with ExistDB using eulexistdb module. from eulexistdb import db class TryExist: def __init__(self): self.db = db.ExistDB(server_url="http://localhost:8899/exist") def get_data(self, query): result = list() qresult = self.db.executeQuery(query) hits = self.db.getHits(qresult) for i in range(hits): result.append(str(self.db.retrieve(qresult, …

Total answers: 2