58def init(engine_settings):
59 global _connection # pylint: disable=global-statement
61 if 'query_str' not in engine_settings:
62 raise ValueError('query_str cannot be empty')
64 if not engine_settings['query_str'].lower().startswith('select '):
65 raise ValueError('only SELECT query is supported')
67 _connection = psycopg2.connect(
76def search(query, params) -> EngineResults:
77 query_params = {'query': query}
78 query_to_run = query_str + ' LIMIT {0} OFFSET {1}'.format(limit, (params['pageno'] - 1) * limit)
81 with _connection.cursor() as cur:
82 cur.execute(query_to_run, query_params)
83 return _fetch_results(cur)
86def _fetch_results(cur) -> EngineResults:
89 titles = [column_desc.name for column_desc in cur.description]
91 kvmap = dict(zip(titles, map(str, row)))
92 res.add(res.types.KeyValue(kvmap=kvmap))
95 except psycopg2.ProgrammingError: