Skip to main content

Async Chess.com public API client

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

chesscom-guru

Async Python client for the Chess.com Public API.

Built on aiohttp with automatic retries for rate limits and server errors. Doesn't mess with your logging config. Supports time-based filtering and concurrent month fetching.

Install

pip install chesscom-guru

Requires Python 3.9+.

Quickstart

import asyncio
import aiohttp
from chesscom_guru import ChesscomAPI

async def main():
    async with aiohttp.ClientSession() as session:
        api = ChesscomAPI(session, user_agent="my-app/1.0")
        
        profile = await api.get_player("erik")
        print(profile.get("username"), profile.get("country"))
        
        data = await api.get_games("erik", max_concurrency=8)
        print("months fetched:", len(data["months"]))
        
        first_month = next(iter(data["months"].values()))
        print("games in first month:", len(first_month.get("games", [])))

asyncio.run(main())

You can also pass a custom user agent via headers:

api = ChesscomAPI(session, headers={"User-Agent": "my-app/1.0"})

Return structure

get_games() returns a dict with these keys:

{
  "username": "erik",
  "archives": ["https://api.chess.com/pub/player/erik/games/2024/06", ...],
  "months": {
    "https://api.chess.com/pub/player/erik/games/2024/06": {
      "games": [{...}, {...}, ...]
      # full month payload from chess.com
    }
  },
  "errors": {
    "https://...": "ClientError(...)"
    # month URLs that failed to fetch
  },
  "from_ts": "2024-01-01T00:00:00+00:00",  # or None
  "to_ts": "2024-06-30T23:59:59+00:00"     # or None
}

If a monthly archive fails to fetch, it shows up in errors but doesn't kill the whole request.

Time filtering

Pass from_ts and/or to_ts as datetime objects to filter by game end time. Both should be UTC (naive datetimes are assumed to be UTC).

from datetime import datetime, timezone

from_ts = datetime(2024, 1, 1, tzinfo=timezone.utc)
to_ts = datetime(2024, 6, 30, 23, 59, 59, tzinfo=timezone.utc)

data = await api.get_games("erik", from_ts=from_ts, to_ts=to_ts)

The filter works in two passes: first it skips months outside your time range, then it filters individual games by end_time within the months that remain.

Concurrency control

max_concurrency limits how many month requests run in parallel:

data = await api.get_games("erik", max_concurrency=5)

Default is 10. If you're hitting rate limits, lower it. If you want faster fetching and the API can handle it, raise it.

Logging

The library uses Python's standard logging but doesn't configure anything by default. If you want to see retry warnings or debug output:

import logging
logging.basicConfig(level=logging.WARNING)

Set level to INFO or DEBUG for more detail.

API methods

ChesscomAPI(
    session,
    base_url="https://api.chess.com/pub",
    timeout_sec=20,
    user_agent="chesscom-guru/0.1.0",
    headers=None
)

api.get_player(username)
api.get_archives(username)
api.get_games(username, max_concurrency=10, from_ts=None, to_ts=None)

License

PolyForm Noncommercial 1.0.0 — free for noncommercial use.
Commercial licensing: richramsell@proton.me

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chesscom_guru-0.1.5.tar.gz (7.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chesscom_guru-0.1.5-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file chesscom_guru-0.1.5.tar.gz.

File metadata

  • Download URL: chesscom_guru-0.1.5.tar.gz
  • Upload date:
  • Size: 7.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.5

File hashes

Hashes for chesscom_guru-0.1.5.tar.gz
Algorithm Hash digest
SHA256 336e8c7ffc85ae3b2e9e78a38f2b6b950f06e9408ba83bb6a670c6206e645a8a
MD5 60afabeae4a6352906b65faf424d1767
BLAKE2b-256 b6b564cedb472e5caa86c6d2159390afb9fe68cb17fe903057e380ce84014e26

See more details on using hashes here.

File details

Details for the file chesscom_guru-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for chesscom_guru-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 fa8cce7f2b6e70a5534b6b96202b73e19e0c4058be9c9bc853a100cea1753598
MD5 e0f65dc18a96f68937ded2dc7be7db57
BLAKE2b-256 68cb46b15ea27423d5c893120e900c959145b24ce788e23f43fa94f2aeef4ae7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page