clipppy.commands.commandable¶
Module Contents¶
- class clipppy.commands.commandable.Commandable¶
-
- __setattr__(self, key, value)¶
Implement setattr(self, name, value).
- get_cmd_cls(self, name: str) Optional[Type[clipppy.commands.command.Command]]¶
- register_cmd_cls(self, name: str, cls: Type[clipppy.commands.command.Command])¶
- class clipppy.commands.commandable.ProxyDict(obj, keys)¶
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s
(key, value) pairs
- dict(iterable) -> new dictionary initialized as if via:
d = {} for k, v in iterable:
d[k] = v
- dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)
- __getitem__(self, item)¶
x.__getitem__(y) <==> x[y]
- items(self)¶
D.items() -> a set-like object providing a view on D’s items
- keys(self)¶
D.keys() -> a set-like object providing a view on D’s keys
- values(self)¶
D.values() -> an object providing a view on D’s values