Using hexchat (which is based on xchat) with python scripting.
Reading the API docs it's not clear to me if other users can see print statements. So can other users in a channel see the following or is it only visible to me:
import hexchat
hexchat.prnt("Hi everyone!")
what about using python's print?
import hexchat
print("Hi everyone!")
EDIT
I guess the corollary to this question would be how to send a chat message so that other users could see it.