https://github.com/ronaldoussoren/modulegraph2
Modulegraph2 is a library for creating and introspecting the dependency graph between Python modules.
https://github.com/ronaldoussoren/modulegraph2
dependency-analysis dependency-graph python
Last synced: over 1 year ago
JSON representation
Modulegraph2 is a library for creating and introspecting the dependency graph between Python modules.
- Host: GitHub
- URL: https://github.com/ronaldoussoren/modulegraph2
- Owner: ronaldoussoren
- License: mit
- Created: 2020-01-05T17:36:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T16:48:16.000Z (over 1 year ago)
- Last Synced: 2025-03-03T17:44:08.483Z (over 1 year ago)
- Topics: dependency-analysis, dependency-graph, python
- Language: C
- Size: 841 KB
- Stars: 15
- Watchers: 2
- Forks: 8
- Open Issues: 12
-
Metadata Files:
- Readme: ReadMe.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
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 `_
.. 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 `_,
using lessons learned in that project but with a complete new
Python 3 code base and full test coverage.