I created these two small projects when I was testing the APIs, maybe they can help other people.
- gather-client-ws a wrapper for the webscoket API.
- tapioca-gather a wrapper for the http API.
I created these two small projects when I was testing the APIs, maybe they can help other people.
is can subscrip user chat list?
@West yes. You can define a callback function that receives a ServerClientBatch, then, you need to filter the events looking for the PlayerChats event.
Somenthing like this:
async def callback(client, server_response):
for event in server_response.events:
if event.WhichOneof("event") == "playerChats":
print(event)
You can see a example of the callback usage here.