Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def content_as_bytes(self, max_concurrency=None):

This method is deprecated, use func:`readall` instead.

:param int max_concurrency:
:param Optional[int] max_concurrency:
The number of parallel connections with which to download.
:return: The contents of the file as bytes.
:rtype: bytes
Expand All @@ -896,7 +896,7 @@ def content_as_text(self, max_concurrency=None, encoding="UTF-8"):

This method is deprecated, use func:`readall` instead.

:param int max_concurrency:
:param Optional[int] max_concurrency:
The number of parallel connections with which to download.
:param str encoding:
Test encoding to decode the downloaded bytes. Default is UTF-8.
Expand Down Expand Up @@ -924,7 +924,7 @@ def download_to_stream(self, stream, max_concurrency=None):
The stream to download to. This can be an open file-handle,
or any writable stream. The stream must be seekable if the download
uses more than one parallel connection.
:param int max_concurrency:
:param Optional[int] max_concurrency:
The number of parallel connections with which to download.
:return: The properties of the downloaded blob.
:rtype: Any
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ async def content_as_bytes(self, max_concurrency=None):

This method is deprecated, use func:`readall` instead.

:param int max_concurrency:
:param Optional[int] max_concurrency:
The number of parallel connections with which to download.
:return: The contents of the file as bytes.
:rtype: bytes
Expand All @@ -839,7 +839,7 @@ async def content_as_text(self, max_concurrency=None, encoding="UTF-8"):

This method is deprecated, use func:`readall` instead.

:param int max_concurrency:
:param Optional[int] max_concurrency:
The number of parallel connections with which to download.
:param str encoding:
Test encoding to decode the downloaded bytes. Default is UTF-8.
Expand Down Expand Up @@ -867,7 +867,7 @@ async def download_to_stream(self, stream, max_concurrency=None):
The stream to download to. This can be an open file-handle,
or any writable stream. The stream must be seekable if the download
uses more than one parallel connection.
:param int max_concurrency:
:param Optional[int] max_concurrency:
The number of parallel connections with which to download.
:return: The properties of the downloaded blob.
:rtype: Any
Expand Down
Loading