For google-cloud-storage, in the documentation for download_as_string() method on blobs, it says on line 715:
"""Download the contents of this blob as a string.
This is not true. The confusingly named method downloads the content as bytes, not string.
On line 731, the return type is correctly declared as bytes, but reading the documentation, you are still presented with conflicting information.