faset over fra Z3950 til google books

This commit is contained in:
2010-09-23 13:57:37 +00:00
parent d173b9396e
commit 644e79f9b5
221 changed files with 60948 additions and 27273 deletions

View File

@@ -0,0 +1,18 @@
from web.library.models import *
from gdata.books.service import BookService
exit_commands = ['exit', 'abort', 'quit', 'bye', 'eat flaming death', 'q']
def get_book_loop():
service = BookService(source='Programvareverkstedet - Worblehat - 0.1a ')
while True:
input = raw_input('Enter ISBN number> ')
if input in exit_commands:
break
feed = service.search_by_keyword('isbn='+input)
if len(feed.entry) == 0:
print "No items found"
elif len(feed.entry) == 1:
print "Found one item: "+feed.entry[0].title.text
else:
print "Found several items, OWNOES!"