Exscript.stdlib.mysys module

Exscript.stdlib.mysys.env(scope, varname)[source]

Returns the value of the environment variable with the given name.

Parameters:varnames (string) – A variable name.
Exscript.stdlib.mysys.execute(scope, command)[source]

Executes the given command locally.

Parameters:command (string) – A shell command.
Exscript.stdlib.mysys.message(*args, **kwargs)[source]

Writes the given string to stdout.

Parameters:string (string) – A string, or a list of strings.
Exscript.stdlib.mysys.wait(*args, **kwargs)[source]

Waits for the given number of seconds.

Parameters:seconds (int) – The wait time in seconds.