The Python SDK to the JX3API.
pip install --no-cache -U jx3api
pip install --no-cache -U git+https://github.com/JX3API/jx3api-py.git
from jx3api import JX3API
api = JX3API(token=..., ticket=...)
api.active_calendar(server="梦江南")
from jx3api import AsyncJX3API
async_api = AsyncJX3API(token=..., ticket=...)
await async_api.active_calendar(server="梦江南")
# Websocket
async for msg in async_api.socket():
...
The codes in this repository are all automatically generated by large language model.
:)