Metadata-Version: 2.1
Name: slapi
Version: 0.0.6
Summary: shadow lichess api
Home-page: https://github.com/pythonflaskserverapps/slapi
Author: pythonflaskserverapps
Author-email: pythonflaskserverapps@gmail.com
License: MIT
Keywords: shadow lichess api
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: urllib3[secure] (==1.24.1)
Requires-Dist: websocket-client (==0.54.0)

# Shadow lichess API

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

## Login

```python
import slapi

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

## Send message

```python
import slapi

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

## Join tourney

```python
import slapi

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

## Talk tourney chat

```python
import slapi

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


