Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chezou/vangohan-pdf
- Owner: chezou
- License: mit
- Created: 2023-09-01T23:35:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-27T18:09:35.000Z (about 2 months ago)
- Last Synced: 2024-11-27T19:25:12.536Z (about 2 months ago)
- Language: Python
- Size: 89.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```