How can I lookup data about a book from its barcode number? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:09:22Z http://stackoverflow.com/feeds/question/106963 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number 17 How can I lookup data about a book from its barcode number? Joel Spolsky 2008-09-20T03:28:34Z 2009-01-28T01:48:04Z <p>I'm building the world's simplest library application. All I want to be able to do is scan in a book's UPC (barcode) using a typical scanner (which just types the numbers of the barcode into a field) and then use it to look up data about the book... at a minimum, title, author, year published, and either the Dewey Decimal or Library of Congress catalog number.</p> <p>The goal is to print out a tiny sticker ("spine label") with the card catalog number that I can stick on the spine of the book, and then I can sort the books by card catalog number on the shelves in our company library. That way books on similar subjects will tend to be near each other, for example, if you know you're looking for a book about accounting, all you have to do is find SOME book about accounting and you'll see the other half dozen that we have right next to it which makes it convenient to browse the library.</p> <p>There seem to be lots of web APIs to do this, including Amazon and the Library of Congress. But those are all extremely confusing to me. What I really just want is a single higher level function that takes a UPC barcode number and returns some basic data about the book.</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/106987#106987 5 Answer by Philip Rieck for How can I lookup data about a book from its barcode number? Philip Rieck 2008-09-20T03:36:24Z 2008-09-20T06:08:54Z <p><strong>Edit</strong> It would be pretty easy if you had ISBN. but converting from UPC to ISBN is not as easy as you'd like.</p> <p>Here's some javascript code for it from <a href="http://isbn.nu" rel="nofollow">http://isbn.nu</a> where it's done in script</p> <pre><code>if (indexisbn.indexOf("978") == 0) { isbn = isbn.substr(3,9); var xsum = 0; var add = 0; var i = 0; for (i = 0; i &lt; 9; i++) { add = isbn.substr(i,1); xsum += (10 - i) * add; } xsum %= 11; xsum = 11 - xsum; if (xsum == 10) { xsum = "X"; } if (xsum == 11) { xsum = "0"; } isbn += xsum; } </code></pre> <p>However, that only converts from UPC to ISBN <em>some</em> of the time.</p> <p>You may want to look at the <a href="http://www.eblong.com/zarf/bookscan/" rel="nofollow">barcode scanning project page</a>, too - one person's journey to scan books.</p> <p>So you know about <a href="http://www.amazon.com/AWS-home-page-Money/b?ie=UTF8&amp;node=3435361" rel="nofollow">Amazon Web Services</a>. But that assumes amazon has the book and has scanned in the UPC.</p> <p>You can also try the <a href="http://www.upcdatabase.com/" rel="nofollow">UPCdatabase</a> at <a href="http://www.upcdatabase.com/item/" rel="nofollow">http://www.upcdatabase.com/item/</a>{UPC}, but this is also incomplete - at least it's growing..</p> <p>The library of congress database is also incomplete with UPCs so far (although it's pretty comprehensive), and is harder to get automated.</p> <p>Currently, it seems like you'd have to write this yourself in order to have a high-level lookup that returns simple information (and tries each service)</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/107024#107024 1 Answer by sblundy for How can I lookup data about a book from its barcode number? sblundy 2008-09-20T03:53:41Z 2008-09-20T03:53:41Z <p>My librarian wife uses <a href="http://www.worldcat.org/" rel="nofollow">http://www.worldcat.org/</a>, but they key off ISBN. If you can scan that, you're golden. Looking at a few books, it looks like the UPC is the same or related to the ISBN.</p> <p>Oh, <a href="http://www.eblong.com/zarf/bookscan/#convert" rel="nofollow">these guys</a> have a function for doing the conversion from UPC to ISBN.</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/107032#107032 30 Answer by curtisk for How can I lookup data about a book from its barcode number? curtisk 2008-09-20T03:56:30Z 2008-09-21T00:20:54Z <p>There's a very straightforward web based solution over at ISBNDB.com that you may want to look at.</p> <p><a href="http://isbndb.com/docs/api/" rel="nofollow">http://isbndb.com/docs/api/</a></p> <p>You can be up and running in just a few minutes:</p> <ul> <li>register on the site and get a key to use the API</li> <li><p>try a URL like:</p> <p><code>http://isbndb.com/api/books.xml?access_key=</code><em>{yourkey}</em><code>&amp;index1=isbn&amp;results=details&amp;value1=9780143038092</code></p></li> </ul> <p>The results=details gets additional details including the card catalog number.</p> <p>As an aside, generally the barcode is the isbn in either isbn10 or isbn13. You just have to delete the last 5 numbers if you are using a scanner and you pick up 18 numbers.</p> <p>Here's a sample response:</p> <pre><code>&lt;ISBNdb server_time="2008-09-21T00:08:57Z"&gt; &lt;BookList total_results="1" page_size="10" page_number="1" shown_results="1"&gt; &lt;BookData book_id="the_joy_luck_club_a12" isbn="0143038095"&gt; &lt;Title&gt;The Joy Luck Club&lt;/Title&gt; &lt;TitleLong/&gt; &lt;AuthorsText&gt;Amy Tan, &lt;/AuthorsText&gt; &lt;PublisherText publisher_id="penguin_non_classics"&gt;Penguin (Non-Classics)&lt;/PublisherText&gt; &lt;Details dewey_decimal="813.54" physical_description_text="288 pages" language="" edition_info="Paperback; 2006-09-21" dewey_decimal_normalized="813.54" lcc_number="" change_time="2006-12-11T06:26:55Z" price_time="2008-09-20T23:51:33Z"/&gt; &lt;/BookData&gt; &lt;/BookList&gt; &lt;/ISBNdb&gt; </code></pre> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/107034#107034 3 Answer by davenpcj for How can I lookup data about a book from its barcode number? davenpcj 2008-09-20T03:57:09Z 2008-09-20T03:57:09Z <p>Sounds like the sort of job one might get a small software company to do for you...</p> <p>More seriously, there are services that provide an interface to the ISBN catalog, www.literarymarketplace.com.</p> <p>On worldcat.com, you can <a href="http://www.worldcat.org/links/default.jsp#isbn" rel="nofollow">create a URL using the ISBN</a> that will take you straight to a book detail page. That page isn't as very useful because it's still HTML scraping to get the data, but they have a link to download the book data in a couple "standard" formats.</p> <p>For example, their demo book: <a href="http://www.worldcat.org/isbn/9780060817084" rel="nofollow">http://www.worldcat.org/isbn/9780060817084</a> Has a "EndNote" format download link <a href="http://www.worldcat.org/oclc/123348009?page=endnote&amp;client=worldcat.org-detailed_record" rel="nofollow">http://www.worldcat.org/oclc/123348009?page=endnote&amp;client=worldcat.org-detailed_record</a>, and you can harvest the data from that file very easily. That's linked from their own OCLC number, not the ISBN, but the scrape to convert that isn't hard, and they may yet have a good interface to do it.</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/107037#107037 1 Answer by Doug L. for How can I lookup data about a book from its barcode number? Doug L. 2008-09-20T03:57:24Z 2008-09-20T03:57:24Z <p>Using the web site <a href="http://www.librarything.com" rel="nofollow">Library Thing</a>, you can scan in your barcodes (the entire barcode, not just the ISBN - if you have a scanning "wedge" you're in luck) and build your library. (It is an excellent social network - think StackOverflow for book enthusiasts.)</p> <p>Then, using the TOOLS section, you can export your library. Now you have a text file to import/parse and can create your labels, a card catalog, etc.</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/107105#107105 1 Answer by JohnMeyers for How can I lookup data about a book from its barcode number? JohnMeyers 2008-09-20T04:28:49Z 2008-09-20T04:39:05Z <p>I'm afraid the problem is database access. Companies pay to have a UPC assigned and so the database isn't freely accessible. The <a href="http://www.upcdatabase.com/" rel="nofollow">UPCdatabase</a> site mentioned by Philip is a start, as is <a href="http://upcdata.info/" rel="nofollow">UPCData.info</a>, but they're user entered--which means incomplete and possibly inaccurate.</p> <p>You can always enter in the UPC to Google and get a hit, but that's not very automated. But it does get it right most of the time.</p> <p>I thought I remembered Jon Udell doing something like this (e.g., <a href="http://weblog.infoworld.com/udell/LibraryLookup" rel="nofollow">see this</a>), but it was purely ISBN based.</p> <p>Looks like you've found a new project for someone to work on!</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/169778#169778 7 Answer by Tim Spalding for How can I lookup data about a book from its barcode number? Tim Spalding 2008-10-04T05:12:17Z 2008-10-04T05:12:17Z <p>Note: I'm the LibraryThing guy, so this is partial self-promotion.</p> <p>Take a look at this StackOverflow answer, which covers some good ways to get data for a given ISBN.</p> <p><a href="http://stackoverflow.com/questions/41469/how-to-fetch-a-book-title-from-an-isbn-number">http://stackoverflow.com/questions/41469/how-to-fetch-a-book-title-from-an-isbn-number</a></p> <p>To your issues, Amazon includes a simple DDC (Dewey); Google does not. The WorldCat API does, but you need to be an OCLC library to use it. </p> <p>The ISBN/UPC issue is complex. Prefer the ISBN, if you can find them. Mass market paperbacks sometimes sport UPCs on the outside and an ISBN on inside. </p> <p>LibraryThing members have developed a few pages on the issue and on efforts to map the two.</p> <p><a href="http://www.librarything.com/wiki/index.php/UPC" rel="nofollow">http://www.librarything.com/wiki/index.php/UPC</a> <a href="http://www.librarything.com/wiki/index.php/CueCat:_ISBNs_and_Barcodes" rel="nofollow">http://www.librarything.com/wiki/index.php/CueCat:_ISBNs_and_Barcodes</a></p> <p>If you buy from Borders your book's barcodes will all be stickered over with their own internal barcodes (called a "BINC"). Most annoyingly whatever glue they use gets harder and harder to remove cleanly over time. I know of no API that converts them. LibraryThing does it by screenscraping.</p> <p>For an API, I'd go with Amazon. LibraryThing is a good non-API option, resolving BINCs and adding DDC and LCC for books that don't have them by looking at other editions of the "work." </p> <p>What's missing is the label part. Someone needs to create a good PDF template for that.</p> http://stackoverflow.com/questions/106963/how-can-i-lookup-data-about-a-book-from-its-barcode-number/486182#486182 1 Answer by Simon for How can I lookup data about a book from its barcode number? Simon 2009-01-28T01:48:04Z 2009-01-28T01:48:04Z <p>If you're wanting to use Amazon you can implement it easily with <a href="http://weblogs.asp.net/fmarguerie/archive/2006/06/26/introducing-linq-to-amazon.aspx" rel="nofollow">LINQ to Amazon</a>.</p>