ircrobots/examples/simple.py

31 lines
838 B
Python
Raw Normal View History

2020-04-01 16:36:53 +02:00
import asyncio
from irctokens import build, Line
from ircrobots import Bot as BaseBot
from ircrobots import ConnectionParams, Server
2020-04-01 16:36:53 +02:00
SERVERS = [
("freenode", "chat.freenode.invalid")
2020-04-01 16:36:53 +02:00
]
class Bot(BaseBot):
async def line_read(self, server: Server, line: Line):
2020-04-02 00:06:08 +02:00
print(f"{server.name}< {line.format()}")
2020-04-01 16:36:53 +02:00
if line.command == "001":
print(f"connected to {server.isupport.network}")
await server.send(build("JOIN", ["#testchannel"]))
2020-04-02 00:06:08 +02:00
async def line_send(self, server: Server, line: Line):
print(f"{server.name}> {line.format()}")
2020-04-01 16:36:53 +02:00
async def main():
bot = Bot()
for name, host in SERVERS:
params = ConnectionParams("BitBotNewTest", host, 6697, True)
await bot.add_server(name, params)
2020-04-01 16:36:53 +02:00
await bot.run()
2020-04-01 16:36:53 +02:00
if __name__ == "__main__":
asyncio.run(main())