This project provides organized data about the contents of a library.
Alpha released.
Build the Docker image:
docker build -t library-org .
Run the Docker image:
docker run \
-p 5000:5000
-v /path/to/library.cfg:/app/library.cfg \
-v /path/to/books.sqlite:/app/database/books.sqlite \
localhost/library-org:latest
Programmable Web lists 49 library APIs: http://www.programmableweb.com/category/library%2Breference/apis?category=20272%2C20066 librarything seems to be a very good 'tooling' api: http://www.librarything.com/api
Database is currently unique on isbn, we care about being unique on open library id, maybe isbn. There is a place in control flow, the new book form that still relies on ISBN being unique. This should probably wholesale convert to LCCN and still allow people to enter by isbn for convenience. This adds some complexity as there are a great many isbns for one book.