Skip to main content

Display module dependencies

Project description

Documentation Status https://travis-ci.org/thebjorn/pydeps.svg https://coveralls.io/repos/thebjorn/pydeps/badge.png Code Health

Python module dependency visualization. This package installs the pydeps command, and normal usage will be to use it from the command line.

New in version 1.3.4: --externals will now include modules that haven’t been installed (what modulefinder calls badmodules).

New in version 1.2.8: A shortcut for finding the direct external dependencies of a package was added:

pydeps --externals mypackage

which will print a json formatted list of module names to the screen, e.g.:

(dev) go|c:\srv\lib\dk-tasklib> pydeps --externals dktasklib
[
    "dkfileutils"
]

which meaans that the dktasklib package only depends on the dkfileutils package.

This functionality is also available programatically:

import os
from pydeps.pydeps import externals
# the directory that contains setup.py (one level up from actual package):
os.chdir('package-directory')
print externals('mypackage')

New in version 1.2.5: The defaults are now sensible, such that:

pydeps mypackage

will likely do what you want. It is the same as pydeps --show --max-bacon=2 mypackage which means display the dependency graph in your browser, but limit it to two hops (which includes only the modules that your module imports – not continuing down the import chain). The old default behavior is available with pydeps --noshow --max-bacon=0 mypackage.

To install:

pip install pydeps

To create graphs you need to install Graphviz (make sure the dot command is on your path).

This is the result of running pydeps on itself (pydeps pydeps):

https://dl.dropboxusercontent.com/u/94882440/pydeps.svg

pydeps also contains an Erdős-like scoring function (a.k.a. Bacon number, from Six degrees of Kevin Bacon (http://en.wikipedia.org/wiki/Six_Degrees_of_Kevin_Bacon) that lets you filter out modules that are more than a given number of ‘hops’ away from the module you’re interested in. This is useful for finding the interface a module has to the rest of the world.

To find pydeps’ interface to the Python stdlib (less some very common modules).

pydeps pydeps --show --max-bacon 2 --pylib -x os re types _* enum
https://dl.dropboxusercontent.com/u/94882440/pydeps-pylib.svg

--max-bacon 2 (the default) gives the modules that are at most 2 hops away, and modules that belong together have similar colors. Compare that to the output with the --max-bacon=0 (infinite) filter:

https://dl.dropboxusercontent.com/u/94882440/pydeps-pylib-all.svg

All options can also be set in a .pydeps file using .ini file syntax (parsable by ConfigParser). Command line options override options in the .pydeps file in the current directory, which again overrides options in the user’s home directory (%USERPROFILE%\.pydeps on Windows and ${HOME}/.pydeps otherwise).

pydeps can detect and display cycles with the --show-cycles parameter. This will _only_ display the cycles, and for big libraries it is not a particularly fast operation. Given a folder with the following contents (this uses yaml to define a directory structure, like in the tests):

relimp:
    - __init__.py
    - a.py: |
        from . import b
    - b.py: |
        from . import a

pydeps relimp --show-cycles displays:

https://dl.dropboxusercontent.com/u/94882440/pydeps-cycle.svg

An attempt has been made to keep the intermediate formats readable, eg. the output from pydeps --show-deps .. looks like this:

...
"pydeps.mf27": {
    "imported_by": [
        "__main__",
        "pydeps.py2depgraph"
    ],
    "kind": "imp.PY_SOURCE",
    "name": "pydeps.mf27",
    "path": "pydeps\\mf27.py"
},
"pydeps.py2depgraph": {
    "imported_by": [
        "__main__",
        "pydeps.pydeps"
    ],
    "imports": [
        "pydeps.depgraph",
        "pydeps.mf27"
    ],
    "kind": "imp.PY_SOURCE",
    "name": "pydeps.py2depgraph",
    "path": "pydeps\\py2depgraph.py"
}, ...

Usage:

usage: pydeps-script.py [-h] [--config FILE] [--no-config] [-v] [-o file]
                        [-T FORMAT] [--display PROGRAM] [--noshow]
                        [--show-deps] [--show-raw-deps] [--show-dot]
                        [--show-cycles] [--debug] [--noise-level INT]
                        [--max-bacon INT] [--pylib] [--pylib-all]
                        [-x FNAME [FNAME ...]]
                        fname

positional arguments:
  fname                 filename

optional arguments:
  -h, --help            show this help message and exit
  --config FILE         specify config file
  --no-config           disable processing of config files
  -v, --verbose         be more verbose (-vv, -vvv for more verbosity)
  -o file               write output to 'file'
  -T FORMAT             output format (svg|png)
  --display PROGRAM     program used to display the graph (png or svg file
                        depending on the T parameter)
  --noshow              don't call external program to display graph
  --show-deps           show output of dependency analysis
  --show-raw-deps       show output of dependency analysis before removing
                        skips
  --show-dot            show output of dot conversion
  --show-cycles         show only import cycles
  --debug               turn on all the show and verbose options
  --noise-level INT     exclude sources or sinks with degree greater than
                        noise-level
  --max-bacon INT       exclude nodes that are more than n hops away
                        (default=2, 0 -> infinite)
  --pylib               include python std lib modules
  --pylib-all           include all std lib modules (incl. C modules)
  -x FNAME [FNAME ...], --exclude FNAME [FNAME ...]
                        input files to skip

You can of course import pydeps from Python (look in the tests/test_relative_imports.py file for examples.

Contributing

  1. Fork it

  2. Create your feature branch (git checkout -b my-new-feature)

  3. Commit your changes (git commit -am ‘Add some feature’)

  4. Push to the branch (git push origin my-new-feature)

  5. Create new Pull Request

Project details


Release history Release notifications | RSS feed

This version

1.3.8

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydeps-1.3.8.tar.gz (27.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydeps-1.3.8-py2-none-any.whl (32.7 kB view details)

Uploaded Python 2

File details

Details for the file pydeps-1.3.8.tar.gz.

File metadata

  • Download URL: pydeps-1.3.8.tar.gz
  • Upload date:
  • Size: 27.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pydeps-1.3.8.tar.gz
Algorithm Hash digest
SHA256 015b9d6cb47a24cb8f7e7365f6e644e03b30f38df021c5126683ac5c3eaad7fd
MD5 4d6812645562df54739e389c2adf56a0
BLAKE2b-256 3dfc90e8a9c03d65319bc7aa4776e04e624b6e10e48ed243736a4a87a62e99e2

See more details on using hashes here.

File details

Details for the file pydeps-1.3.8-py2-none-any.whl.

File metadata

File hashes

Hashes for pydeps-1.3.8-py2-none-any.whl
Algorithm Hash digest
SHA256 2e6fea90bc81423ee0ad1c18e2dfb93ba6db95dac1a8588b1deed05be7f14586
MD5 8747601d0b08f33ae5525add4e372ad9
BLAKE2b-256 e7490d03ceb21a64a90e8b481049894c918a3cce0c85d8fde1824dc6d772bcf7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page