Metadata-Version: 2.1
Name: git-networkx
Version: 2.0.0
Summary: Git graph to networkx
Home-page: https://github.com/CircArgs/git-graph
License: MIT
Keywords: git,directed,acyclic,graph,dag,graphviz,dot
Author: Henri-Olivier Duché
Author-email: hoduche@yahoo.fr
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: flake8
Requires-Dist: networkx (>=2.4,<3.0)
Description-Content-Type: text/markdown

# Git-NetworkX

### Port of https://github.com/hoduche/git-graph to NetworkX
___

## Install

### PyPi
`pip install git-graph`
### Git
`pip install git+https://github.com/CircArgs/git-networkx.git`

## Demo

```python
from networkx.drawing.nx_pydot import write_dot
import git_networkx.git_networkx as gnx
#everything
All = gnx.GitNX('my/repo/path/that/has/a/.git')
write_dot(All, "myrepo.dot")

#Commits
Commits = gnx.GitNX('my/repo/path/that/has/a/.git', "c")
write_dot(Commits, "mycommits.dot")

```

## Node Types
| Node Type      | Letter |  Node Type      | Letter |
| -------------- | :----: |  -------------- | :----: |
| blob           | b      |  remote branch  | r      |
| tree           | t      |  remote head    | d      |
| commit         | c      |  remote server  | s      |
| local branch   | l      |  annotated tag  | a      |
| local head     | h      |  tag            | g      |
| upstream link  | u      | 

By default all nodes are added to the DiGraph.
```python
# you can get your commits, branches and the head of your local repo simply with lch
G=gnx.GitNX('../git_networkx_test/', "lch")

```

