vcorelib.asyncio.cli
index
/home/vkottler/src/vkottler/workspace/vcorelib/vcorelib/asyncio/cli.py

A module implementing utilities to work with asyncio processes.

 
Modules
       
signal

 
Classes
       
builtins.tuple(builtins.object)
ProcessResult

 
class ProcessResult(builtins.tuple)
    ProcessResult(proc: asyncio.subprocess.Process, stdout: Optional[bytes] = None, stderr: Optional[bytes] = None)
 
A process result (after calling 'communicate').
 
 
Method resolution order:
ProcessResult
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 ProcessResult object replacing specified fields with new values

Class methods defined here:
_make(iterable) from builtins.type
Make a new ProcessResult object from a sequence or iterable

Static methods defined here:
__new__(_cls, proc: asyncio.subprocess.Process, stdout: Optional[bytes] = None, stderr: Optional[bytes] = None)
Create new instance of ProcessResult(proc, stdout, stderr)

Data descriptors defined here:
proc
Alias for field number 0
stdout
Alias for field number 1
stderr
Alias for field number 2

Data and other attributes defined here:
__annotations__ = {'proc': <class 'asyncio.subprocess.Process'>, 'stderr': typing.Optional[bytes], 'stdout': typing.Optional[bytes]}
__match_args__ = ('proc', 'stdout', 'stderr')
__orig_bases__ = (<function NamedTuple>,)
_field_defaults = {'stderr': None, 'stdout': None}
_fields = ('proc', 'stdout', 'stderr')

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

 
Functions
       
async create_subprocess_shell_log(logger: Union[logging.Logger, logging.LoggerAdapter[Any]], command: str, stdout: int = None, stderr: int = None, **kwargs) -> asyncio.subprocess.Process
Create a shell process and log information about the created process.
async handle_process_cancel(proc: asyncio.subprocess.Process, name: str, logger: Union[logging.Logger, logging.LoggerAdapter[Any]], stdin: bytes = None, signal: int = None) -> vcorelib.asyncio.cli.ProcessResult
Communicate with a process and send a signal to it if this task gets
cancelled.
async run_command(logger: Union[logging.Logger, logging.LoggerAdapter[Any]], *args: str, stdin: bytes = None, stdout: int = None, stderr: int = None, signal: int = None, **kwargs) -> vcorelib.asyncio.cli.ProcessResult
Run a subprocess and return the completed process.
async run_shell(logger: Union[logging.Logger, logging.LoggerAdapter[Any]], *args: str, stdin: bytes = None, stdout: int = None, stderr: int = None, signal: int = None, **kwargs) -> vcorelib.asyncio.cli.ProcessResult
Run a shell command and return the completed process.

 
Data
        LoggerType = typing.Union[logging.Logger, logging.LoggerAdapter[typing.Any]]
Optional = typing.Optional