Warning
This package is currently in Alpha development, so download at your own risk.
Simplified API Wrapper for Hardcover, written in Python.
Hardcover is a Goodreads alternative where the focus is on building a better replacement while providing a publicly-accessible API for all users to explore and use in their various other projects.
In this context, hardpycover is born out of an interest to develop a Python API Wrapper in the same vein as TMDB's API. Powered by sgqlc and pydantic, this wrapper intentionally provides an extra layer of abstraction to ensure that the API use is not just effective, but also efficient and safe-to-use.
pip
pip install hardpycover
uv
uv add hardpycover
Note
Using hardpycover requires having an API Key from Hardcover. To avail of an API Key, create a Hardcover account and then go to https://hardcover.app/account/api.
import os
from hardpycover import Hardcover
# Store your API_KEY in an .env file
API_KEY=abcdefg12345
# ...
token = os.environ["API_KEY"]
# create hardcover instance
hc = Hardcover(token=token)Getting User Information
hc.query.user_profile(['id', 'bio', 'created_at', 'username'])
# > {
# 'id': 2,
# 'bio' 'Lorem ipsum dolores amit',
# 'created_at': '2025-06-23T10:10:10.32341Z',
# 'username': 'kennyrogers'
# }For more use cases, read the available methods found at main.py.
MIT License – Free to use, modify, and share.