Skip to content

Instantly share code, notes, and snippets.

@AO8
AO8 / isbn_lookup.py
Last active April 7, 2024 13:20
A simple ISBN lookup that uses Python and the Google Books API to display basic information about a book.
import urllib.request
import json
import textwrap
while True:
base_api_link = "https://www.googleapis.com/books/v1/volumes?q=isbn:"
user_input = input("Enter ISBN: ").strip()
with urllib.request.urlopen(base_api_link + user_input) as f: