Currently I have the following to list all of the blobs in my blob container:
blobs = container_client.list_blobs()
However, I am looking for a way to list all of the blobs that start with any of the letters from 'a' to 'z'. I've read about the name_starts_with parameter, but it seems I can only specify a single letter, rather than a range. For example:
blobs_with_a = container_client.list_blobs(name_starts_with='a')
Is there a way to specify a range of letters that the blob can start with rather than specifying a single character?