From c9abff751e8818c6438bce6fe80f49e3eba8084b Mon Sep 17 00:00:00 2001 From: ChrisLovering Date: Sat, 16 Jul 2022 21:26:00 +0000 Subject: Deploying to docs from @ python-discord/bot-core@c448b69160e287826268db6f499eef81c4005e5a 🚀 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main/output/botcore.async_stats.html | 16 ++++++----- main/output/botcore.exts.html | 10 ++++--- main/output/botcore.html | 42 ++++++++++++++++------------- main/output/botcore.site_api.html | 36 ++++++++++++++----------- main/output/botcore.utils.caching.html | 18 ++++++++----- main/output/botcore.utils.channel.html | 14 ++++++---- main/output/botcore.utils.html | 14 ++++++---- main/output/botcore.utils.interactions.html | 22 ++++++++------- main/output/botcore.utils.logging.html | 16 ++++++----- main/output/botcore.utils.members.html | 14 ++++++---- main/output/botcore.utils.regex.html | 16 ++++++----- main/output/botcore.utils.scheduling.html | 28 ++++++++++--------- 12 files changed, 147 insertions(+), 99 deletions(-) (limited to 'main/output') diff --git a/main/output/botcore.async_stats.html b/main/output/botcore.async_stats.html index ef127ff4..1702b09d 100644 --- a/main/output/botcore.async_stats.html +++ b/main/output/botcore.async_stats.html @@ -6,7 +6,7 @@ - async_stats - Bot Core Latest (7.3.0) + async_stats - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
-
Bot Core Latest (7.3.0)
+
Bot Core Latest (7.3.1)
@@ -153,7 +153,7 @@
- Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1)
-
Bot Core Latest (7.3.0)
+
Bot Core Latest (7.3.1)
@@ -153,7 +153,7 @@
- Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • diff --git a/main/output/botcore.html b/main/output/botcore.html index 12015103..bf0bf5ff 100644 --- a/main/output/botcore.html +++ b/main/output/botcore.html @@ -6,7 +6,7 @@ - Botcore - Bot Core Latest (7.3.0) + Botcore - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    -
    Bot Core Latest (7.3.0)
    +
    Bot Core Latest (7.3.1)
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,12 +292,12 @@

    Useful utilities and tools for Discord bot development.

    -class BotBase(*args, guild_id, allowed_roles, http_session, redis_session=None, api_client=None, statsd_url=None, **kwargs)[source]#
    +class BotBase(*args, guild_id, allowed_roles, http_session, redis_session=None, api_client=None, statsd_url=None, **kwargs)[source]#

    Bases: Bot

    A sub-class that implements many common features that Python Discord bots use.

    -__init__(*args, guild_id, allowed_roles, http_session, redis_session=None, api_client=None, statsd_url=None, **kwargs)[source]#
    +__init__(*args, guild_id, allowed_roles, http_session, redis_session=None, api_client=None, statsd_url=None, **kwargs)[source]#

    Initialise the base bot instance.

    Parameters:
    @@ -312,7 +316,7 @@ a dummy statsd client will be created.

    -async add_cog(cog)[source]#
    +async add_cog(cog)[source]#

    Add the given cog to the bot and log the operation.

    Return type:
    @@ -323,7 +327,7 @@ a dummy statsd client will be created.

    -add_command(command)[source]#
    +add_command(command)[source]#

    Add command as normal and then add its root aliases to the bot.

    Return type:
    @@ -334,7 +338,7 @@ a dummy statsd client will be created.

    -clear()[source]#
    +clear()[source]#

    Not implemented! Re-instantiate the bot instead of attempting to re-use a closed one.

    Return type:
    @@ -345,7 +349,7 @@ a dummy statsd client will be created.

    -async close()[source]#
    +async close()[source]#

    Close the Discord connection, and the aiohttp session, connector, statsd client, and resolver.

    Return type:
    @@ -356,7 +360,7 @@ a dummy statsd client will be created.

    -async load_extensions(module)[source]#
    +async load_extensions(module)[source]#

    Load all the extensions within the given module and save them to self.all_extensions.

    This should be ran in a task on the event loop to avoid deadlocks caused by wait_for calls.

    @@ -368,7 +372,7 @@ a dummy statsd client will be created.

    -async log_to_dev_log(message)[source]#
    +async log_to_dev_log(message)[source]#

    Log the given message to #dev-log.

    Return type:
    @@ -379,7 +383,7 @@ a dummy statsd client will be created.

    -async on_guild_available(guild)[source]#
    +async on_guild_available(guild)[source]#

    Set the internal guild available event when self.guild_id becomes available.

    If the cache appears to still be empty (no members, no channels, or no roles), the event will not be set and guild_available_but_cache_empty event will be emitted.

    @@ -392,7 +396,7 @@ will not be set and guild_available_but_cache_empty event will be e
    -async on_guild_unavailable(guild)[source]#
    +async on_guild_unavailable(guild)[source]#

    Clear the internal guild available event when self.guild_id becomes unavailable.

    Return type:
    @@ -403,7 +407,7 @@ will not be set and guild_available_but_cache_empty event will be e
    -async ping_services()[source]#
    +async ping_services()[source]#

    Ping all required services on setup to ensure they are up before starting.

    Return type:
    @@ -414,7 +418,7 @@ will not be set and guild_available_but_cache_empty event will be e
    -remove_command(name)[source]#
    +remove_command(name)[source]#

    Remove a command/alias as normal and then remove its root aliases from the bot.

    Individual root aliases cannot be removed by this function. To remove them, either remove the entire command or manually edit bot.all_commands.

    @@ -427,7 +431,7 @@ To remove them, either remove the entire command or manually edit bot.all_
    -async setup_hook()[source]#
    +async setup_hook()[source]#

    An async init to startup generic services.

    Connects to statsd, and calls AsyncStatsClient.create_socket @@ -441,7 +445,7 @@ and

    -async wait_until_guild_available()[source]#
    +async wait_until_guild_available()[source]#

    Wait until the guild that matches the guild_id given at init is available (and the cache is ready).

    The on_ready event is inadequate because it only waits 2 seconds for a GUILD_CREATE gateway event before giving up and thus not populating the cache for unavailable guilds.

    @@ -456,12 +460,12 @@ gateway event before giving up and thus not populating the cache for unavailable
    -exception StartupError(base)[source]#
    +exception StartupError(base)[source]#

    Bases: Exception

    Exception class for startup errors.

    -__init__(base)[source]#
    +__init__(base)[source]#
    diff --git a/main/output/botcore.site_api.html b/main/output/botcore.site_api.html index e213506c..099f7959 100644 --- a/main/output/botcore.site_api.html +++ b/main/output/botcore.site_api.html @@ -6,7 +6,7 @@ - site_api - Bot Core Latest (7.3.0) + site_api - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    -
    Bot Core Latest (7.3.0)
    +
    Bot Core Latest (7.3.1)
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,12 +292,12 @@

    An API wrapper around the Site API.

    -class APIClient(site_api_url, site_api_token, **session_kwargs)[source]#
    +class APIClient(site_api_url, site_api_token, **session_kwargs)[source]#

    Bases: object

    A wrapper for the Django Site API.

    -__init__(site_api_url, site_api_token, **session_kwargs)[source]#
    +__init__(site_api_url, site_api_token, **session_kwargs)[source]#

    Initialize a new APIClient instance.

    Parameters:
    @@ -308,7 +312,7 @@
    -async close()[source]#
    +async close()[source]#

    Close the aiohttp session.

    Return type:
    @@ -319,7 +323,7 @@
    -async delete(endpoint, *, raise_for_status=True, **kwargs)[source]#
    +async delete(endpoint, *, raise_for_status=True, **kwargs)[source]#

    Send a DELETE request to the site API and return the JSON response.

    Parameters:
    @@ -340,7 +344,7 @@
    -async get(endpoint, *, raise_for_status=True, **kwargs)[source]#
    +async get(endpoint, *, raise_for_status=True, **kwargs)[source]#

    Equivalent to APIClient.request() with GET passed as the method.

    Return type:
    @@ -351,7 +355,7 @@
    -async static maybe_raise_for_status(response, should_raise)[source]#
    +async static maybe_raise_for_status(response, should_raise)[source]#

    Raise ResponseCodeError for non-OK response if an exception should be raised.

    Parameters:
    @@ -371,7 +375,7 @@
    -async patch(endpoint, *, raise_for_status=True, **kwargs)[source]#
    +async patch(endpoint, *, raise_for_status=True, **kwargs)[source]#

    Equivalent to APIClient.request() with PATCH passed as the method.

    Return type:
    @@ -382,7 +386,7 @@
    -async post(endpoint, *, raise_for_status=True, **kwargs)[source]#
    +async post(endpoint, *, raise_for_status=True, **kwargs)[source]#

    Equivalent to APIClient.request() with POST passed as the method.

    Return type:
    @@ -393,7 +397,7 @@
    -async put(endpoint, *, raise_for_status=True, **kwargs)[source]#
    +async put(endpoint, *, raise_for_status=True, **kwargs)[source]#

    Equivalent to APIClient.request() with PUT passed as the method.

    Return type:
    @@ -404,7 +408,7 @@
    -async request(method, endpoint, *, raise_for_status=True, **kwargs)[source]#
    +async request(method, endpoint, *, raise_for_status=True, **kwargs)[source]#

    Send an HTTP request to the site API and return the JSON response.

    Parameters:
    @@ -431,12 +435,12 @@
    -exception ResponseCodeError(response, response_json=None, response_text=None)[source]#
    +exception ResponseCodeError(response, response_json=None, response_text=None)[source]#

    Bases: ValueError

    Raised in APIClient.request() when a non-OK HTTP response is received.

    -__init__(response, response_json=None, response_text=None)[source]#
    +__init__(response, response_json=None, response_text=None)[source]#

    Initialize a new ResponseCodeError instance.

    Parameters:
    @@ -451,7 +455,7 @@
    -__str__()[source]#
    +__str__()[source]#

    Return a string representation of the error.

    diff --git a/main/output/botcore.utils.caching.html b/main/output/botcore.utils.caching.html index 57a1d27a..51dd1c10 100644 --- a/main/output/botcore.utils.caching.html +++ b/main/output/botcore.utils.caching.html @@ -6,7 +6,7 @@ - caching - Bot Core Latest (7.3.0) + caching - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    -
    Bot Core Latest (7.3.0)
    +
    Bot Core Latest (7.3.1)
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,14 +292,14 @@

    Utilities related to custom caches.

    -class AsyncCache(max_size=128)[source]#
    +class AsyncCache(max_size=128)[source]#

    Bases: object

    LRU cache implementation for coroutines.

    Once the cache exceeds the maximum size, keys are deleted in FIFO order.

    An offset may be optionally provided to be applied to the coroutine’s arguments when creating the cache key.

    -__call__(arg_offset=0)[source]#
    +__call__(arg_offset=0)[source]#

    Decorator for async cache.

    Parameters:
    @@ -312,7 +316,7 @@
    -__init__(max_size=128)[source]#
    +__init__(max_size=128)[source]#

    Initialise a new AsyncCache instance.

    Parameters:
    @@ -323,7 +327,7 @@
    -clear()[source]#
    +clear()[source]#

    Clear cache instance.

    Return type:
    diff --git a/main/output/botcore.utils.channel.html b/main/output/botcore.utils.channel.html index 625d446b..d120bb8b 100644 --- a/main/output/botcore.utils.channel.html +++ b/main/output/botcore.utils.channel.html @@ -6,7 +6,7 @@ - channel - Bot Core Latest (7.3.0) + channel - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    -
    Bot Core Latest (7.3.0)
    +
    Bot Core Latest (7.3.1)
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,7 +292,7 @@

    Useful helper functions for interacting with various discord channel objects.

    -async get_or_fetch_channel(bot, channel_id)[source]#
    +async get_or_fetch_channel(bot, channel_id)[source]#

    Attempt to get or fetch the given channel_id from the bots cache, and return it.

    Parameters:
    @@ -316,7 +320,7 @@
    -is_in_category(channel, category_id)[source]#
    +is_in_category(channel, category_id)[source]#

    Return whether the given channel in the the category with the id category_id.

    Parameters:
    diff --git a/main/output/botcore.utils.html b/main/output/botcore.utils.html index 64ac6ced..c52963b9 100644 --- a/main/output/botcore.utils.html +++ b/main/output/botcore.utils.html @@ -6,7 +6,7 @@ - Utils - Bot Core Latest (7.3.0) + Utils - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    -
    Bot Core Latest (7.3.0)
    +
    Bot Core Latest (7.3.1)
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,7 +292,7 @@

    Useful utilities and tools for Discord bot development.

    -apply_monkey_patches()[source]#
    +apply_monkey_patches()[source]#

    Applies all common monkey patches for our bots.

    Patches discord.ext.commands.Command and discord.ext.commands.Group to support root aliases.

    A root_aliases keyword argument is added to these two objects, which is a sequence of alias names @@ -307,7 +311,7 @@ that will act as top-level groups rather than being aliases of the command’s g

    -unqualify(name)[source]#
    +unqualify(name)[source]#

    Return an unqualified name given a qualified module/package name.

    Parameters:
    diff --git a/main/output/botcore.utils.interactions.html b/main/output/botcore.utils.interactions.html index c078a04b..b22e7641 100644 --- a/main/output/botcore.utils.interactions.html +++ b/main/output/botcore.utils.interactions.html @@ -6,7 +6,7 @@ - interactions - Bot Core Latest (7.3.0) + interactions - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    -
    Bot Core Latest (7.3.0)
    +
    Bot Core Latest (7.3.1)
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -287,7 +291,7 @@

    interactions#

    -class DeleteMessageButton(*, style=<ButtonStyle.secondary: 2>, label='Delete', **kwargs)[source]#
    +class DeleteMessageButton(*, style=<ButtonStyle.secondary: 2>, label='Delete', **kwargs)[source]#

    Bases: Button

    A button that can be added to a view to delete the message containing the view on click.

    This button itself carries out no interaction checks, these should be done by the parent view.

    @@ -302,12 +306,12 @@
    -__init__(*, style=<ButtonStyle.secondary: 2>, label='Delete', **kwargs)[source]#
    +__init__(*, style=<ButtonStyle.secondary: 2>, label='Delete', **kwargs)[source]#
    -async callback(interaction)[source]#
    +async callback(interaction)[source]#

    Delete the original message on button click.

    Return type:
    @@ -320,7 +324,7 @@
    -class ViewWithUserAndRoleCheck(*, allowed_users, allowed_roles, timeout=180.0)[source]#
    +class ViewWithUserAndRoleCheck(*, allowed_users, allowed_roles, timeout=180.0)[source]#

    Bases: View

    A view that allows the original invoker and moderators to interact with it.

    @@ -335,12 +339,12 @@ If None
    -__init__(*, allowed_users, allowed_roles, timeout=180.0)[source]#
    +__init__(*, allowed_users, allowed_roles, timeout=180.0)[source]#
    -async interaction_check(interaction)[source]#
    +async interaction_check(interaction)[source]#

    Ensure the user clicking the button is the view invoker, or a moderator.

    Parameters:
    diff --git a/main/output/botcore.utils.logging.html b/main/output/botcore.utils.logging.html index 56f621a9..2e2a1dd8 100644 --- a/main/output/botcore.utils.logging.html +++ b/main/output/botcore.utils.logging.html @@ -6,7 +6,7 @@ - logging - Bot Core Latest (7.3.0) + logging - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,12 +292,12 @@

    Common logging related functions.

    -class CustomLogger(name, level=0)[source]#
    +class CustomLogger(name, level=0)[source]#

    Bases: Logger

    Custom implementation of the logging.Logger class with an added trace method.

    -trace(msg, *args, **kwargs)[source]#
    +trace(msg, *args, **kwargs)[source]#

    Log the given message with the severity "TRACE".

    To pass exception information, use the keyword argument exc_info with a true value:

    logger.trace("Houston, we have an %s", "interesting problem", exc_info=1)
    @@ -317,7 +321,7 @@
     
     
    -get_logger(name=None)[source]#
    +get_logger(name=None)[source]#

    Utility to make mypy recognise that logger is of type CustomLogger.

    Parameters:
    diff --git a/main/output/botcore.utils.members.html b/main/output/botcore.utils.members.html index baa74ff8..63062ace 100644 --- a/main/output/botcore.utils.members.html +++ b/main/output/botcore.utils.members.html @@ -6,7 +6,7 @@ - members - Bot Core Latest (7.3.0) + members - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,7 +292,7 @@

    Useful helper functions for interactin with discord.Member objects.

    -async get_or_fetch_member(guild, member_id)[source]#
    +async get_or_fetch_member(guild, member_id)[source]#

    Attempt to get a member from cache; on failure fetch from the API.

    Return type:
    @@ -302,7 +306,7 @@
    -async handle_role_change(member, coro, role)[source]#
    +async handle_role_change(member, coro, role)[source]#

    Await the given coro with role as the sole argument.

    Handle errors that we expect to be raised from discord.Member.add_roles and discord.Member.remove_roles.

    diff --git a/main/output/botcore.utils.regex.html b/main/output/botcore.utils.regex.html index 8a5dda87..957713ac 100644 --- a/main/output/botcore.utils.regex.html +++ b/main/output/botcore.utils.regex.html @@ -6,7 +6,7 @@ - regex - Bot Core Latest (7.3.0) + regex - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,7 +292,7 @@

    Common regular expressions.

    -DISCORD_INVITE[source]#
    +DISCORD_INVITE[source]#

    Regex for Discord server invites.

    Warning

    @@ -302,7 +306,7 @@ such as
    -FORMATTED_CODE_REGEX[source]#
    +FORMATTED_CODE_REGEX[source]#

    Regex for formatted code, using Discord’s code blocks.

    @@ -310,7 +314,7 @@ such as
    -RAW_CODE_REGEX[source]#
    +RAW_CODE_REGEX[source]#

    Regex for raw code, not using Discord’s code blocks.

    diff --git a/main/output/botcore.utils.scheduling.html b/main/output/botcore.utils.scheduling.html index 1c2e7d90..3f80adb9 100644 --- a/main/output/botcore.utils.scheduling.html +++ b/main/output/botcore.utils.scheduling.html @@ -6,7 +6,7 @@ - scheduling - Bot Core Latest (7.3.0) + scheduling - Bot Core Latest (7.3.1) @@ -127,7 +127,7 @@
    @@ -153,7 +153,7 @@
    - Bot Core Latest (7.3.0) + Bot Core Latest (7.3.1) @@ -205,6 +205,10 @@ main +
  • + v7.3.0 +
  • +
  • v7.2.2
  • @@ -288,7 +292,7 @@

    Generic python scheduler.

    -class Scheduler(name)[source]#
    +class Scheduler(name)[source]#

    Bases: object

    Schedule the execution of coroutines and keep track of them.

    When instantiating a Scheduler, a name must be provided. This name is used to distinguish the @@ -302,7 +306,7 @@ the same ID used to schedule it.

    Any exception raised in a scheduled task is logged when the task is done.

    -__contains__(task_id)[source]#
    +__contains__(task_id)[source]#

    Return True if a task with the given task_id is currently scheduled.

    Parameters:
    @@ -319,7 +323,7 @@ the same ID used to schedule it.

    -__init__(name)[source]#
    +__init__(name)[source]#

    Initialize a new Scheduler instance.

    Parameters:
    @@ -330,7 +334,7 @@ the same ID used to schedule it.

    -cancel(task_id)[source]#
    +cancel(task_id)[source]#

    Unschedule the task identified by task_id. Log a warning if the task doesn’t exist.

    Parameters:
    @@ -344,7 +348,7 @@ the same ID used to schedule it.

    -cancel_all()[source]#
    +cancel_all()[source]#

    Unschedule all known tasks.

    Return type:
    @@ -355,7 +359,7 @@ the same ID used to schedule it.

    -schedule(task_id, coroutine)[source]#
    +schedule(task_id, coroutine)[source]#

    Schedule the execution of a coroutine.

    If a task with task_id already exists, close coroutine instead of scheduling it. This prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-used elsewhere.

    @@ -374,7 +378,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
    -schedule_at(time, task_id, coroutine)[source]#
    +schedule_at(time, task_id, coroutine)[source]#

    Schedule coroutine to be executed at the given time.

    If time is timezone aware, then use that timezone to calculate now() when subtracting. If time is naĂŻve, then use UTC.

    @@ -397,7 +401,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
    -schedule_later(delay, task_id, coroutine)[source]#
    +schedule_later(delay, task_id, coroutine)[source]#

    Schedule coroutine to be executed after delay seconds.

    If a task with task_id already exists, close coroutine instead of scheduling it. This prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-used elsewhere.

    @@ -419,7 +423,7 @@ prevents unawaited coroutine warnings. Don’t pass a coroutine that’ll be re-
    -create_task(coro, *, suppressed_exceptions=(), event_loop=None, **kwargs)[source]#
    +create_task(coro, *, suppressed_exceptions=(), event_loop=None, **kwargs)[source]#

    Wrapper for creating an asyncio.Task which logs exceptions raised in the task.

    If the event_loop kwarg is provided, the task is created from that event loop, otherwise the running loop is used.

    -- cgit v1.2.3