Skip to main content

An asynchronous Python client for Chess.com's API

Project description

pychesscom

An asynchronous Python client for Chess.com's API

Installation

Python 3.7 or higher is required

To install stable version from PyPI (recommended):

pip install pychesscom

To install development version:

$ git clone https://github.com/vopani/pychesscom
$ cd pychesscom
$ python3 -m pip install -r requirements.txt

Usage

Jupyter Notebook
from pychesscom import ChessComClient

client = ChessComClient()
response = await client.player.get_details('erik')
print(response)
Python Console
import asyncio
from pychesscom import ChessComClient

async def main():
	client = ChessComClient()
	response = await client.player.get_details('erik')
	print(response)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Documentation

https://pychesscom.readthedocs.io/

License

This project is licensed under the Apache License 2.0. See LICENSE for more information.

Credits

Chess.com API: https://www.chess.com/news/view/published-data-api
Lichess Python client: https://github.com/amasend/lichess_python_SDK

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

pychesscom-0.1.3.tar.gz (6.2 kB view hashes)

Uploaded Source

Built Distribution

pychesscom-0.1.3-py3-none-any.whl (15.1 kB view hashes)

Uploaded Python 3

Supported by

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