├── .gitignore ├── LICENSE ├── README.md ├── match_chesscom.gif ├── match_lichess.gif ├── requirements.txt ├── run.bat └── src ├── assets └── pawn_32x32.png ├── grabbers ├── chesscom_grabber.py ├── grabber.py └── lichess_grabber.py ├── gui.py ├── overlay.py ├── stockfish_bot.py └── utilities.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | stockfish 3 | __pycache__ 4 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/README.md -------------------------------------------------------------------------------- /match_chesscom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/match_chesscom.gif -------------------------------------------------------------------------------- /match_lichess.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/match_lichess.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | venv\Scripts\python.exe src\gui.py -------------------------------------------------------------------------------- /src/assets/pawn_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/assets/pawn_32x32.png -------------------------------------------------------------------------------- /src/grabbers/chesscom_grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/grabbers/chesscom_grabber.py -------------------------------------------------------------------------------- /src/grabbers/grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/grabbers/grabber.py -------------------------------------------------------------------------------- /src/grabbers/lichess_grabber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/grabbers/lichess_grabber.py -------------------------------------------------------------------------------- /src/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/gui.py -------------------------------------------------------------------------------- /src/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/overlay.py -------------------------------------------------------------------------------- /src/stockfish_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/stockfish_bot.py -------------------------------------------------------------------------------- /src/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanagiotisIatrou/PawnBit/HEAD/src/utilities.py --------------------------------------------------------------------------------