royalnet.commands¶
-
class
royalnet.commands.
CommandArgs
¶ An interface to access the arguments of a command with ease.
-
__getitem__
(item)¶ Arguments can be accessed with an array notation, such as
args[0]
.- Raises
royalnet.error.InvalidInputError – if the requested argument does not exist.
-
__weakref__
¶ list of weak references to the object (if defined)
-
joined
(*, require_at_least=0) → str¶ Get the arguments as a space-joined string.
- Parameters
require_at_least – the minimum amount of arguments required, will raise
royalnet.error.InvalidInputError
if the requirement is not fullfilled.- Raises
royalnet.error.InvalidInputError – if there are less than
require_at_least
arguments.- Returns
The space-joined string.
-
match
(pattern: Union[str, Pattern]) → Sequence[AnyStr]¶ Match the
royalnet.utils.commandargs.joined()
to a regex pattern.- Parameters
pattern – The regex pattern to be passed to
re.match()
.- Raises
royalnet.error.InvalidInputError – if the pattern doesn’t match.
- Returns
The matched groups, as returned by
re.Match.groups()
.
-
optional
(index: int, default=None)¶ Get the argument at a specific index, but don’t raise an error if nothing is found, instead returning the
default
value.- Parameters
index – The index of the argument you want to retrieve.
default – The value returned if the argument is missing.
- Returns
Either the argument or the
default
value, defaulting toNone
.
-