| |
- builtins.tuple(builtins.object)
-
- WatchParams
class WatchParams(builtins.tuple) |
|
WatchParams(base: pathlib.Path, directory: pathlib.Path, cmd: List[str], check_contents: bool, shell: bool = False, single_pass: bool = False, poll_rate: float = 0.1)
Watch task parameters. |
|
- Method resolution order:
- WatchParams
- builtins.tuple
- builtins.object
Methods defined here:
- __getnewargs__(self)
- Return self as a plain tuple. Used by copy and pickle.
- __repr__(self)
- Return a nicely formatted representation string
- _asdict(self)
- Return a new dict which maps field names to their values.
- _replace(self, /, **kwds)
- Return a new WatchParams object replacing specified fields with new values
Class methods defined here:
- _make(iterable) from builtins.type
- Make a new WatchParams object from a sequence or iterable
Static methods defined here:
- __new__(_cls, base: pathlib.Path, directory: pathlib.Path, cmd: List[str], check_contents: bool, shell: bool = False, single_pass: bool = False, poll_rate: float = 0.1)
- Create new instance of WatchParams(base, directory, cmd, check_contents, shell, single_pass, poll_rate)
- add_args(parser: argparse.ArgumentParser) -> None
- Add command-line argument options.
- from_args(args: argparse.Namespace) -> 'WatchParams'
- Create watch parameters from parsed arugments.
Data descriptors defined here:
- base
- Alias for field number 0
- directory
- Alias for field number 1
- cmd
- Alias for field number 2
- check_contents
- Alias for field number 3
- shell
- Alias for field number 4
- single_pass
- Alias for field number 5
- poll_rate
- Alias for field number 6
Data and other attributes defined here:
- __annotations__ = {'base': <class 'pathlib.Path'>, 'check_contents': <class 'bool'>, 'cmd': typing.List[str], 'directory': <class 'pathlib.Path'>, 'poll_rate': <class 'float'>, 'shell': <class 'bool'>, 'single_pass': <class 'bool'>}
- __match_args__ = ('base', 'directory', 'cmd', 'check_contents', 'shell', 'single_pass', 'poll_rate')
- __orig_bases__ = (<function NamedTuple>,)
- _field_defaults = {'poll_rate': 0.1, 'shell': False, 'single_pass': False}
- _fields = ('base', 'directory', 'cmd', 'check_contents', 'shell', 'single_pass', 'poll_rate')
Methods inherited from builtins.tuple:
- __add__(self, value, /)
- Return self+value.
- __contains__(self, key, /)
- Return bool(key in self).
- __eq__(self, value, /)
- Return self==value.
- __ge__(self, value, /)
- Return self>=value.
- __getattribute__(self, name, /)
- Return getattr(self, name).
- __getitem__(self, key, /)
- Return self[key].
- __gt__(self, value, /)
- Return self>value.
- __hash__(self, /)
- Return hash(self).
- __iter__(self, /)
- Implement iter(self).
- __le__(self, value, /)
- Return self<=value.
- __len__(self, /)
- Return len(self).
- __lt__(self, value, /)
- Return self<value.
- __mul__(self, value, /)
- Return self*value.
- __ne__(self, value, /)
- Return self!=value.
- __rmul__(self, value, /)
- Return value*self.
- count(self, value, /)
- Return number of occurrences of value.
- index(self, value, start=0, stop=9223372036854775807, /)
- Return first index of value.
Raises ValueError if the value is not present.
Class methods inherited from builtins.tuple:
- __class_getitem__(...) from builtins.type
- See PEP 585
| |