我不知道为什么您的代码当时失败了。可以像这样捕获 400 响应(例如abort call):
def abort(self):
try:
self.client.bots.abort_game(self.game_id)
return True
except requests.exceptions.HTTPError as herr:
if self.debug:
print (herr)
return False
请在下面找到一个稍微修改过的版本,它适用于Play-Chess-With-A-WebCam(我是提交者)的上下文中。您需要在 ~/.pcwawc/config.yaml 中有一个带有令牌的 config.yaml 文件:
# Play Chess With a Webcam configuration file
# WF 2019-12-21
token: YOUR_TOKEN_HERE
测试结果是:
gameStart {'type': 'gameStart', 'game': {'id': '20XfiEMn'}}
The game 20XfiEMn has started!
gameFull {'id': '20XfiEMn', 'variant': {'key': 'standard', 'name': 'Standard', 'short': 'Std'}, 'clock': None, 'speed': 'correspondence', 'perf': {'name': 'Correspondence'}, 'rated': False, 'createdAt': datetime.datetime(2019, 12, 23, 19, 54, 20, 470000, tzinfo=datetime.timezone.utc), 'white': {'id': 'seppl2019', 'name': 'seppl2019', 'title': 'BOT', 'rating': 1500, 'provisional': True}, 'black': {'id': 'wolfgangfahl', 'name': 'WolfgangFahl', 'title': None, 'rating': 1662, 'provisional': True}, 'initialFen': 'startpos', 'type': 'gameFull', 'state': {'type': 'gameState', 'moves': 'f2f3 d7d5', 'wtime': 2147483647, 'btime': 2147483647, 'winc': 0, 'binc': 0, 'bdraw': False, 'wdraw': False}}
chatLine {'type': 'chatLine', 'room': 'player', 'username': 'seppl2019', 'text': 'I got first, nerd!'}
test_lichess
'''
Created on 2019-12-21
@author: wf
'''
from pcwawc.lichess import Lichess
def test_stream():
gameid="20XfiEMn"
lichess=Lichess(debug=True)
gameid=lichess.waitForChallenge()
lichess.streamGame(gameid)
测试流()
lichess.py
'''
Created on 2019-12-21
@author: wf
'''
# https://github.com/rhgrant10/berserk
# https://berserk.readthedocs.io/en/master/
import berserk
import lichess.api
import os
import yaml
import requests
import time
class Account():
"""" Lichess account wrapper """
def __init__(self,adict):
self.adict=adict
self.id=adict["id"]
self.username=adict["username"]
pass
def __str__(self):
text="%s - (%s)" % (self.username,self.id)
return text
class Lichess():
""" Lichess adapter """
def __init__(self,debug=False):
self.debug=debug
token=self.getToken()
if token is not None:
self.session= berserk.TokenSession(token)
self.client=berserk.Client(self.session)
else:
self.client=None
def getAccount(self):
account=Account(self.client.account.get())
return account
def getToken(self):
home=os.getenv("HOME")
#print(home)
configPath=home+"/.pcwawc/config.yaml"
if not os.path.isfile(configPath):
print ("%s is missing please create it" % (configPath))
return None
config=yaml.load(open(configPath),Loader=yaml.FullLoader)
if not "token" in config:
print ("no token found in %s please add it" % (configPath))
return None
return config["token"]
def pgnImport(self,pgn):
payload = {
'pgn': pgn,
'analyse': 'on'
}
res = requests.post('https://lichess.org/import', data=payload)
print(res.url)
pass
def game(self,gameid):
game=lichess.api.game(gameid)
return game
def waitForChallenge(self):
# Stream whats happening and continue when we are challenged
in_game = False
client=self.client
while(not in_game):
time.sleep(0.5)
for event in client.bots.stream_incoming_events():
eventtype=event['type']
if self.debug:
print (eventtype,event)
if eventtype == 'gameStart':
game_id = event['game']['id']
in_game = True
break
elif eventtype == 'challenge':
game_id = event['challenge']['id']
client.bots.accept_challenge(game_id)
in_game = True
if self.debug:
print("The game %s has started!" % (game_id))
return game_id
# Stream the events of the game and respond accordingly
def streamGame(self,game_id):
playing = True
client=self.client
while(playing):
for event in client.bots.stream_game_state(game_id):
eventtype=event['type']
if self.debug:
print (eventtype,event)
if eventtype == 'gameFull':
if client.account.get()['username'] == event['white']['id']:
client.bots.post_message(game_id, "I got first, nerd!")
else:
client.bots.post_message(game_id, "You got first, nerd!")
requirements.txt 的摘录:
# lichess APIs
# https://github.com/rhgrant10/berserk
berserk
# https://github.com/cyanfish/python-lichess
python-lichess