__author__ = 'Dani'

from wmera.query_gen.query_generator_cwr import CWRQueryGenerator
from wmera.utils import rel_path_to_file

query_gen = CWRQueryGenerator(
    queries_path=rel_path_to_file("../../files/in/cwr-json-to-mera-json/works_group_full.json",
                                  __file__),
    config_path="Doesntmatteryet")
query_gen.gen_srialized_mera_json(file_path="../../files/out/cwr-json-to-mera-json/posible_queries.json")


Beispiel #2
0
def json_matcher(json_cwr, executer_obj):
    query_gen = CWRQueryGenerator(str_json_content=json_cwr,
                                  config_path="Doesntmatteryet")

    return executer_obj.execute_queries_from_json(json_content=query_gen.gen_mera_json())