jaraco / irc

Full-featured Python IRC library for Python.
MIT License
392 stars 86 forks source link

How to send a normal message from a bot? #38

Closed jaraco closed 8 years ago

jaraco commented 8 years ago

I was writing a bot with this library, and i realized, there is no way to send a public message from the Bot class. Am i missing something, or do i have to format it manually?


jaraco commented 8 years ago
#!python

connection.privmsg(channel, "hello!")

Original comment by: progrhed

jaraco commented 8 years ago

Thanks progrhed.


Original comment by: Jason R. Coombs