Metadata-Version: 2.1
Name: chess.com
Version: 1.2
Summary: Python Wrapper around Chess.com API
Home-page: https://github.com/saradzhyanartur/chessdotcom
Author: Artur Saradzhyan
Author-email: saradzhyanartur@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: urllib3 (==1.25.9)
Requires-Dist: certifi (==2020.4.5.1)

# Python Chess.com Wrapper
Python wrapper around Chess.com API.
## Description & Implementation
A full Python Wrapper around Chess.com API which provides public data from the chess.com website. All endpoints provided by Chess.com's API are available in the respectively named methods. 
## Usage
Please refer to https://www.chess.com/news/view/published-data-api for detailed instructions for Chess.com API. Detailed documentation specifically for the module will soon be available. Below is a simple example of the usage.
``` python
from chessdotcom import get_player_profile

data = get_player_profile("fabianocaruana")
print(data.json)
```


