Skip to content

Commit

Permalink
Added notebook for California road network (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
czgdp1807 committed Oct 31, 2021
1 parent 2452572 commit a394600
Show file tree
Hide file tree
Showing 5 changed files with 251 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
sphinx==4.2.0
sphinx-readable-theme==1.3.0
sphinx-readable-theme==1.3.0
myst_nb==0.13.1
5 changes: 4 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon'
'sphinx.ext.napoleon',
'myst_nb'
]

jupyter_execute_notebooks = "off"

napoleon_numpy_docstring = True

# Add any paths that contain templates here, relative to this directory.
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Contents
:maxdepth: 1

tutorials.rst
pydatastructs_sphinx_graphs
contributing.rst
authors.rst
pydatastructs/pydatastructs.rst
243 changes: 243 additions & 0 deletions docs/source/pydatastructs_sphinx_graphs.ipynb

Large diffs are not rendered by default.

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

0 comments on commit a394600

Please sign in to comment.