Metadata-Version: 2.1
Name: slapi
Version: 0.0.5
Summary: shadow lichess api
Home-page: https://github.com/pythonflaskserverapps/slapi
Author: pythonflaskserverapps
Author-email: pythonflaskserverapps@gmail.com
License: MIT
Description: # 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")
        ```
        
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
