Books_finder
1.0.0
Une application Flutter pour obtenir des informations sur les livres et les critiques de bonnes lectures en prenant la photo du code ISBN à l'aide du kit d'apprentissage automatique Firebase
Future <Book> get_review(String imagePath) async {
var info = new List<String>();
String isbn = await decode(imagePath);
//print(isbn);
String url = "https://www.goodreads.com/book/isbn?FORMAT=json&key=[###your goodreads API here###]&isbn=" + isbn;
final response = await http.get(url);
var book = new Book(" "," "," "," "," "," "," ");
if (response.statusCode == 200) {

