Skip to content

Commit c4923cc

Browse files
authored
Merge pull request jupyter#160 from gnestor/update-graph
Update community graph
2 parents 9dec7a9 + 7dbf025 commit c4923cc

7 files changed

+299
-177
lines changed

generateGraph.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,20 @@
55
import sys
66

77
#Change these to fit desired repos and icons
8-
REPOS = [("jupyter", "notebook"), ("jupyter", "jupyter_console"), ("jupyter", "jupyter_core"), ("ipython", "ipywidgets"), \
9-
("ipython", "ipyparallel"), ("jupyter", "nbconvert"), ("jupyter", "nbformat"), ("jupyter", "nbgrader"), ("jupyter", "tmpnb")]
8+
REPOS = [
9+
("jupyterlab", "jupyterlab"),
10+
("jupyterhub", "jupyterhub"),
11+
("jupyter", "notebook"),
12+
("jupyter", "jupyter_console"),
13+
("jupyter", "jupyter_core"),
14+
("ipython", "ipywidgets"),
15+
("ipython", "ipyparallel"),
16+
("jupyter", "nbconvert"),
17+
("jupyter", "nbformat"),
18+
("jupyter", "tmpnb"),
19+
("jupyter", "nbgrader"),
20+
("jupyter", "qtconsole")
21+
]
1022
REPO_IMG_DIR = "repo_images/"
1123
IMG_TYPE = "png"
1224
CENTER_IMG = "https://jupyter.org/jupyter-circle.png"

0 commit comments

Comments
 (0)