Skip to main content
Latest Version Development Status Egg Status Wheel Status Download format Build Status Documentation Status Coverage Status Supported Python versions License

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 MatrixBuilder

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

# Create an empty instance
dm = MatrixBuilder(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

# Output matrix of depth 1 in CSV
dm.get_matrix(1).to_csv()

# Output matrix of maximum depth in JSON
dm.get_matrix(0).to_json()

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-archan has been built on it to display the matrices with D3JS.

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.

Thanks

Thanks to dmishin for the TSP solver, needed to compute the similarity order.

Download files

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

Source Distribution

dependenpy-2.0.0.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

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

dependenpy-2.0.0-py27.py33.py34-none-any.whl (15.3 kB view details)

Uploaded Python 2.7Python 3.3Python 3.4

File details

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

File metadata

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

File hashes

Hashes for dependenpy-2.0.0.tar.gz
Algorithm Hash digest
SHA256 baa7f8c6c2c2b7e114bc90e91526a7d9930c6ca5b5264205e8fa3053daa5d008
MD5 6df764303c8f8c379b60b213ddd2cefe
BLAKE2b-256 2918ca87e0718b83a6dd2ce94c275e3ec0f5d4c2f8058f2582a3d01e386a8faf

See more details on using hashes here.

File details

Details for the file dependenpy-2.0.0-py27.py33.py34-none-any.whl.

File metadata

File hashes

Hashes for dependenpy-2.0.0-py27.py33.py34-none-any.whl
Algorithm Hash digest
SHA256 5d6e36dd767fd4a89cabe73565b5d5e8e76e04ba4e0ed133d645dff95ba6ecd0
MD5 3b7d4c4ad1904d71ade5411b4d089038
BLAKE2b-256 6a662409ccb04194107579e7c1574e477143e05b9a4d702f638ede34b86c327b

See more details on using hashes here.

Release history Release notifications | RSS feed

3.3.3

2 files

3.3.2

2 files

3.3.1

2 files

3.3.0

2 files

3.2.0

2 files

3.1.0

2 files

3.0.0

2 files

2.0.3

2 files

2.0.1

2 files

This release

2.0.0 This release

2 files

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.4

1 file

v1.0.3

1 file

v1.0.2

1 file

v1.0.1

1 file

v1.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page