pyyed
pyyed copied to clipboard
A simple Python library to export networks to yEd
Hello, team! first of all thanks for the great module. In the process of using it, I noticed a small optimization for the code: ``` if target_label is not None:...
Support for varous entity types, with or without attributes I've still to add relationships, but I think this will become quite cumbersome. @jamesscottbrown what do you think?
The python script runs fine, and the generated file is not empty, but when loaded in yED there is only the note visible.
Seems like over the time yEd has changed how it reads the graphml file (but I can find no documentation exposing that)
Currently, pyyed can generate UML diagrams by supporting a set of customizations in generated node object. How is it possible to generate an entity-relationship diagram where entities are defined by...
Hi, when try to run the code and appears this message, what means? raise RuntimeWarning("Node %s already exists" % node_name) this is my code: for s in self.periodi: s=yed.add_group(s[2]) for...
This should be a fix for issue #52 I'm not sure how optional dependencies work, so it may be that it does not work properly if networkx is not installed....
For some graphs, nodes can be duplicated because those nodes can represent the same entity in different namespace without it being an issue. For now, Pyyed doesn't allow such a...
Hello, I was wondering if it's possible to import a `networkx` based network into `pyyed` ... I'm asking this because, even though `networkx` has the method `nx.write_graphml()` when opening that...
Hello I would like to define the path of the edges as a polyline with your library. In your source code I found a line with the text "Polylineedge", so...