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

small adjustments #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
150 changes: 75 additions & 75 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,81 +53,81 @@ Most if not all of the API is available:

.. code-block:: python

client.account.get
client.account.get_email
client.account.get_preferences
client.account.get_kid_mode
client.account.set_kid_mode
client.account.upgrade_to_bot

client.users.get_puzzle_activity
client.users.get_realtime_statuses
client.users.get_all_top_10
client.users.get_leaderboard
client.users.get_public_data
client.users.get_activity_feed
client.users.get_by_id
client.users.get_by_team
client.users.get_live_streamers
client.users.get_users_followed
client.users.get_users_following
client.users.get_rating_history

client.teams.get_members
client.teams.join
client.teams.leave
client.teams.kick_member

client.games.export
client.games.export_by_player
client.games.export_multi
client.games.get_among_players
client.games.get_ongoing
client.games.get_tv_channels

client.challenges.create
client.challenges.create_ai
client.challenges.create_open
client.challenges.create_with_accept
client.challenges.accept
client.challenges.decline

client.board.stream_incoming_events
client.board.seek
client.board.stream_game_state
client.board.make_move
client.board.post_message
client.board.abort_game
client.board.resign_game
client.board.handle_draw_offer
client.board.offer_draw
client.board.accept_draw
client.board.decline_draw

client.bots.stream_incoming_events
client.bots.stream_game_state
client.bots.make_move
client.bots.post_message
client.bots.abort_game
client.bots.resign_game
client.bots.accept_challenge
client.bots.decline_challenge

client.tournaments.get
client.tournaments.create
client.tournaments.export_games
client.tournaments.stream_results
client.tournaments.stream_by_creator

client.broadcasts.create
client.broadcasts.get
client.broadcasts.update
client.broadcasts.push_pgn_update

client.simuls.get

client.studies.export_chapter
client.studies.export
client.account.get()
client.account.get_email()
client.account.get_preferences()
client.account.get_kid_mode()
client.account.set_kid_mode()
client.account.upgrade_to_bot()

client.users.get_puzzle_activity()
client.users.get_realtime_statuses()
client.users.get_all_top_10()
client.users.get_leaderboard()
client.users.get_public_data()
client.users.get_activity_feed()
client.users.get_by_id()
client.users.get_by_team()
client.users.get_live_streamers()
client.users.get_users_followed()
client.users.get_users_following()
client.users.get_rating_history()

client.teams.get_members()
client.teams.join()
client.teams.leave()
client.teams.kick_member()

client.games.export()
client.games.export_by_player()
client.games.export_multi()
client.games.get_among_players()
client.games.get_ongoing()
client.games.get_tv_channels()

client.challenges.create()
client.challenges.create_ai()
client.challenges.create_open()
client.challenges.create_with_accept()
client.challenges.accept()
client.challenges.decline()

client.board.stream_incoming_events()
client.board.seek()
client.board.stream_game_state()
client.board.make_move()
client.board.post_message()
client.board.abort_game()
client.board.resign_game()
client.board.handle_draw_offer()
client.board.offer_draw()
client.board.accept_draw()
client.board.decline_draw()

client.bots.stream_incoming_events()
client.bots.stream_game_state()
client.bots.make_move()
client.bots.post_message()
client.bots.abort_game()
client.bots.resign_game()
client.bots.accept_challenge()
client.bots.decline_challenge()

client.tournaments.get()
client.tournaments.create()
client.tournaments.export_games()
client.tournaments.stream_results()
client.tournaments.stream_by_creator()

client.broadcasts.create()
client.broadcasts.get()
client.broadcasts.update()
client.broadcasts.push_pgn_update()

client.simuls.get()

client.studies.export_chapter()
client.studies.export()


Details for each function can be found in the `full documentation <https://berserk.readthedocs.io>`_.
Expand Down