openapi-spec
curl 'https://openlibrary.org/books/OL7353617M'
import requests
resp = requests.get("https://openlibrary.org/books/OL7353617M")
data = resp.json()
import zingu_apis
api = zingu_apis.api("openlibrary")
result = api.fetch("books/{olid}")
for item in result:
print(item)
const resp = await fetch("https://openlibrary.org/books/OL7353617M");
const data = await resp.json();