This project has not been updated in over a year. Feel free to check out the code, however there could be multiple errors upon running it.
- Uses Lichess, which means that you need to have a Lichess account
- Only Classical and Rapid games because the Lichess API doesn't allow anything else
- This program uses SAN-notation, see the Important-section.
Lichs uses the Lichess API (more exactly berserk) to make it possible for you to play against other real players directly in the terminal on Lichess servers. If you like this project, be sure to also check out Nick Zuber's Chs-project, since it was his project that inspired me to do this in the first place.
This package is available on PyPi, therefore just run:
$ pip install lichs
and the program will be installed. The next step is to generate a personal API-key.
- Create a Lichess API token, log into Lichess if necessary
- Click the button
Submit
in the lower right corner - Copy the token shown in the brown box
- Jump into your terminal and write
lichs <api_token>
(put your API token instead of<api_token>
) and run the command. To get this clear, an example would have beenlichs lzRceo5XOUND74Lm
. You should then see a message to confirm that the API token has been saved.
You start playing by typing the command lichs
into your terminal:
$ lichs
That will take you to the intro screen:
Welcome to Lichess!
What kind of chess do you want to play?
1. Rapid (10+0)
2. Classical (30+0)
Enter 1 or 2:
That should be pretty self-explanatory, you basically choose between Rapid and Classical (the Lichess API doesn't support anything else) by entering either 1 or 2. The timing of the games is also listed there; Rapid is 10min and Classical 30min (without extra-time, I might add support for extra-time later)
When you have input either 1 or 2, the program will start to search after an opponent. It shouldn't take long and the game should start pretty quickly.
Searching after opponent...
An opponent was found!
Then the program will let you know whether you're the color white or black. After that you will start playing; the program will output the board after every move and ask for your move when it's your turn.
r n b q k b n r
p p p p p p p p
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . P . . .
P P P P . P P P
R N B Q K B N R
Above is an example of the board displayed.
When the program asks for your move, you need to input the move in standard algebraic notation (SAN). Basically, it specifies which piece to move and to where. As an example, to move a knight from g1 to f3, you type in Nf3 (N is for Knight, since King uses K). If you want to learn more, click on the link above.
The program will inform you if you can't make the move you have input.
Support for UCI-notation might get added later.
See the CONTRIBUTING.md file for how to contribute.