All Projects → ashishb → python_dep_generator

ashishb / python_dep_generator

Licence: MIT license
Genrates python dependency graph

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to python dep generator

Objc Dependency Visualizer
Objective-C and Swift dependency visualizer. It's tool that helps to visualize current state of your project. It's really easy to see how tight your classes are coupled.
Stars: ✭ 1,738 (+8176.19%)
Mutual labels:  dependency-graph
Git Deps
git commit dependency analysis tool
Stars: ✭ 232 (+1004.76%)
Mutual labels:  dependency-graph
metahelm
Install dependency graphs of Kubernetes Helm Charts
Stars: ✭ 70 (+233.33%)
Mutual labels:  dependency-graph
Dephell
📦 🔥 Python project management. Manage packages: convert between formats, lock, install, resolve, isolate, test, build graph, show outdated, audit. Manage venvs, build package, bump version.
Stars: ✭ 1,730 (+8138.1%)
Mutual labels:  dependency-graph
Dependency Graph
A simple dependency graph for Node.js
Stars: ✭ 219 (+942.86%)
Mutual labels:  dependency-graph
Dg
[LLVM Static Slicer] Various program analyses, construction of dependence graphs and program slicing of LLVM bitcode.
Stars: ✭ 242 (+1052.38%)
Mutual labels:  dependency-graph
Node Dependencies View
node dependency trees as a service.
Stars: ✭ 126 (+500%)
Mutual labels:  dependency-graph
planet-exporter
🚀 Determine server network dependencies along with required bandwidth
Stars: ✭ 17 (-19.05%)
Mutual labels:  dependency-graph
Module Linker
browse modules by clicking directly on "import" statements on GitHub ⛺
Stars: ✭ 229 (+990.48%)
Mutual labels:  dependency-graph
taiga-stats
Generate statistics from Taiga and produce burnup diagrams, CFDs, dependency graphs and more.
Stars: ✭ 40 (+90.48%)
Mutual labels:  dependency-graph
Pipdeptree
A command line utility to display dependency tree of the installed Python packages
Stars: ✭ 1,898 (+8938.1%)
Mutual labels:  dependency-graph
Cmake Scripts
A selection of useful scripts for use in CMake projects, include code coverage, sanitizers, and dependency graph generation.
Stars: ✭ 202 (+861.9%)
Mutual labels:  dependency-graph
graphql-dependency
Cross service dependencies for GraphQL API with underlying @imqueue services
Stars: ✭ 17 (-19.05%)
Mutual labels:  dependency-graph
Dependency Cruiser
Validate and visualize dependencies. Your rules. JavaScript, TypeScript, CoffeeScript. ES6, CommonJS, AMD.
Stars: ✭ 2,326 (+10976.19%)
Mutual labels:  dependency-graph
fort depend.py
A python script to generate dependencies for Fortran projects
Stars: ✭ 35 (+66.67%)
Mutual labels:  dependency-graph
Kotlin Mvvm Architecture
Android Architecture Design Patterns using Kotlin, MVVM, Dagger2, LiveData, Room, MediatorLiveData, NetworkBoundResources, Retrofit, AndroidX, ViewModels, Dependency Injection using Dagger2, Repository pattern.
Stars: ✭ 126 (+500%)
Mutual labels:  dependency-graph
Swift Code Metrics
Code metric analyzer for Swift projects.
Stars: ✭ 244 (+1061.9%)
Mutual labels:  dependency-graph
nrwl-nx-action
A GitHub Action to wrap Nrwl Nx commands in your workflows.
Stars: ✭ 163 (+676.19%)
Mutual labels:  dependency-graph
javascript
Basic Primitives Diagrams for JavaScript - data visualization components library that implements organizational chart and multi-parent dependency diagrams, contains implementations of JavaScript Controls and PDF rendering plugins.
Stars: ✭ 46 (+119.05%)
Mutual labels:  dependency-graph
cargo-supply-chain
Gather author, contributor and publisher data on crates in your dependency graph.
Stars: ✭ 287 (+1266.67%)
Mutual labels:  dependency-graph

python_dep_generator

Generates python code dependency graph

Install: sudo pip install python_dep_generator

Usage: generate-dep [-h] [-s] path

Arguments:

path path (or dir) of the python file (or all python files under it).

Optional arguments:

-h, --help : show this help message and exit

-s, --small_list : Pass -s to hide system packages and get a smaller list.

Sample outputs

$ generate-dep generate_dep.py

generate_dep.py
|_ argparse
|_ importlib
|_ inspect
|_ logging
|_ os
|_ sys
|_ traceback
|_ types
$ generate-dep samples

samples/module1.py
|_ os
|_ sys

samples/module2.py
|_ sys
|_ time
|_ /home/ashishb/src/python_dep_generator/samples/module1.py
$ generate-dep -s samples

samples/module1.py

samples/module2.py
|_ /home/ashishb/src/python_dep_generator/samples/module1.py

Bitdeli Badge

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].