-
-
Save abubelinha/3e0fb0b92f08a97abefed2faca78b25a to your computer and use it in GitHub Desktop.
A simple ISBN lookup that uses Python and the Google Books API to display basic information about a book.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib.request | |
import json | |
## import textwrap | |
import sqlite3 | |
database = sqlite3.connect(':memory:') | |
cur = database.cursor() | |
cur.execute('''CREATE TABLE minilib | |
(i INTEGER,isbn INTEGER, title TEXT, language text)''') | |
N=2 | |
index = 0 | |
while True: | |
index = index + 1 | |
base_api_link = "https://www.googleapis.com/books/v1/volumes?q=isbn:" | |
user_input = input("Enter ISBN: ").strip() | |
isbn = user_input | |
with urllib.request.urlopen(base_api_link + user_input) as f: | |
text = f.read() | |
### check first to see if user-input exist in templib | |
a = cur.execute('''SELECT * FROM minilib WHERE isbn=?''',[user_input]).fetchall() | |
if len(a) != 0: | |
print("\nBook with this ISBN exist in our minilibrary: ", a, "\n") | |
else: | |
print("\nBook with this ISBN does not exist in our minilibrary, New search required!", "\n") | |
print("\n searching ... \n") | |
decoded_text = text.decode("utf-8") | |
obj = json.loads(decoded_text) # deserializes decoded_text to a Python object | |
volume_info = obj["items"][0] | |
authors = obj["items"][0]["volumeInfo"]["authors"] | |
title = volume_info["volumeInfo"]["title"] | |
language = volume_info["volumeInfo"]["language"] | |
r = [index, user_input, title, language] | |
cur.execute('''INSERT INTO minilib (i, isbn, title, language) | |
VALUES (?,?,?,?)''', r) | |
print("Found: ISBN", isbn, ", Title: ", title, ", Language: ", language) | |
if index >= N: | |
cur.execute('''DELETE FROM templib WHERE rowid NOT IN | |
(SELECT rowid FROM minilib ORDER BY rowid LIMIT ?)''', [N]) | |
database.commit() | |
status_update = input("\nEnter another ISBN? y or n: ").lower().strip() | |
if status_update == "n": | |
print("\nThank you! Have a nice day.") | |
break | |
print("\n Our minilibrary so far has following books: \n") | |
for row in cur.execute('SELECT * FROM minilib ORDER BY i'): | |
print(row) | |
database.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment