├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── bookbook ├── __init__.py ├── filter_links.py ├── html.py ├── html_index.tpl └── latex.py ├── flit.ini └── tests ├── __init__.py ├── sample ├── 01-introduction.ipynb └── 02-in-which-we.ipynb ├── test_html.py └── test_latex.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | /dist/ 3 | .ipynb_checkpoints 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/README.rst -------------------------------------------------------------------------------- /bookbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/bookbook/__init__.py -------------------------------------------------------------------------------- /bookbook/filter_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/bookbook/filter_links.py -------------------------------------------------------------------------------- /bookbook/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/bookbook/html.py -------------------------------------------------------------------------------- /bookbook/html_index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/bookbook/html_index.tpl -------------------------------------------------------------------------------- /bookbook/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/bookbook/latex.py -------------------------------------------------------------------------------- /flit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/flit.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample/01-introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/tests/sample/01-introduction.ipynb -------------------------------------------------------------------------------- /tests/sample/02-in-which-we.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/tests/sample/02-in-which-we.ipynb -------------------------------------------------------------------------------- /tests/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/tests/test_html.py -------------------------------------------------------------------------------- /tests/test_latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takluyver/bookbook/HEAD/tests/test_latex.py --------------------------------------------------------------------------------