1

This is PNG was exported from Inkscape. I created it manually and used the connector tool to link tables.

I find the plain SVG for this diagram more complicated than I was expecting so would like to know if there are simpler graphic languages or specifications for this task?

I would like to write something using Python.

Here's the pastebin: SVG for database diagram

enter image description here

Nathan Reed
  • 24,302
  • 2
  • 63
  • 103
Dave Kirkby
  • 111
  • 2
  • What exactly are you looking for here? This looks like Dot-graph territory, not API territory. Obviously, since Dot is just a text file, you can write it with any programming language. Are you looking for a program to create such things or a programmatic way to generate such an image? – Nicol Bolas Jan 30 '17 at 17:33
  • I'm voting to close this question as off-topic because it is not about computer graphics. I'm am not sure what would be a good place on SE to ask it though. Also, as Nicol points out, it need to be better formulated. – Julien Guertault Jan 31 '17 at 03:01

1 Answers1

1

Graphviz is a popular tool for making network diagrams. It takes a text format ("DOT language") describing the nodes and edges as input, and can render the resulting diagram to SVG or other image formats.

Nathan Reed
  • 24,302
  • 2
  • 63
  • 103