├── .gitignore ├── LICENSE ├── README.md ├── doc ├── crypto-folks.png ├── gvgen-cluster-node-link.png ├── gvgen-defaultstyle.png ├── gvgen-legend.png ├── gvgen-legendin.png ├── gvgen-links.png ├── gvgen-propertyforeachlinks.2.png ├── gvgen-propertylink.png ├── gvgen-smartmode-1.png ├── gvgen-smartmode-2.png └── gvgen-styles.png ├── examples ├── build.sh ├── edges-linking.py ├── ex1.py ├── ex2.py ├── ex3.py ├── ex4.py ├── ex5.py ├── ex6.py ├── ex7.py ├── legend.py ├── legendin.py ├── multiples-parents-children-simple.py ├── network │ ├── README │ ├── hurd.png │ ├── linux.png │ ├── network.py │ ├── router.png │ ├── sun.png │ └── wingdows.png ├── parents.py ├── properties-link.py ├── runall.bat ├── smartmode-links-2.py ├── smartmode-links-3.py ├── smartmode-links.py └── unix-family.py ├── gvgen.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | tags 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/README.md -------------------------------------------------------------------------------- /doc/crypto-folks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/crypto-folks.png -------------------------------------------------------------------------------- /doc/gvgen-cluster-node-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-cluster-node-link.png -------------------------------------------------------------------------------- /doc/gvgen-defaultstyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-defaultstyle.png -------------------------------------------------------------------------------- /doc/gvgen-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-legend.png -------------------------------------------------------------------------------- /doc/gvgen-legendin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-legendin.png -------------------------------------------------------------------------------- /doc/gvgen-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-links.png -------------------------------------------------------------------------------- /doc/gvgen-propertyforeachlinks.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-propertyforeachlinks.2.png -------------------------------------------------------------------------------- /doc/gvgen-propertylink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-propertylink.png -------------------------------------------------------------------------------- /doc/gvgen-smartmode-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-smartmode-1.png -------------------------------------------------------------------------------- /doc/gvgen-smartmode-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-smartmode-2.png -------------------------------------------------------------------------------- /doc/gvgen-styles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/doc/gvgen-styles.png -------------------------------------------------------------------------------- /examples/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/build.sh -------------------------------------------------------------------------------- /examples/edges-linking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/edges-linking.py -------------------------------------------------------------------------------- /examples/ex1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex1.py -------------------------------------------------------------------------------- /examples/ex2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex2.py -------------------------------------------------------------------------------- /examples/ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex3.py -------------------------------------------------------------------------------- /examples/ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex4.py -------------------------------------------------------------------------------- /examples/ex5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex5.py -------------------------------------------------------------------------------- /examples/ex6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex6.py -------------------------------------------------------------------------------- /examples/ex7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/ex7.py -------------------------------------------------------------------------------- /examples/legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/legend.py -------------------------------------------------------------------------------- /examples/legendin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/legendin.py -------------------------------------------------------------------------------- /examples/multiples-parents-children-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/multiples-parents-children-simple.py -------------------------------------------------------------------------------- /examples/network/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/README -------------------------------------------------------------------------------- /examples/network/hurd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/hurd.png -------------------------------------------------------------------------------- /examples/network/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/linux.png -------------------------------------------------------------------------------- /examples/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/network.py -------------------------------------------------------------------------------- /examples/network/router.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/router.png -------------------------------------------------------------------------------- /examples/network/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/sun.png -------------------------------------------------------------------------------- /examples/network/wingdows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/network/wingdows.png -------------------------------------------------------------------------------- /examples/parents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/parents.py -------------------------------------------------------------------------------- /examples/properties-link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/properties-link.py -------------------------------------------------------------------------------- /examples/runall.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | SET PYTHONPATH=.. 3 | for %%i in (*.py) do python %%i 4 | -------------------------------------------------------------------------------- /examples/smartmode-links-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/smartmode-links-2.py -------------------------------------------------------------------------------- /examples/smartmode-links-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/smartmode-links-3.py -------------------------------------------------------------------------------- /examples/smartmode-links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/smartmode-links.py -------------------------------------------------------------------------------- /examples/unix-family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/examples/unix-family.py -------------------------------------------------------------------------------- /gvgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/gvgen.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stricaud/gvgen/HEAD/setup.py --------------------------------------------------------------------------------