Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ornicar/lichess-puzzler
https://github.com/ornicar/lichess-puzzler
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ornicar/lichess-puzzler
- Owner: ornicar
- License: mit
- Created: 2020-10-19T12:15:22.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T20:17:23.000Z (3 months ago)
- Last Synced: 2024-08-19T23:52:31.447Z (3 months ago)
- Language: Python
- Homepage:
- Size: 2.66 MB
- Stars: 129
- Watchers: 12
- Forks: 29
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lichess puzzler
---------------Let's renew the puzzle collection.
We'll produce a collection of new puzzles out of the lichess game database.We need a program that generates puzzles,
and one that allows manual validation and categorization of each and every puzzle.## Generator
Use stockfish and database.lichess.org to produce puzzle candidates.
Python is probably the language of choice because of
https://github.com/niklasf/python-chessThe generator posts candidates to the validator.
## Validator
Stores puzzle candidates and lets people review them with a web UI.
mongodb puzzle:
```
{
_id: 1, // incremental
createdAt: date,
gameId: string,
fen: string,
ply: number,
moves: [uci],
review: { // after a review was done
at: date,
score: 0-5, // quality
rating: 1200 // estimated rating
topics: [string],
}
}
```