def reader()

in src/azstoragetorch/datasets.py [0:0]


    def reader(self) -> BlobIO:
        """Open file-like object for reading the blob's content.

        :returns: A file-like object for reading the blob's content.
        """
        return BlobIO(
            self._blob_client.url, "rb", _azstoragetorch_blob_client=self._blob_client
        )