Book recommender api written in flask framework. The API
is written for solving my diplom project work. I wanted this kind of API
, but not found.
So, I decided to write my own. It is free to use. You can apply this api to your own recommendation projects. Good luck!
For building this API
, I used sklearn
, pandas
, numpy
and flask
.
- recommendation for books works based on user ratings
- using
sklearn.neighbors.NearestNeighbors
we find best suited books - in future I'll try to add other advanced recommendation techniques
https://bookrecommenderapi.herokuapp.com/
api/books/all
- returns all booksapi/books?title=BookTitle
- returns the book (or multiple books) based on search. If not found then returns emptyJSON
arrayapi/books/recommend?title=BookTitle
returnsJSON ARRAY
recommended books based on searched book.
follow me :)