0

What I am trying to achieve is to execute a cypher query and get the SVG file from the result using Python. I couldn't find a way to export the SVG file with py2neo module. Is there a way to export the SVG file through Python?

Porjaz
  • 771
  • 1
  • 8
  • 28

1 Answers1

0

Py2neo has no graph drawing facilities built in. You will have to pair your code with another library such as NetworkX.

Nigel Small
  • 4,475
  • 1
  • 17
  • 15