This is the Python function that my app is using in order to retrieve an Azure text blob. Here is the documentation for the gen_blob_to_text
function (when you click on the page, Ctrl+F and search for the name of the function).
def get_text_blob(self, archive_url):
container, archive_location = paths.extract_url_elements(archive_url)
blob = None
try:
blob = self.blob_service.get_blob_to_text(container_name = container,
blob_name = archive_location)
self.logger.debug('Retrieved ' + archive_url)
except:
self.logger.error('Failed to retrieve text blob {} {}'.format(archive_url, traceback.format_exc()))
return blob
After running this function and getting the blob
object back (which is in my case some HTML content), if I inspect it in Visual Studio 2017, I get the following incomplete blob text, as shown by the ...
My question is: How can I get the full text blob instead of a portion of it? What am I doing wrong?