Notebook Example¶
You can create notebooks to show how to use your package. These will be automatically compiled and run by mkdocs
, depending on the settings in your mkdocs.yml
file.
In [3]:
Copied!
from packagename.module import example_function
from packagename.module import example_function
In [2]:
Copied!
example_function(1)
example_function(1)
Out[2]:
np.int64(1)