Skip to content

pythonflaskserverapps/slapi

Repository files navigation

Shadow lichess API

Lichess API like functions that are not part of the official API.

Login

import slapi

lila2 = slapi.login("username", "password")

Send message

import slapi

result = slapi.sendmessage("recipientusername", "subject", "message", slapi.login("myusername", "password"))

Join tourney

import slapi

slapi.jointourney("tourneyid", slapi.login("username", "password"))

Talk tourney chat

import slapi

slapi.talktourneychat("tourneyid", slapi.login("username", "password"), "message")