Allows some interaction with the Open Library API using an object-based interface.
This package can be installed via Composer:
composer require beezus/openlibrary-php
<?php
// This file is generated by Composer
require_once __DIR__ . '/vendor/autoload.php';
use OpenLibrary\API\Client as OpenLibraryAPI;
$api = new OpenLibraryAPI();
$book = $api->getBookByOLID( 'OL24222743M' );
echo $book->title;