Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added TV streaming #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Most if not all of the API is available:
client.board.stream_incoming_events
client.board.seek
client.board.stream_game_state
client.board.stream_tv_game
client.board.make_move
client.board.post_message
client.board.abort_game
Expand Down
9 changes: 9 additions & 0 deletions berserk/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,15 @@ def stream_game_state(self, game_id):
yield from self._r.get(path, stream=True,
converter=models.GameState.convert)

def stream_tv_game(self):
"""Get the stream of events for the current game on Lichess TV.

:return iterator over game states
"""
path = 'api/tv/feed'
yield from self._r.get(path, stream=True,
converter=models.GameState.convert)

def make_move(self, game_id, move):
"""Make a move in a board game.

Expand Down