Parsing Text to cypher, some library can use?

Hello; i have been working on a cm system where relations between items include cypher strings. It is driven by JSON documents. I've been relying on custom python to parse the strings and then run the ie cypher statements to update the db. I am interested in other ways I might be able to do it (other products, community projects, etc).

For example this is a snippet, a "relations" key which contains a list of cypher statements, in json:

    "relations": [
      "[:RELATED_TO {api:'query?192.168.0.1'}]->(Function {name:'internal_gateway'})",
      "[:RELATED_TO]->(Software {name:'haproxy'})"
    ],

So, parse the json and run the cypher for the two lines above..

Cheers;