27 lines
728 B
Python
27 lines
728 B
Python
|
import asyncio
|
||
|
|
||
|
from irctokens import build, Line
|
||
|
|
||
|
from ircrobots.bot import Bot as BaseBot
|
||
|
from ircrobots.server import ConnectionParams, Server
|
||
|
|
||
|
SERVERS = [
|
||
|
("freenode", "chat.freenode.net"),
|
||
|
("tilde", "ctrl-c.tilde.chat")
|
||
|
]
|
||
|
|
||
|
class Bot(BaseBot):
|
||
|
async def line_read(self, server: Server, line: Line):
|
||
|
if line.command == "001":
|
||
|
print(f"connected to {server.isupport.network}")
|
||
|
await server.send(build("JOIN", ["#testchannel"]))
|
||
|
|
||
|
async def main():
|
||
|
bot = Bot()
|
||
|
for name, host in SERVERS:
|
||
|
params = ConnectionParams("BitBotNewTest", host, 6697, True)
|
||
|
await bot.add_server(name, params)
|
||
|
await bot.run()
|
||
|
if __name__ == "__main__":
|
||
|
asyncio.run(main())
|