Source code for httk.core.datastream.textstream_like

import io
import pathlib
import urllib.request

from . import textstream_backend, textstream_view

[docs] type TextstreamLike = ( textstream_backend.TextstreamBackend | textstream_view.TextstreamView | io.TextIOBase | io.StringIO | str | pathlib.Path | urllib.request.Request )