├── .gitignore ├── LICENSE ├── README.md ├── binder ├── apt.txt ├── postBuild └── requirements.txt ├── example.ipynb ├── example.pdf ├── notebook_as_pdf └── __init__.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/README.md -------------------------------------------------------------------------------- /binder/apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/binder/apt.txt -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -euo pipefail 4 | 5 | pyppeteer-install 6 | -------------------------------------------------------------------------------- /binder/requirements.txt: -------------------------------------------------------------------------------- 1 | notebook-as-pdf==0.5.0 2 | numpy 3 | matplotlib 4 | pandas 5 | -------------------------------------------------------------------------------- /example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/example.ipynb -------------------------------------------------------------------------------- /example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/example.pdf -------------------------------------------------------------------------------- /notebook_as_pdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/notebook_as_pdf/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betatim/notebook-as-pdf/HEAD/setup.py --------------------------------------------------------------------------------