pydot v1.0.3 Release Notes

Release Date: 2010-11-02 // over 13 years ago
  • The release 1.0.3 of pydot is mainly a maintenance release. It badly needed some attention. Most of the open issues have been โž• addressed.

    ๐Ÿ“œ dot_parser.py:

    • ๐Ÿ‘Œ Improved the parsing of attributes with no explicit value but implicit defaults
    • ๐Ÿ‘Œ Improved handling of subgraphs
    • ๐Ÿ‘Œ Improved handling of whitespace within HTML node names/labels

    pydot.py:

    • โšก๏ธ Updated Graph, Cluster, Subgraph, Node and Edge attributes to reflect the latest GraphViz version (2.26.3)
    • ๐Ÿ‘Œ Improved the parsing of attributes with no explicit value but implicit defaults
    • ๐Ÿ‘Œ Improved handling of boolean attributes
    • ๐Ÿ›  Fixed issue 17, 12
    • ๐Ÿ›  Fixed issues 19, 29, 35, 37 finding the Graphviz binary in Windows
    • โž• Added method del_node() to delete Nodes from the graph
    • โž• Added method del_edges() to delete Edges from the graph
    • get_node() will now always return a list of nodes
    • get_edge() will now always return a list of edges
    • get_subgraph() will now always return a list of edges
    • Other minor improvements