Sending a message on the shoutbox

It is possible to send a message on the shoutbox, by:

An example of doing so is the following:

from planetcasio.client import Client

async with Client(auth=("<username>", "<password>")) as client:
    channel = await client.shout.get_channel("hs")
    await channel.post("hello, world")