首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Python > 轻松创建Python IRC BOT

轻松创建Python IRC BOT

  • 资源大小:4.97 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: pythonircbot 创建 轻松

资 源 简 介

Module providing an easy interface to create IRC bots in python. Uses regexes in combination with an event-like system to handle messages, and abstracts many IRC commands. Includes flood control and easy parallelism, enabled by default. Although pythonircbot is designed for IRC bots, it is (in most cases) flexible enough to serve as a general IRC library. [Documentation](http://www.milanboers.nl/pythonircbot/documentation.html) Released under GNU Affero General Public License. Example code of a simple echo bot: ``` import pythonircbot myBot = pythonircbot.Bot("MyBot") myBot.connect("irc.freenode.net") def echo(msg, channel, nick, client, msgMatch): myBot.sendMsg(channel, msg) myBot.addMsgHandler(echo) myBot.waitForDisconnect() ``` Because all handlers run in seperate threads, creating an echo bot that would echo after 2 secon

文 件 列 表

pythonircbot.py

相 关 资 源

VIP VIP
0.176843s