GitXplorerGitXplorer
r

modulegraph2

public
15 stars
8 forks
12 issues

Commits

List of commits on branch master.
Unverified
938f6fa0ba5d13913cf89408cccc03b2bcfe2985

Reformat using black

rronaldoussoren committed 2 years ago
Unverified
d5ef8e317f70d2040d6175e7b8dfb4c045b6ff56

Fix incompatibilty with Python 3.11 when implicit namespace package are used

rronaldoussoren committed 2 years ago
Unverified
97386be0a879a6fcffc5572d35f43f8d780e9aca

Autoupdate

rronaldoussoren committed 2 years ago
Verified
e86e1399afa3978482991223ae9f9e11c8ec107b

Merge pull request #21 from ronaldoussoren/pre-commit-ci-update-config

rronaldoussoren committed 2 years ago
Verified
d24775b8db54d021431426a20b735f45bcd4ed72

[pre-commit.ci] pre-commit autoupdate

ppre-commit-ci[bot] committed 2 years ago
Unverified
af15c9694198bd839dd0ffcbee8c0cf869f75c54

Tweak workflow

rronaldoussoren committed 2 years ago

README

The README file for this repository.

Introduction

Modulegraph2 is a library for creating and introspecting the dependency graph between Python modules. The graph is created using static analisys from source and byte code.

The dependency graph contains information about packages, modules, extensions and their dependencies. The dependencies are annotated with relevant information about the import statement.

Modules that from a distribution installed using pip also have a link to information about that distribution.

There is documentation at readthedocs <https://modulegraph2.readthedocs.io/>_

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/psf/black

CI Status .........

.. image:: https://github.com/ronaldoussoren/modulegraph2/workflows/Lint/badge.svg .. image:: https://github.com/ronaldoussoren/modulegraph2/workflows/Test/badge.svg

Historic ........

Modulegraph2 is a complete rewrite of modulegraph <https://pypi.org/project/modulegraph/>_, using lessons learned in that project but with a complete new Python 3 code base and full test coverage.