jckantor / nbpages

Command line tool to maintain a repository of Jupyter notebooks.
https://jckantor.github.io/nbpages/
MIT License
1 stars 4 forks source link

Index class needed #43

Open jckantor opened 4 years ago

jckantor commented 4 years ago

Indexing is turning out to be one of the most useful features of nbpages. So far there are tag, python module, figure, and data indexes. Additional indexes that might be useful for notebook development are

Currently some of the indexes are cached, which makes it problematic to do rewriting for 'under-construction' tags. (issue #28).

Propose a new index class created with

tag_index = Index() tag_index.index(pattern) tag_index.write_html(title)

adowling2 commented 4 years ago

Also include automated testing for the index class.