Skip to content

scholnicks/isbndb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

isbndb

Java Library for interacting with the isbndb REST endpoints. There is a default 1 second interval betweeen calls, which is enforced as a minimum.

isbndb library is dependent on the following libraries:

import java.util.List;
import net.scholnick.isbndb.BooksProxy;
import net.scholnick.isbndb.domain.Author;
import net.scholnick.isbndb.domain.Book;


// all books with virus in the title
List<Book> books = BooksProxy.getInstance().getBooks("virus");

// exact book by ISBN
Book book = BooksProxy.getInstance().getBookByISBN("9780684853505");

// Title with spaces (BooksProxy automatically handles the spaces)
List<Book> books = BooksProxy.getInstance().getBooks("bag of bones");

net.scholnick.isbndb.BooksProxy must know your isbn developer API key. Two methods:

BooksProxy.getInstance().setDeveloperKey("YOUR_KEY"); // before any getBooks() calls

Create isbndb.properties and store it in your classpath

developer.key=YOUR_KEY

About

Library for interacting with the isbndb REST endpoints

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages