pipdot
1.0.0
Generate a GraphViz dot file representing installed PyPI distributions.
pip install pipdotIt's a zero-dependency package.
When installed, we can execute the program as:
either a standard-along command:
pipdotor a python module:
python -m pipdotTo generate a GraphViz dot file for distributions of current Python environment:
pipdot --extras-label 1.dotThen convert it to a svg (or other formats) image:
dot -T svg -O 1.dotWe'll get something like:
And we can use it by docker, eg:
docker run -it --rm -v "your-python-site-dir:/work" -w /work liuxueyan/pipdot -p .For help messages, execute:
python -m pipdot --help