Skip to content

Commit a394600

Browse files
authored
Added notebook for California road network (#426)
1 parent 2452572 commit a394600

File tree

5 files changed

+251
-3
lines changed

5 files changed

+251
-3
lines changed

docs/requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
sphinx==4.2.0
2-
sphinx-readable-theme==1.3.0
2+
sphinx-readable-theme==1.3.0
3+
myst_nb==0.13.1

docs/source/conf.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,12 @@
3636
# ones.
3737
extensions = [
3838
'sphinx.ext.autodoc',
39-
'sphinx.ext.napoleon'
39+
'sphinx.ext.napoleon',
40+
'myst_nb'
4041
]
4142

43+
jupyter_execute_notebooks = "off"
44+
4245
napoleon_numpy_docstring = True
4346

4447
# Add any paths that contain templates here, relative to this directory.

docs/source/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Contents
4848
:maxdepth: 1
4949

5050
tutorials.rst
51+
pydatastructs_sphinx_graphs
5152
contributing.rst
5253
authors.rst
5354
pydatastructs/pydatastructs.rst

docs/source/pydatastructs_sphinx_graphs.ipynb

+243
Large diffs are not rendered by default.

docs/source/tutorials.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tutorials
44
We provide the following tutorials to show how ``pydatastructs``
55
APIs can help in solving complicated data structures and algorithms
66
problems easily. For now the problems are abstract. However, we plan
7-
to add some examples showing usage of ``pydatastructs`` on real world
7+
to add some more examples showing usage of ``pydatastructs`` on real world
88
data sets such as `Stanford Large Network Dataset Collection <https://snap.stanford.edu/data/>`_
99
and `Urban Dictionary Words And Definitions <https://www.kaggle.com/therohk/urban-dictionary-words-dataset>`_.
1010
If you are interested in playing around with the above datasets using our API,

0 commit comments

Comments
 (0)