From ea18241d0717c3f9b4d05f5afe4a6bedd506eff0 Mon Sep 17 00:00:00 2001 From: A5rocks <40616000+A5rocks@users.noreply.github.com> Date: Thu, 7 Nov 2019 09:07:46 +0900 Subject: [PATCH] Move `disco.util.runner.py` to another PR --- disco/util/runner.py | 65 ----------------------- docs/bot_tutorial/programmatic_running.md | 58 -------------------- 2 files changed, 123 deletions(-) delete mode 100644 disco/util/runner.py delete mode 100644 docs/bot_tutorial/programmatic_running.md diff --git a/disco/util/runner.py b/disco/util/runner.py deleted file mode 100644 index a4f58bf..0000000 --- a/disco/util/runner.py +++ /dev/null @@ -1,65 +0,0 @@ -""" Utility module to help run a bot programmatically. """ -from __future__ import absolute_import -import logging -from gevent import monkey - -monkey.patch_all() - -try: - from typing import Any -except ImportError: - Any = str # just give up on typing... - -# imports from disco (if moved to the top, they will probably break -# due to requiring `gevent`'s monkey patching for asynchronous) -from disco.client import Client, ClientConfig # noqa: E402 -from disco.bot import Bot, BotConfig # noqa: E402 -from disco.util.logging import setup_logging # noqa: E402 - - -def bot_creator(config=None, bot=True, autosharded=False, **kwargs): - # type: (dict, bool, bool, **Any) -> None - """ - Create a bot object and return it to be run without the cli. - - Parameters - ----------- - config : dict - The configuration to use. The configuration can also be passed through using - keyword args, for example: `bot_creator({'bot':{'commands_prefix':'!'}}, token=TOKEN)` - bot : bool - Whether to return a :class:`disco.bot.bot.Bot` or a :class:`disco.client.Client` - `True` for `Bot`, `False` for `Client` - autosharded : bool - Whether to automatically shard the bot. - - Yields - ------- - :class:`disco.bot.bot.Bot` or :class:`disco.gateway.sharder.AutoSharder` or :class:`disco.client.Client` - A bot with all the configuration specified. - """ - config.update(kwargs) - - # Change the dictionary configuration to disco's proprietary Config - config = ClientConfig(config or {}) - - # Magical auto-sharding that you will eventually want - if autosharded: - from disco.gateway.sharder import AutoSharder - return AutoSharder(config) - - # Setup logging based on the configured level - setup_logging(level=getattr(logging, config.log_level.upper())) - - # Create the bot/client - client = Client(config) - - # if there exists a config for the bot, then return the bot, else return the client. - if hasattr(config, 'bot'): - bot_config = BotConfig(config.bot) - return Bot(client, bot_config) - elif bot: - bot_config = BotConfig() - return Bot(client, bot_config) - else: - return client diff --git a/docs/bot_tutorial/programmatic_running.md b/docs/bot_tutorial/programmatic_running.md deleted file mode 100644 index e34bbdf..0000000 --- a/docs/bot_tutorial/programmatic_running.md +++ /dev/null @@ -1,58 +0,0 @@ -# CLI-less Running - -In certain environments, it is either impossible -to get to a console, or completely impractical. -Even if you are not using said environments, being -able to start your bot in a python file is very -useful for things in the config that require functions. - -Disco has the `util.runner` module just for this task. Just simply: -```py -from disco.util import runner - -bot = runner.bot_creator({ - 'token': 'YOUR.TOKEN.HERE', - 'bot': { - 'plugins': ['plugins.tutorial']} # this can be anything -}) - -bot.run_forever() -``` - -Now you just need to `python main.py`, and the bot starts! Nice! - -### Custom prefixes - -One of the main reasons why you may want to use this method of -starting your bot is that now you can give functions for configuration. -That is especially useful if, for example, you really want server-specific -prefixes, or prefixes based on the user. All you need to do is put -a function which takes the message object and returns an array of strings. - -For example, this bot will have different prefixes for the owner vs -a random user: -```py -from disco.util import runner - -TOKEN = 'YOUR_TOKEN_HERE' -OWNER_ID = 'YOUR_USER_ID_HERE' - - -def prefix_getter(message): - if str(message.author.id) == OWNER_ID: - return ['@'] - else: - return ['!'] - - -bot = runner.bot_creator({ - 'token': TOKEN, - 'bot': { - 'commands_prefix_getter': prefix_getter, - 'require_mention': False, - 'plugins': ['plugins.tutorial'] # this can be anything - } -}) - -bot.run_forever() -``` \ No newline at end of file