Slashdot Mirror


Internet Book Database?

Anonymous Coward writes "Just about everyone has used either the CDDB or freedb CD databases. And many people are also familiar with DVD Profiler, a well developed database for DVD fans. Each of these public databases have a number of wonderful strengths, and a few weaknesses, but they are well thought out and well developed. After searching Google, sourceforge and every other search engine I could think of, I have come to the conclusion that there is not a well developed internet book database. While many people would be quick to point out the various commercial websites (Amazon, Barnes and Noble, etc), and the various library databases (Library of Congress, Boston Public Library, and other online catalogs), none of these online databases offer the same ease of use of DVD Profiler, or the open structure of the online CD databases. The closest program I could find was the shareware program Readerware. This program will search several web sites and download the pertinent information, but it is extremely inefficient, as it does not then store the data in a central database to make it easier for the other users, and in my opinion, the UI is terrible. What programs, if any, do those of you reading /. use to keep track of your books? If you were to start an open source internet book database project, what features would you include in it?" Books in Print is the definitive book database; apparently it costs about $30,000/year to license it.

8 of 231 comments (clear)

  1. The Example of CDDB by Alien54 · · Score: 5, Interesting
    I am concerned about the prior example of the CDDB, where all of these people contributed tyo this great resource, only to have the resource get sold off and commercialized and turned into a tool to track users, etc.

    So While I really like the idea of the database, I do not like the possibility of the thievery of honest work by generous people.

    Is there someway so that this could be donated into the public domain or something from day one?

    (just trying to wrap my mushy mind around this for the moment.)

    --
    "It is a greater offense to steal men's labor, than their clothes"
  2. Re:To keep track of my books? by Lemmy+Caution · · Score: 5, Insightful

    In conjunction with a barcode scanner/CueCat, it could make it a lot easier to start private libraries. I have a couple thousand books, about a hundred of which I lend out at any given time. Be nice to make a catalog, and a freely available cddb-like ISBN-based system would make that a lot easier.

  3. Would be good for small libraries worldwide by line-bundle · · Score: 5, Insightful

    Some people ask `what is the point?'.

    My answer to that is the following: It would be nice to be able to lookup info about a book, given a small amount of information. Suppose you are a library and you want to catalogue books. Instead of having to type in all the information yourself you could just type in the ISBN and all the information get downloaded to the local catalogue.

    I have had to make a database and enter data for a library and that would make life a lot easier!.

  4. Free Library Databases - and a protocol by outlier · · Score: 5, Informative

    Most large university libraries have free (beer) databases that typically contain huge numbers of books (many that are not held by the library).

    For example, see mirlyn.web.lib.umich.edu and sign in as a guest and you can do all sorts of searches.

    These libraries typically use the Z39.50 standard to connect. Z39.50 is a pretty decent standard, and it is widely used, standardized, and allows you to connect to many many databases.

    Sounds like this could be what you're looking for.

  5. Re:What would be the point? by hoggoth · · Score: 5, Informative

    Then just stick the ISBN numbers into MySQL, an Excel spreadsheet, or an Access database.
    Then write a quicky Perl script to scan through the records and any that don't have all the information filled in, go scrub it off of Amazon's web site.
    I've already written several Perl scripts that scrub data from Amazon. It's pretty simple.

    (hint:

    use LWP::Simple;
    $page = get http://www.amazon.com/exec/obidos/ASIN/$isbn;
    ($d esc, $pgs, $price, $other) = $page =~ /use regex to find (desc) and (pgs) and (price) and (other) usefull stuff/;

    )

    --
    - For the complete works of Shakespeare: cat /dev/random (may take some time)
  6. Here are some useful links... by sailracer6 · · Score: 5, Informative
    The UPC Database

    You can add entries here for ANYTHING with a standard UPC, so some books are in here. Very useful.


    The Book-Scanning Project

    This guy wrote some Python scripts to convert UPC's to ISBN's - it can be done - and then feed them into Amazon's search engine. Very interesting, and he's already done it, so he has some experience.

  7. feed this page an isbn, get XML out by Pinball+Wizard · · Score: 5, Informative
    if you are looking for XML data, feel free to use this page(asp at the moment, but it will soon be redone in perl).


    The important thing is it outputs XML, so if you want to build an interface to it for your own application, you can. Its not a 100% complete database, but it should give you basic information on any book available.


    I wrote this specifically for external search engines back when XML was the new hot thing. Funny thing is, the sites that search us usually want an FTP data feed, so this doesn't really get used much. But again, feel free(be reasonable if you use a bot - maybe limit your bot to a search every 5-10 seconds, please).

    --

    No, Thursday's out. How about never - is never good for you?

  8. Re:For items out of copywrite... by lkaos · · Score: 5, Interesting

    http://www.gutenberg.org

    is the official url IIRC

    absolutely wonderful resource. they have a ton of books and the transcriptions are of pretty high quality--the have an excellent qa process.

    --
    int func(int a);
    func((b += 3, b));