diff --git a/disco/api/ratelimit.py b/disco/api/ratelimit.py index 244b291..054c8cf 100644 --- a/disco/api/ratelimit.py +++ b/disco/api/ratelimit.py @@ -44,7 +44,7 @@ class RouteState(LoggingClass): @property def chilled(self): """ - Whether this route is currently being cooldown (aka waiting until reset_time) + Whether this route is currently being cooldown (aka waiting until reset_time). """ return self.event is not None @@ -74,7 +74,7 @@ class RouteState(LoggingClass): def wait(self, timeout=None): """ - Waits until this route is no longer under a cooldown + Waits until this route is no longer under a cooldown. Parameters ---------- @@ -85,13 +85,13 @@ class RouteState(LoggingClass): Returns ------- bool - False if the timeout period expired before the cooldown was finished + False if the timeout period expired before the cooldown was finished. """ return self.event.wait(timeout) def cooldown(self): """ - Waits for the current route to be cooled-down (aka waiting until reset time) + Waits for the current route to be cooled-down (aka waiting until reset time). """ if self.reset_time - time.time() < 0: raise Exception('Cannot cooldown for negative time period; check clock sync') diff --git a/disco/bot/bot.py b/disco/bot/bot.py index ba6ec25..369aea8 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -177,7 +177,7 @@ class Bot(object): @property def commands(self): """ - Generator of all commands this bots plugins have defined + Generator of all commands this bots plugins have defined. """ for plugin in six.itervalues(self.plugins): for command in six.itervalues(plugin.commands): @@ -194,7 +194,7 @@ class Bot(object): def compute_group_abbrev(self): """ - Computes all possible abbreviations for a command grouping + Computes all possible abbreviations for a command grouping. """ self.group_abbrev = {} groups = set(command.group for command in self.commands if command.group) @@ -417,7 +417,7 @@ class Bot(object): def run_forever(self): """ - Runs this bots core loop forever + Runs this bots core loop forever. """ self.client.run_forever() diff --git a/disco/bot/command.py b/disco/bot/command.py index 137a36c..5843046 100644 --- a/disco/bot/command.py +++ b/disco/bot/command.py @@ -48,28 +48,28 @@ class CommandEvent(object): @cached_property def member(self): """ - Guild member (if relevant) for the user that created the message + Guild member (if relevant) for the user that created the message. """ return self.guild.get_member(self.author) @property def channel(self): """ - Channel the message was created in + Channel the message was created in. """ return self.msg.channel @property def guild(self): """ - Guild (if relevant) the message was created in + Guild (if relevant) the message was created in. """ return self.msg.guild @property def author(self): """ - Author of the message + Author of the message. """ return self.msg.author @@ -159,14 +159,14 @@ class Command(object): @cached_property def compiled_regex(self): """ - A compiled version of this command's regex + A compiled version of this command's regex. """ return re.compile(self.regex) @property def regex(self): """ - The regex string that defines/triggers this command + The regex string that defines/triggers this command. """ if self.is_regex: return REGEX_FMT.format('|'.join(self.triggers)) diff --git a/disco/bot/parser.py b/disco/bot/parser.py index 8f3483e..fab4513 100644 --- a/disco/bot/parser.py +++ b/disco/bot/parser.py @@ -47,13 +47,13 @@ class Argument(object): @property def true_count(self): """ - The true number of raw arguments this argument takes + The true number of raw arguments this argument takes. """ return self.count or 1 def parse(self, raw): """ - Attempts to parse arguments from their raw form + Attempts to parse arguments from their raw form. """ prefix, part = raw @@ -78,7 +78,7 @@ class Argument(object): class ArgumentSet(object): """ - A set of :class:`Argument` instances which forms a larger argument specification + A set of :class:`Argument` instances which forms a larger argument specification. Attributes ---------- @@ -95,7 +95,7 @@ class ArgumentSet(object): @classmethod def from_string(cls, line, custom_types=None): """ - Creates a new :class:`ArgumentSet` from a given argument string specification + Creates a new :class:`ArgumentSet` from a given argument string specification. """ args = cls(custom_types=custom_types) @@ -131,7 +131,7 @@ class ArgumentSet(object): def append(self, arg): """ - Add a new :class:`Argument` to this argument specification/set + Add a new :class:`Argument` to this argument specification/set. """ if self.args and not self.args[-1].required and arg.required: raise Exception('Required argument cannot come after an optional argument') @@ -178,13 +178,13 @@ class ArgumentSet(object): @property def length(self): """ - The number of arguments in this set/specification + The number of arguments in this set/specification. """ return len(self.args) @property def required_length(self): """ - The number of required arguments to compile this set/specificaiton + The number of required arguments to compile this set/specificaiton. """ return sum([i.true_count for i in self.args if i.required]) diff --git a/disco/bot/plugin.py b/disco/bot/plugin.py index 6ea616e..10044c1 100644 --- a/disco/bot/plugin.py +++ b/disco/bot/plugin.py @@ -43,7 +43,7 @@ class PluginDeco(object): @classmethod def listen(cls, *args, **kwargs): """ - Binds the function to listen for a given event name + Binds the function to listen for a given event name. """ return cls.add_meta_deco({ 'type': 'listener', @@ -55,7 +55,7 @@ class PluginDeco(object): @classmethod def listen_packet(cls, *args, **kwargs): """ - Binds the function to listen for a given gateway op code + Binds the function to listen for a given gateway op code. """ return cls.add_meta_deco({ 'type': 'listener', @@ -67,7 +67,7 @@ class PluginDeco(object): @classmethod def command(cls, *args, **kwargs): """ - Creates a new command attached to the function + Creates a new command attached to the function. """ return cls.add_meta_deco({ 'type': 'command', @@ -78,7 +78,7 @@ class PluginDeco(object): @classmethod def pre_command(cls): """ - Runs a function before a command is triggered + Runs a function before a command is triggered. """ return cls.add_meta_deco({ 'type': 'pre_command', @@ -87,7 +87,7 @@ class PluginDeco(object): @classmethod def post_command(cls): """ - Runs a function after a command is triggered + Runs a function after a command is triggered. """ return cls.add_meta_deco({ 'type': 'post_command', @@ -96,7 +96,7 @@ class PluginDeco(object): @classmethod def pre_listener(cls): """ - Runs a function before a listener is triggered + Runs a function before a listener is triggered. """ return cls.add_meta_deco({ 'type': 'pre_listener', @@ -105,7 +105,7 @@ class PluginDeco(object): @classmethod def post_listener(cls): """ - Runs a function after a listener is triggered + Runs a function after a listener is triggered. """ return cls.add_meta_deco({ 'type': 'post_listener', @@ -114,7 +114,7 @@ class PluginDeco(object): @classmethod def schedule(cls, *args, **kwargs): """ - Runs a function repeatedly, waiting for a specified interval + Runs a function repeatedly, waiting for a specified interval. """ return cls.add_meta_deco({ 'type': 'schedule', @@ -212,7 +212,7 @@ class Plugin(LoggingClass, PluginDeco): def execute(self, event): """ - Executes a CommandEvent this plugin owns + Executes a CommandEvent this plugin owns. """ if not event.command.oob: self.greenlets.add(gevent.getcurrent()) @@ -226,7 +226,7 @@ class Plugin(LoggingClass, PluginDeco): def register_trigger(self, typ, when, func): """ - Registers a trigger + Registers a trigger. """ getattr(self, '_' + when)[typ].append(func) @@ -258,7 +258,7 @@ class Plugin(LoggingClass, PluginDeco): def register_listener(self, func, what, desc, **kwargs): """ - Registers a listener + Registers a listener. Parameters ---------- @@ -282,7 +282,7 @@ class Plugin(LoggingClass, PluginDeco): def register_command(self, func, *args, **kwargs): """ - Registers a command + Registers a command. Parameters ---------- @@ -331,13 +331,13 @@ class Plugin(LoggingClass, PluginDeco): def load(self, ctx): """ - Called when the plugin is loaded + Called when the plugin is loaded. """ pass def unload(self, ctx): """ - Called when the plugin is unloaded + Called when the plugin is unloaded. """ for greenlet in self.greenlets: greenlet.kill() diff --git a/disco/client.py b/disco/client.py index 6bda4ef..0de6f45 100644 --- a/disco/client.py +++ b/disco/client.py @@ -20,7 +20,7 @@ class ClientConfig(Config): Attributes ---------- token : str - Discord authentication token, ca be validated using the + Discord authentication token, can be validated using the :func:`disco.util.token.is_valid_token` function. shard_id : int The shard ID for the current client instance. @@ -123,12 +123,12 @@ class Client(LoggingClass): def run(self): """ - Run the client (e.g. the :class:`GatewayClient`) in a new greenlet + Run the client (e.g. the :class:`GatewayClient`) in a new greenlet. """ return gevent.spawn(self.gw.run) def run_forever(self): """ - Run the client (e.g. the :class:`GatewayClient`) in the current greenlet + Run the client (e.g. the :class:`GatewayClient`) in the current greenlet. """ return self.gw.run() diff --git a/disco/state.py b/disco/state.py index abe4cff..cf4636e 100644 --- a/disco/state.py +++ b/disco/state.py @@ -117,7 +117,7 @@ class State(object): def unbind(self): """ - Unbinds all bound event listeners for this state object + Unbinds all bound event listeners for this state object. """ map(lambda k: k.unbind(), self.listeners) self.listeners = [] diff --git a/disco/types/channel.py b/disco/types/channel.py index 97eeb38..f5389d1 100644 --- a/disco/types/channel.py +++ b/disco/types/channel.py @@ -33,7 +33,7 @@ class ChannelSubType(SlottedModel): class PermissionOverwrite(ChannelSubType): """ - A PermissionOverwrite for a :class:`Channel` + A PermissionOverwrite for a :class:`Channel`. Attributes ---------- @@ -81,7 +81,7 @@ class PermissionOverwrite(ChannelSubType): class Channel(SlottedModel, Permissible): """ - Represents a Discord Channel + Represents a Discord Channel. Attributes ---------- @@ -125,7 +125,7 @@ class Channel(SlottedModel, Permissible): def get_permissions(self, user): """ - Get the permissions a user has in the channel + Get the permissions a user has in the channel. Returns ------- @@ -154,42 +154,42 @@ class Channel(SlottedModel, Permissible): @property def is_guild(self): """ - Whether this channel belongs to a guild + Whether this channel belongs to a guild. """ return self.type in (ChannelType.GUILD_TEXT, ChannelType.GUILD_VOICE) @property def is_dm(self): """ - Whether this channel is a DM (does not belong to a guild) + Whether this channel is a DM (does not belong to a guild). """ return self.type in (ChannelType.DM, ChannelType.GROUP_DM) @property def is_voice(self): """ - Whether this channel supports voice + Whether this channel supports voice. """ return self.type in (ChannelType.GUILD_VOICE, ChannelType.GROUP_DM) @property def messages(self): """ - a default :class:`MessageIterator` for the channel + a default :class:`MessageIterator` for the channel. """ return self.messages_iter() @cached_property def guild(self): """ - Guild this channel belongs to (if relevant) + Guild this channel belongs to (if relevant). """ return self.client.state.guilds.get(self.guild_id) def messages_iter(self, **kwargs): """ Creates a new :class:`MessageIterator` for the channel with the given - keyword arguments + keyword arguments. """ return MessageIterator(self.client, self, **kwargs) @@ -232,7 +232,7 @@ class Channel(SlottedModel, Permissible): def send_message(self, content, nonce=None, tts=False): """ - Send a message in this channel + Send a message in this channel. Parameters ---------- @@ -252,7 +252,7 @@ class Channel(SlottedModel, Permissible): def connect(self, *args, **kwargs): """ - Connect to this channel over voice + Connect to this channel over voice. """ assert self.is_voice, 'Channel must support voice to connect' vc = VoiceClient(self) @@ -351,7 +351,7 @@ class MessageIterator(object): def fill(self): """ - Fills the internal buffer up with :class:`disco.types.message.Message` objects from the API + Fills the internal buffer up with :class:`disco.types.message.Message` objects from the API. """ self._buffer = self.client.api.channels_messages_list( self.channel.id, diff --git a/disco/types/guild.py b/disco/types/guild.py index 1f7ddd4..220ffa4 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -27,7 +27,7 @@ VerificationLevel = Enum( class GuildEmoji(Emoji): """ - An emoji object + An emoji object. Attributes ---------- @@ -56,7 +56,7 @@ class GuildEmoji(Emoji): class Role(SlottedModel): """ - A role object + A role object. Attributes ---------- @@ -105,7 +105,7 @@ class Role(SlottedModel): class GuildMember(SlottedModel): """ - A GuildMember object + A GuildMember object. Attributes ---------- @@ -193,7 +193,7 @@ class GuildMember(SlottedModel): @property def id(self): """ - Alias to the guild members user id + Alias to the guild members user id. """ return self.user.id @@ -208,7 +208,7 @@ class GuildMember(SlottedModel): class Guild(SlottedModel, Permissible): """ - A guild object + A guild object. Attributes ---------- diff --git a/disco/types/invite.py b/disco/types/invite.py index 850002e..906a360 100644 --- a/disco/types/invite.py +++ b/disco/types/invite.py @@ -6,7 +6,7 @@ from disco.types.channel import Channel class Invite(SlottedModel): """ - An invite object + An invite object. Attributes ---------- diff --git a/disco/types/message.py b/disco/types/message.py index e53ccb5..14115ef 100644 --- a/disco/types/message.py +++ b/disco/types/message.py @@ -88,7 +88,7 @@ class MessageEmbedField(SlottedModel): class MessageEmbed(SlottedModel): """ - Message embed object + Message embed object. Attributes ---------- @@ -117,7 +117,7 @@ class MessageEmbed(SlottedModel): class MessageAttachment(SlottedModel): """ - Message attachment object + Message attachment object. Attributes ---------- @@ -242,7 +242,7 @@ class Message(SlottedModel): def reply(self, *args, **kwargs): """ Reply to this message (proxys arguments to - :func:`disco.types.channel.Channel.send_message`) + :func:`disco.types.channel.Channel.send_message`). Returns ------- @@ -253,7 +253,7 @@ class Message(SlottedModel): def edit(self, content): """ - Edit this message + Edit this message. Args ---- diff --git a/disco/util/token.py b/disco/util/token.py index c48beca..d71b93d 100644 --- a/disco/util/token.py +++ b/disco/util/token.py @@ -5,6 +5,6 @@ TOKEN_RE = re.compile(r'M\w{23}\.[\w-]{6}\..{27}') def is_valid_token(token): """ - Validates a Discord authentication token, returning true if valid + Validates a Discord authentication token, returning true if valid. """ return bool(TOKEN_RE.match(token))