Metadata-Version: 2.1
Name: dismod
Version: 0.2.1
Summary: Generate dependency graphs for your modules
Home-page: https://github.com/r0x0d/dismod
Author: Rodolfo Olivieri
Author-email: rodolfo.olivieri3@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/r0x0d/dismod/main.svg)](https://results.pre-commit.ci/latest/github/r0x0d/dismod/main)
[![Coverage](https://github.com/r0x0d/dismod/actions/workflows/coverage.yml/badge.svg)](https://github.com/r0x0d/dismod/actions/workflows/coverage.yml)
[![codecov](https://codecov.io/gh/r0x0d/dismod/branch/main/graph/badge.svg?token=LSVRFFXPV5)](https://codecov.io/gh/r0x0d/dismod)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/r0x0d/dismod.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/r0x0d/dismod/alerts/)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/r0x0d/dismod.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/r0x0d/dismod/context:python)
[![Code Scanning - Action](https://github.com/r0x0d/dismod/actions/workflows/codeql.yml/badge.svg)](https://github.com/r0x0d/dismod/actions/workflows/codeql.yml)

# dismod

This tool aims to generate a dependency graph of the imports in your python
modules. It automatically search for every file with an extesion of `.py` and
quickly generate renderings of that file with all imports (used and unused).

# Usage

To use `dismod`, first you need to install it using `pip`

```bash
pip install dismod
```

After installed (can be insid a virtualenv or not), go to the project you want
to generate the graphs and run:

```bash
dismod <path_of_project>
```

For example, let's use `dismod` own repository to generate some graphs:

```bash
git clone git@github.com:r0x0d/dismod
cd dismod
dismod dismod
ls renders
```

# Generate graphviz visualization

If you want to generate a graphviz from the dotfiles, you can do so by using the following command:

```bash
dot -T png renders/<file-you-want>.py.dot -o output.png
```

# Graph generated from this project

[!dismod graph visualization](https://github.com/r0x0d/dismod/blob/main/docs/dismod.png)


