Skip to main content

A Python module that builds a Dependency Matrix for your project.

Project description

Build Status Documentation Status Coverage Status

This Python module can build the dependency matrices of a project’s packages, based on from … import … commands in their modules. For now, its purpose is purely informational.

The module is composed of only one class: DependencyMatrix, which is initialized with a list of packages foundable is sys.path. This list of packages can be a string (one package), a list (several) or an ordered dictionary, used to define groups of packages with a legend. We use an ordered dictionary because it is important to keep the same order as the one given by the user. On the other hand it is not always handy to pass an OrderedDict instance, so in the future we could maybe pass a list of dict.

Usage

from dependenpy.utils import DependencyMatrix

myapps = (
    module1,
    module2,
    ...,
    moduleN
)

# Create an empty instance
dm = DependencyMatrix(myapps)

# Init its data with build methods
dm.build()

# You can also use separately dm.build_modules(),
# dm.build_imports() and dm.build_matrices().
# You can even chain them: dm.build_modules().build_imports().build_matrices().
# The order is important, since matrices need imports, and imports need modules.
# The build() method is just a shortcut of the above chained command.

# Print max depth of submodules and the big dictionary of imports
print dm.max_depth
print dm.imports

# Equivalent to json_m_max = dm.matrix_to_json(dm.max_depth)
json_m_max = dm.matrix_to_json(0)

csv_string_m2 = dm.matrix_to_csv(2)

Here is an example of colorized CSV output:

CSV array

This module was originally design to work in a Django project. The Django package django-dpdpy has been built on it to display the matrices with D3JS (it will soon be registered on GitHub, then PyPi).

Documentation

On ReadTheDocs

License

Copyright (c) 2015 Timothée Mazzucotelli

This Source Code is subject to the terms of the Mozilla Public License, v. 2.0. See the LICENSE.txt file for more details.

Project details


Download files

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

Source Distribution

dependenpy-1.1.0.tar.gz (17.2 kB view details)

Uploaded Source

File details

Details for the file dependenpy-1.1.0.tar.gz.

File metadata

  • Download URL: dependenpy-1.1.0.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for dependenpy-1.1.0.tar.gz
Algorithm Hash digest
SHA256 62fdfa8198fe44410d693e534f4e1323095d9f24f85fc92b7f13ed2ae44ada84
MD5 f5ea8794634a7a10cbd1638d070af839
BLAKE2b-256 3d86621bf7ba22d3b2ec36b2e2a6480e3f73d3d06a8e5867dbf4213f4dd5e1fa

See more details on using hashes here.

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