Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chezou/vangohan-pdf

Create English/Japanese printable PDF for Vangohan recipe
https://github.com/chezou/vangohan-pdf

Last synced: about 1 month ago
JSON representation

Create English/Japanese printable PDF for Vangohan recipe

Awesome Lists containing this project

README

        

# Vangohan Recipe to PDF

If you execute locally, run:

```sh
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt -c constraints.txt
$ python fetch_vangohan.py
$ ls results
vangohan.pdf vangohan_en.pdf
```

Or, you can run by creating Docker image as:

```sh
$ docker build -t vangohan-pdf:latest ./
$ mkdir tmp
$ docker run --rm -it -t -v $(pwd)/tmp:/opt/app/results vangohan-pdf:latest
$ ls tmp
vangohan.pdf vangohan_en.pdf
```