Metadata-Version: 2.1
Name: vizcode
Version: 0.3.8
Summary: Visualize your codebase as a graph
Home-page: https://vizcode.dev
License: GPL Public License
Keywords: code visualization,static analysis,debugging
Author: Alex Rubin, Maciej Holubiec, Karthik Rao
Requires-Python: >=3.7,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development
Requires-Dist: art (>=5.1,<6.0)
Requires-Dist: jedi (>=0.17.2,<0.18.0)
Requires-Dist: parso (>=0.7.0,<0.8.0)
Description-Content-Type: text/markdown

# VizCode

VizCode is a command line tool for visualizing codebases as directed graphs. It utilizes static analysis to parse through your code to detect any definitions and references, which are then represented as nodes and edges respectively in a graph. Furthermore, the graph will be visualized on a web browser once the code files have been parsed. VizCode only supports the Python language at the moment.

![](https://i.ibb.co/28S6ZFx/vizcode-screenshot.png)

Please note that VizCode is run locally and will never send your code, repository names, file names, or any other specific code data to any location outside of your local machine. Additionally, VizCode is not able to run on Windows unless you download the Ubuntu shell. For more information about VizCode visit our [website](https://vizcode.dev).

## Installation

You can install VizCode from [PyPI](https://pypi.org/project/vizcode/):

    pip install vizcode

VizCode is supported on Python 3.7 and above.

## How to use

To run VizCode on a codebase, simply call the program:

    $ vizcode -p [ENTER A DIRECTORY PATH]

Since VizCode only works on Python code, it will ignore any files without the .py file extension. If your code uses any dependencies that are not installed in your default environment, then you can specify an environment path:

    $ vizcode -p [ENTER A DIRECTORY PATH] -e [ENTER AN ENVIRONMENT PATH]

If you would like VizCode to ignore test files, then you can add an additional argument:

    $ vizcode -p [ENTER A DIRECTORY PATH] -t [ENTER PATH OF TEST FILES]

