Shivam Mitra
Shivam Mitra

Reputation: 1052

Save the neo4j graph in the browser as an image

When we run some query on neo4j browser, we get the result in many forms such as table, text, graph etc. I see an option to save the graph as a PNG image in the browser. But I don't want to manually run the query on the browser and then download the image.

Is there a programmatic way to do this? I am using python for my project. Can somebody suggest some other way to achieve the same?

Upvotes: 1

Views: 1320

Answers (1)

Michael Hunger
Michael Hunger

Reputation: 41706

You can render you graph to the dot language and use graphviz for rendering.

I have a project here that does it.

https://github.com/jexp/neo4j-graphviz

Upvotes: 0

Related Questions