Skip to content

Instantly share code, notes, and snippets.

View housamz's full-sized avatar

Housam Ziad housamz

View GitHub Profile
@housamz
housamz / book_isbn_query.py
Last active January 23, 2020 10:41
Python requests script that queris Google books API for book info using ISBN
import urllib.request
import json
book_ISBN = "9780307277671"
google_api = "https://www.googleapis.com/books/v1/volumes?q=isbn:"
with urllib.request.urlopen(google_api + book_ISBN) as f:
text = f.read()