File: __init__.py

package info (click to toggle)
python-networkx 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,780 kB
  • ctags: 1,910
  • sloc: python: 29,050; makefile: 126
file content (23 lines) | stat: -rw-r--r-- 389 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# graph drawing and interface to graphviz
from nx_pylab import *
import nx_pylab
from layout import *
import layout

# graphviz interface
# prefer pygraphviz/agraph (it's faster)
from nx_agraph import *
import nx_agraph
try:
    import pydot
    import nx_pydot    
    from nx_pydot import *
except:
    pass

try:
    import pygraphviz
    from nx_agraph import *
except:    
    pass