![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
IRC bot framework using mixins to provide commonly desired functionality.
The irc
_ python library's irc.bot.SingleServerIRCBot
provides a nice
base for making a new bot, but there are many common tasks needed by a robust
bot that it does not handle out of the box. IB3 collects some commonly desired
behaviors for a bot as mixin
_ classes that can be used via multiple inheritance
_::
from ib3 import Bot
from ib3.auth import SASL
from ib3.connection import SSL
from ib3.mixins import DisconnectOnError
class TestBot(SASL, SSL, DisconnectOnError, Bot):
pass
python3 -m pip install --upgrade ib3
(recommended)python3 -m pip install .
(from source distribution)IB3 is licensed under the GPL-3.0-or-later
_ license.
Some code and much inspiration taken from Wikimedia irc bots Adminbot
,
Jouncebot
, and Stashbot
_.
.. _irc: https://pypi.org/project/irc/ .. _mixin: https://en.wikipedia.org/wiki/Mixin .. _multiple inheritance: https://docs.python.org/3/tutorial/classes.html#multiple-inheritance .. _GPL-3.0-or-later: https://www.gnu.org/copyleft/gpl.html .. _Adminbot: https://phabricator.wikimedia.org/diffusion/ODAC/ .. _Jouncebot: https://phabricator.wikimedia.org/diffusion/GJOU/ .. _Stashbot: https://phabricator.wikimedia.org/diffusion/LTST/
FAQs
IRC bot framework using mixins to provide common functionality
We found that ib3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.