https://bookquery.herokuaapp.com/api/ + book-ISBN
- Link here
- Remember to check the pip installation box or install it separately
$ pip install Flask
$ pip install SQLAlchemy
$ pip install Flask-Session
$ pip install Werkzeug
$ pip install requests$ git clone https://github.com/honghainguyen777/bookquery.git
$ cd bookquery# Install requrements for the application (pip or pip3)
$ pip3 install -r requirements.txt
# set environment variable (Windows)
$ set FLASK_APP=application.py
$ set FLASK_DEBUG=1
$ set DATABASE_URL= (paste Postgres database URI here, register see below)
# set environment variable (for Mac or Linux)
$ export FLASK_APP=application.py
$ export FLASK_DEBUG=1
$ export DATABASE_URL= (paste Postgres database URI here, register see below)$ python import.py$ flask run- Register for a free account https://www.heroku.com/
- On Heroku's Dashboard click "New" and choose "Create new app."
- Name your app and "Create app"
- On your "Overview" page, click "Configure Add-ons"
- In the "Add-ons", and select a free "Heroku Postgres"
- Choose the "Hobby Dev - Free" plan
- Click "Heroku Postgress:: Database"
- Click "Setings" and the "View Credentials" you can find all needed information
Alternative: Download your own through this link






