""" test svg_graph.py """ from svg_graph import SvgGraph SvgGraph()\ .line(30, 40, 80, 95) \ .line(80, 95, 200, 250) \ .dot(30, 40) \ .dot(80, 95) \ .dot(200, 250) \ .text("Boston", 35, 35) \ .text("Chicago", 85, 90) \ .text("New York", 205, 245) \ .write("svgtest")