InterBoundaryIter
A Producer that will iterate over boundaries.
Attributes
| Attribute | Type | Description |
|---|---|---|
| _stream | stream | The underlying input stream containing the raw data to be parsed for boundaries. |
| _boundary | bytes or string | The specific byte sequence or string used as a delimiter to separate segments within the stream. |
Constructor
Signature
def InterBoundaryIter(
stream: Any,
boundary: bytes
)
Parameters
| Name | Type | Description |
|---|---|---|
| stream | Any | The input stream to be iterated over. |
| boundary | bytes | The boundary delimiter used to separate segments in the stream. |