utils: Include instructions on installing requirments.

This commit is contained in:
Vishnu KS
2020-10-18 16:15:07 +05:30
parent a226450410
commit 3bbc985ea3
2 changed files with 10 additions and 1 deletions

View File

@@ -19,3 +19,12 @@ from `Goodreads` and `Google Search` API. And the result is stored in `utils/boo
Once the script completes the run, the `utils/books.json` file is copied to `app/src/data/books.json` **manually**.
And the website uses the data from `app/src/data/books.json` for generating the pages.
## Install packages for script
```bash
cd utils
virtualenv .
source bin/activate
pip install -r requirements.txt
```