Metadata-Version: 2.1
Name: html2pdf_bookdown
Version: 0.1.1
Summary: Fetch and convert HTML to PDF for eBooks published with Bookdown
Home-page: https://github.com/caizefeng/html2pdf_bookdown
Author: Zavier Cai
Author-email: caizefeng18@gmail.com
License: MIT
Keywords: html pdf conversion bookdown
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# html2pdf_bookdown
Fetch and convert HTML to PDF for eBooks published with **Bookdown**

## Usage
```
html2pdf_bookdown [-h] [-u URL] [-n BOOK_NAME]
```
E.g. 
```
html2pdf_bookdown -u https://christophm.github.io/interpretable-ml-book -n Interpretable-Machine-Learning-by-Christoph-Molnar
```
will generate a combined PDF named `Interpretable-Machine-Learning-by-Christoph-Molnar.pdf` and a directory containing
several PDFs, one for each chapter.

## Installation
1. Make sure **Google Chrome** has been installed and the corresponding **ChromeDriver** (needed by **Selenium**, can be downloaded 
from [this website](https://sites.google.com/a/chromium.org/chromedriver/downloads)) is in your *PATH*.

2. Then using `pip`
```
pip install html2pdf_bookdown
```


