Skip to content

Instantly share code, notes, and snippets.

View miladkiaee's full-sized avatar
🐮
Mu

Milad Kiaee miladkiaee

🐮
Mu
View GitHub Profile
@miladkiaee
miladkiaee / isbn_lookup.py
Last active February 25, 2023 08:50 — forked from AO8/isbn_lookup.py
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
import sqlite3
database = sqlite3.connect(':memory:')
cur = database.cursor()