@Nate Lo Yih-Shiou You have that option ! If you want to read a blob into a stream. There’s an equivalent method in the new version.
Please refer to this article: https://azuresdkdocs.blob.core.windows.net/$web/python/azure-storage-blob/12.3.2/azure.storage.blob.html#azure.storage.blob.BlobClient.download_blob
with open(DEST_FILE, "wb") as my_blob:
download_stream = blob_client.download_blob()
download_stream.readinto(my_blob)
However, if you want to modify only part of a blob, let's say a block of a block blob. You don't have to download the whole blob then you should be able to update only a block.
Hope this helps!
Kindly let us know if the above helps or you need further assistance on this issue.
-----------------------------------------------------------------------------------------------------------------------------------------
Please don’t forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.