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)
Built Distribution
pychesscom-0.1.3-py3-none-any.whl
(15.1 kB
view hashes)
Close
Hashes for pychesscom-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a37835c915c36f82e2e6877350d8e3254c609846f0cc53137b63ffdc041e85ac |
|
MD5 | 7cb255b56f6a997db2fc19d9e43c43b3 |
|
BLAKE2b-256 | c2225905f723699ccd58385ed56b07b1116e10371fbfeeaecafd00563e258f22 |