Timestream

class kaskada.Timestream

A Timestream represents a computation producing a Timestream.

Attributes:

data_type – The PyArrow type of values in this Timestream.

is_continuous – Returns true if this Timestream is continuous.

LiteralValue

A literal value that can be used as an argument to a Timestream operation.

alias of Optional[Union[int, str, float, bool, timedelta, datetime]]

Arg

A Timestream or literal which can be used as an argument to a Timestream operation.

alias of Union[Timestream, Callable[[Timestream], Timestream], LiteralValue]