This commit is contained in:
Loic Guegan 2020-04-24 18:35:25 +02:00
parent e9f1e4e724
commit ba6a3ff28d
2 changed files with 3 additions and 4 deletions

View file

@ -1,7 +1,6 @@
# Lichess Game Notification # Lichess Games Notifications
### How to use it ? ### How to use it ?
1. Install [Berserk](https://github.com/rhgrant10/berserk) with `pip install berserk` 1. Install [Berserk](https://github.com/rhgrant10/berserk) with `pip install berserk`
2. Generate an access token on [Lichess.org](https://lichess.org) 2. Generate an access token on [Lichess.org](https://lichess.org)
3. Set the value of **ACCESS_TOKEN** variable in *notify.py* to the one use in step 2 3. Set the value of **ACCESS_TOKEN** variable in *notify.py* to the one use in step 2

View file

@ -3,7 +3,7 @@
import berserk, subprocess import berserk, subprocess
# Change ACCESS TOKEN according to your need # Change ACCESS TOKEN according to your need
ACCESS_TOKEN="EiZbLRtZzWnTL4xh" ACCESS_TOKEN=""
# Notify using notify-send # Notify using notify-send
@ -20,5 +20,5 @@ for game in data:
opponent=game["opponent"]["username"] opponent=game["opponent"]["username"]
lastMove=game["lastMove"] lastMove=game["lastMove"]
if game["isMyTurn"]: if game["isMyTurn"]:
notify_send("Lichess ("+opponent+")","It is your turn !\n Your oppenent played "+lastMove) notify_send("Lichess.org ("+opponent+")","It is your turn !\n Your opponent played "+lastMove)