# XPUB Library Library running on Flask and SQLight (maybe to be replaced with a python shelve) requirements.txt $ pip3 install -r requirements.txt initialise database $ bash init_db.sh run script python3 run.py ## API has currently 2 entrypoints: /api/books GETs all the books in the database /api/book/id GETs a specific book by its id ## Installation >For those on mac and using homebrew, it seems like Wand doesn't support imagemagick 7 yet as mentioned in other answers. >There's a new brew formula for Imagemagick 6 which can be used to install the older version in the meanwhile: >brew install imagemagick@6 >Create a symlink to this newly installed dylib file as mentioned in other answer to get things working. >ln -s /usr/local/Cellar/imagemagick@6//lib/libMagickWand-6.Q16.dylib /usr/local/lib/libMagickWand.dylib