...
|
...
|
@@ -3,7 +3,7 @@ About _xdot.py_
|
3
|
3
|
|
4
|
4
|
_xdot.py_ is an interactive viewer for graphs written in [Graphviz](http://www.graphviz.org/)'s [dot language](http://www.graphviz.org/doc/info/lang.html).
|
5
|
5
|
|
6
|
|
-It uses internally the GraphViz's [xdot output format](http://www.graphviz.org/doc/info/output.html#d:xdot) as an intermediate format, and [PyGTK](http://www.pygtk.org/) and [Cairo](http://cairographics.org/) for rendering.
|
|
6
|
+It uses internally the GraphViz's [xdot output format](http://www.graphviz.org/doc/info/output.html#d:xdot) as an intermediate format, [Python GTK bindings](https://pygobject.readthedocs.io), and [Cairo](https://cairographics.org/) for rendering.
|
7
|
7
|
|
8
|
8
|
_xdot.py_ can be used either as a standalone application from command line, or as a library embedded in your Python application.
|
9
|
9
|
|
...
|
...
|
@@ -47,9 +47,9 @@ Screenshots
|
47
|
47
|
Requirements
|
48
|
48
|
============
|
49
|
49
|
|
50
|
|
- * [Python 3](http://www.python.org/download/)
|
|
50
|
+ * [Python 3](https://www.python.org/download/)
|
51
|
51
|
|
52
|
|
- * [PyGObject bindings for GTK3](https://wiki.gnome.org/action/show/Projects/PyGObject)
|
|
52
|
+ * [PyGObject bindings for GTK3](https://pygobject.readthedocs.io)
|
53
|
53
|
|
54
|
54
|
* [Graphviz](http://www.graphviz.org/Download.php)
|
55
|
55
|
|
...
|
...
|
@@ -58,7 +58,7 @@ Windows users
|
58
|
58
|
|
59
|
59
|
Download and install:
|
60
|
60
|
|
61
|
|
- * [Python for Windows](http://www.python.org/download/)
|
|
61
|
+ * [Python for Windows](https://www.python.org/downloads/windows/)
|
62
|
62
|
|
63
|
63
|
* [PyGObject bindings for GTK3](https://wiki.gnome.org/action/show/Projects/PyGObject)
|
64
|
64
|
|
...
|
...
|
@@ -126,4 +126,4 @@ Links
|
126
|
126
|
|
127
|
127
|
* [dot2tex](https://github.com/kjellmf/dot2tex) -- python script to convert xdot output from Graphviz to a series of PSTricks or PGF/TikZ commands.
|
128
|
128
|
|
129
|
|
- * The [PyPy project](http://pypy.org/) also includes an [interactive dot viewer based on graphviz's plain format and the pygame library](http://morepypy.blogspot.com/2008/01/visualizing-python-tokenizer.html).
|
|
129
|
+ * The [PyPy project](http://pypy.org/) also includes an [interactive dot viewer based on graphviz's plain format and the pygame library](https://morepypy.blogspot.com/2008/01/visualizing-python-tokenizer.html).
|