A tool for find dependencies relationships between Python packages
Project description
Gluttony
Gluttony is a tool for finding dependencies relationship of a Python package.
Installation
To install Gluttony
pip install Gluttony
Usage
To understand the available optons of Gluttony, you can type:
gluttony --help
Drawing Graph
To figure out the dependencies relationship of a Python package, here you can type (the diagram will be displayed by matplotlib, you need to install it before you can use –display-graph option)
gluttony <package name> --display-graph
For example, you would like to know the dependency relationships of Sprox, then you can type:
gluttony sprox --display-graph
The result might looks like this:
Another example example: you want to understand the dependencies relationship of TurboGears2, here we type
gluttony -i http://www.turbogears.org/2.0/downloads/current/index tg.devtools --display-graph
The result:
Oops, the graph is a little bit messy. Currently, the layout of graph is not handled properly. However, it’s not a big deal, you can output the graph as dot or pickle format file for further processing.
Output Graphviz File
To draw the diagram with Graphviz, you can output that dot format like this
gluttony sprox --pydot sprox.dot
Then you can use Graphviz for drawing beautiful graph. Like this one:
Another huge example:
Output Pickle File
If you want to get the raw relationship data in Python, this tool also provides a pickle output format. For example:
gluttony sprox --pickle sprox.pickle
Then you can use pickle.load to load it into Python for further processing.
Gallery
See some beautiful Python package dependencies relationship diagram :)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.