Browse Source

Allow passing plugin config on load, add API channel invite

pull/5/head
Andrei 9 years ago
parent
commit
37a37fcb57
  1. 2
      README.md
  2. 7
      disco/bot/bot.py

2
README.md

@ -1,5 +1,5 @@
# disco
Disco is a simple and extendable library for the [Discord API](https://discordapp.com/developers/docs/intro).
Disco is a simple and extendable library for the [Discord API](https://discordapp.com/developers/docs/intro). Join the Official channel and chat [here](https://discord.gg/XJRZSQk).
- Expressive, functional interface that gets out of the way
- Built for high-performance and efficiency

7
disco/bot/bot.py

@ -227,7 +227,7 @@ class Bot(object):
self.last_message_cache[msg.channel_id] = (msg, triggered)
def add_plugin(self, cls):
def add_plugin(self, cls, config=None):
"""
Adds and loads a plugin, based on its class.
@ -235,11 +235,14 @@ class Bot(object):
----------
cls : subclass of :class:`disco.bot.plugin.Plugin`
Plugin class to initialize and load.
config : Optional
The configuration to load the plugin with.
"""
if cls.__name__ in self.plugins:
raise Exception('Cannot add already added plugin: {}'.format(cls.__name__))
config = self.config.plugin_config_provider(cls.__name__) if self.config.plugin_config_provider else None
if not config and callable(self.config.plugin_config_provider):
config = self.config.plugin_config_provider(cls.__name__)
self.plugins[cls.__name__] = cls(self, config)
self.plugins[cls.__name__].load()

Loading…
Cancel
Save