chess-analytica 1.2.4
pip install chess-analytica
Released:
Making chess analytics easy.
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Aron Frishberg
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
Introduction
Chess-Analytica is a chess library that allows for the simple scraping of data using the chess.com API, and subsequent analysis of that data. Built on top of the python-chess library, Chess-Analytica allows for you to easily scrape all of a given player’s past (or current) games, filter the games down, and then analyze them.
from chess_analytica import Board, ChessDotCom
profile = ChessDotCom.Profile("aronfrish", False)
profile.filterGameType("rapid")
print(len(profile.games)) #720
n = 0
for game in profile.games : #Note: this is still filtered to rapid
if ("resignation" in game.termination) :
n += 1
print(n) #Note: this will print the number of the player's rapid games that ended in resignation
#334
italian_games = profile.find_games_with_FEN_and_Color("r1bqkbnr/pppp1ppp/2n5/4p3/2B1P3/5N2/PPPP1PPP/RNBQK2R", True) #Note: this FEN is the italian game and the target player color is white (because is_white is set to True)
print(len(italian_games)/len(profile.white_games)) #Note: this will print the percentage of rapid games (where the player is white) that the player has played the italian game
#0.013888888888888888
Installing
Download and install the latest release:
pip install chess-analytica
Documentation
Features
Scrape all game info from a given player’s profile
Simulate games and analyze them
Filter games by time control
License
Chess-Analytica is licensed under the MIT License. Check out LICENSE.txt for the full text.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: Aron Frishberg
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file chess-analytica-1.2.4.tar.gz
.
File metadata
- Download URL: chess-analytica-1.2.4.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4d254bf1ecaee4c4e230dd83a478eacda2b844c0a402dabcd581838990a76f9 |
|
MD5 | d897d8b35aa076649a49c1682bf8a6ae |
|
BLAKE2b-256 | b1ede7d5eabce6f4c8c51f1bdaf37d750528a6e848835883cc138cbf04fe8817 |
File details
Details for the file chess_analytica-1.2.4-py3-none-any.whl
.
File metadata
- Download URL: chess_analytica-1.2.4-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e6262619c2ff6e580abb0c260f6230cd35a4390ecf66836fe86b299d3911d5c |
|
MD5 | d76f208709e7ee20877774a8f8533ed7 |
|
BLAKE2b-256 | 280f3807634de125a780a63c5b8fb4a393f71aa6c0722c5680594d865652c2b2 |