Skip to content

benbacardi/GoogleBooksKit

Repository files navigation

GoogleBooksKit

GoogleBooksKit is a Swift package for interacting with the Google Books APIs.

Usage

Start by initialising a GoogleBooks instance. A valid API key must be providied:

import GoogleBooksKit

let client = GoogleBooks(apiKey: "")

Searching

let searchTerm = "A Day of Fallen Night"
if let results = client.search(searchTerm) {
    print("Found \(results.totalItems) results.")
} else {
    print("No results.")
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages