GoogleBooksKit is a Swift package for interacting with the Google Books APIs.
Start by initialising a GoogleBooks instance. A valid API key must be providied:
import GoogleBooksKit
let client = GoogleBooks(apiKey: "")let searchTerm = "A Day of Fallen Night"
if let results = client.search(searchTerm) {
print("Found \(results.totalItems) results.")
} else {
print("No results.")
}