Are you thinking about interfaces that enable NetworkX to generate
content for Django pages, or interfaces that analyze Django web page
structure/design using NetworkX?
Dan
I don't know if anyone has done this yet but it is certainly possible
and might not be very hard.
Since the Django data models have a Python interface you should be
able to just query whatever data you like and stick that into a NetworkX
graph.
If you want to use the Matplotlib drawing part of NetworkX there is
an example of how to dynamically generate charts with Django at
http://scipy.org/Cookbook/Matplotlib/Django
This could be adopted to use the NetworkX drawing functions instead
of "plot()".
Aric