httk.core.datastream.textstream_common¶
Classes¶
Common superclass for many of the implementations of backends for streaming text data. |
Module Contents¶
- class httk.core.datastream.textstream_common.TextstreamCommon[source]¶
Bases:
abc.ABCCommon superclass for many of the implementations of backends for streaming text data.
- unwrap()[source]¶
Return the currently opened underlying text stream.
- Returns:
The stream used for reading text.
- Return type:
- read(size=-1)[source]¶
Read up to
sizecharacters, or all remaining characters whensizeis negative.