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

Python module dependency visualization. This package installs the pydeps command, and normal usage will be to use it from the command line. 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 --show 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 gives the modules that are at most 2 hops away, and modules that belong together have similar colors. Compare that to the output without the --max-bacon 2 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] [--show] [--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 to use to display the graph (png or svg file
                        depending on the T parameter)
  --show                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
  --pylib               include python std lib modules
  --pylib-all           include python 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

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.2.3.zip (30.0 kB view details)

Uploaded Source

Built Distributions

pydeps-1.2.3.win32.exe (263.5 kB view details)

Uploaded Source

pydeps-1.2.3-py2-none-any.whl (27.2 kB view details)

Uploaded Python 2

File details

Details for the file pydeps-1.2.3.zip.

File metadata

  • Download URL: pydeps-1.2.3.zip
  • Upload date:
  • Size: 30.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pydeps-1.2.3.zip
Algorithm Hash digest
SHA256 930bdd3d84c8cade36cf0be0c4dcc02dae7f5e5c6333b6900d874e67755d5ede
MD5 bfa30fbf8528e84b5b9df4472c65ee73
BLAKE2b-256 afccbeee3c6a3cb4127136b98801ddfc6abf0ff463c27b8576769fede1f7396f

See more details on using hashes here.

Provenance

File details

Details for the file pydeps-1.2.3.win32.exe.

File metadata

  • Download URL: pydeps-1.2.3.win32.exe
  • Upload date:
  • Size: 263.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pydeps-1.2.3.win32.exe
Algorithm Hash digest
SHA256 33e92d358c006fce3f747090edd5171d0986d4698a9357d3846c2398cb23e0fa
MD5 bff8746c9a13f619bcfa6439cabdd7c9
BLAKE2b-256 21b7c87202335cd848d11fab6692bfa558febcd6506cf35f0dbd1b244974e104

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydeps-1.2.3-py2-none-any.whl
Algorithm Hash digest
SHA256 f83d07e6380686c02a0da19abfd3aa0f2a7d46b91fe715e6b8262aeedeb6ada6
MD5 e89a8d8cf7af7a21f52810cc74e010d5
BLAKE2b-256 dc5c9bbf7a267a51732df086f8f9e270f845c47dfb998c4e608e8832126e1e22

See more details on using hashes here.

Provenance

Supported by

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