Metadata-Version: 2.3
Name: google-books-api
Version: 0.1.3
Summary: 
Author: UltraViolet33
Author-email: 93035200+UltraViolet33@users.noreply.github.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: easy-http-requests (>=0.5.1,<0.6.0)
Description-Content-Type: text/markdown

## Google Books API

Usage:
```python

from google_books_api.google_books_api import GoogleBookApi

api = GoogleBookApi("Google Books API URL")

# Search for books
books = api.search_by_title("Python")
print(books)

# Get book by id
book = api.get_by_id("id")
print(book.title)
```
