azure-storage-blob 12.26.0__tar.gz → 12.27.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/CHANGELOG.md +19 -0
- {azure_storage_blob-12.26.0/azure_storage_blob.egg-info → azure_storage_blob-12.27.0}/PKG-INFO +17 -5
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/README.md +1 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/__init__.py +3 -3
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_blob_client.py +16 -0
- azure_storage_blob-12.27.0/azure/storage/blob/_blob_client.pyi +780 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_blob_service_client.py +41 -4
- azure_storage_blob-12.27.0/azure/storage/blob/_blob_service_client.pyi +182 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_container_client.py +22 -0
- azure_storage_blob-12.27.0/azure/storage/blob/_container_client.pyi +380 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/_azure_blob_storage.py +3 -2
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/_configuration.py +2 -2
- azure_storage_blob-12.27.0/azure/storage/blob/_generated/_utils/__init__.py +6 -0
- azure_storage_blob-12.26.0/azure/storage/blob/_generated/_serialization.py → azure_storage_blob-12.27.0/azure/storage/blob/_generated/_utils/serialization.py +4 -22
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/_azure_blob_storage.py +3 -2
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/_configuration.py +2 -2
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +6 -10
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_blob_operations.py +35 -39
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +9 -13
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_container_operations.py +20 -24
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +13 -17
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_service_operations.py +10 -14
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/models/_models_py3.py +30 -9
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_append_blob_operations.py +11 -15
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_blob_operations.py +60 -64
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_block_blob_operations.py +16 -20
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_container_operations.py +39 -43
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_page_blob_operations.py +23 -27
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_service_operations.py +19 -23
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_lease.py +2 -2
- azure_storage_blob-12.27.0/azure/storage/blob/_lease.pyi +81 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_list_blobs_helper.py +1 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_serialize.py +1 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/base_client.py +0 -13
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/base_client_async.py +0 -22
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/models.py +1 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/policies.py +10 -2
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/response_handlers.py +5 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_version.py +1 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/__init__.py +5 -8
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_blob_client_async.py +28 -8
- azure_storage_blob-12.27.0/azure/storage/blob/aio/_blob_client_async.pyi +763 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_blob_service_client_async.py +41 -4
- azure_storage_blob-12.27.0/azure/storage/blob/aio/_blob_service_client_async.pyi +187 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_container_client_async.py +27 -1
- azure_storage_blob-12.27.0/azure/storage/blob/aio/_container_client_async.pyi +384 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_lease_async.py +2 -2
- azure_storage_blob-12.27.0/azure/storage/blob/aio/_lease_async.pyi +81 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0/azure_storage_blob.egg-info}/PKG-INFO +17 -5
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure_storage_blob.egg-info/SOURCES.txt +10 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/setup.py +1 -2
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/_test_base.py +3 -13
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_append_blob.py +10 -8
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_append_blob_async.py +10 -8
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_api_version.py +24 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_api_version_async.py +24 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_block_blob.py +49 -15
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_block_blob_async.py +40 -16
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_common_blob.py +9 -7
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_common_blob_async.py +10 -8
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_helpers.py +5 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_helpers_async.py +5 -1
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_retry.py +59 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_retry_async.py +59 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/LICENSE +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/MANIFEST.in +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_blob_client_helpers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_blob_service_client_helpers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_container_client_helpers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_deserialize.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_download.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_encryption.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/_patch.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/_patch.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/aio/operations/_patch.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/models/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/models/_azure_blob_storage_enums.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/models/_patch.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/operations/_patch.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_generated/py.typed +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_models.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_quick_query_helper.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/authentication.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/avro/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/avro/avro_io.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/avro/avro_io_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/avro/datafile.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/avro/datafile_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/avro/schema.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/constants.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/parser.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/policies_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/request_handlers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/shared_access_signature.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/uploads.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared/uploads_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_shared_access_signature.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_upload_helpers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_download_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_encryption_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_list_blobs_helper.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_models.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_quick_query_helper_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/aio/_upload_helpers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/py.typed +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure_storage_blob.egg-info/dependency_links.txt +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure_storage_blob.egg-info/not-zip-safe +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure_storage_blob.egg-info/requires.txt +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure_storage_blob.egg-info/top_level.txt +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/migration_guide.md +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/pyproject.toml +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/README.md +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_authentication.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_authentication_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_batch_delete_blobs.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_client_side_encryption.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_client_side_encryption_keyvault.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_common.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_common_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_container_access_policy.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_container_access_policy_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_containers.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_containers_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_copy_blob.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_copy_blob_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_directory_interface.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_directory_interface_mimetype.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_enumerate_blobs.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_enumerate_blobs_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_hello_world.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_hello_world_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_network_activity_logging.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_proxy_configuration.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_query.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_service.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_service_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_walk_blob_hierarchy.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/samples/blob_samples_walk_blob_hierarchy_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/setup.cfg +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/avro/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/avro/test_avro.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/avro/test_avro_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/conftest.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/encryption_test_helper.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/fake_credentials.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/_test_base_legacy.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/download.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/list_blobs.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/upload.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/upload_block.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/T1_legacy_tests/upload_from_file.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/download.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/key_wrapper.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/list_blobs.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/upload.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/upload_block.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/perfstress_tests/upload_from_file.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/settings/__init__.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/settings/settings_fake.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/settings/testcase.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_access_conditions.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_access_conditions_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_client.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_client_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_encryption.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_encryption_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_encryption_v2.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_encryption_v2_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_retry.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_retry_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_service_properties.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_service_properties_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_service_stats.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_service_stats_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_storage_account.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_storage_account_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_tags.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_blob_tags_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_block_blob_sync_copy.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_block_blob_sync_copy_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_container.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_container_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_cpk.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_cpk_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_cpk_n.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_cpk_n_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_dictmixin.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_get_blob.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_get_blob_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_large_block_blob.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_large_block_blob_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_largest_block_blob.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_largest_block_blob_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_logging.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_logging_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_ors.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_ors_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_page_blob.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_page_blob_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_quick_query.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_quick_query_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_transports.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_transports_async.py +0 -0
- {azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/tests/test_upload_chunking.py +0 -0
@@ -1,5 +1,16 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
+
## 12.27.0 (2025-10-15)
|
4
|
+
|
5
|
+
### Features Added
|
6
|
+
- Stable release of features from 12.27.0b1
|
7
|
+
|
8
|
+
### Other Changes
|
9
|
+
- Migrated any previously documented `kwarg` arguments to be named keywords.
|
10
|
+
Some public types may have been adjusted if they were previously erroneous or incomplete.
|
11
|
+
- Removed `__enter__` and `__exit__` attributes for all asynchronous client objects for raising explicit `TypeError`,
|
12
|
+
and let the `AttributeError` raise directly.
|
13
|
+
|
3
14
|
## 12.26.0 (2025-07-16)
|
4
15
|
|
5
16
|
### Features Added
|
@@ -8,6 +19,14 @@
|
|
8
19
|
### Bugs Fixed
|
9
20
|
- Fixed an issue where `BlobClient`'s `start_copy_from_url` with `incremental_copy=True` results in `TypeError`.
|
10
21
|
|
22
|
+
## 12.27.0b1 (2025-06-12)
|
23
|
+
|
24
|
+
This version and all future versions will require Python 3.9+. Python 3.8 is no longer supported.
|
25
|
+
|
26
|
+
### Features Added
|
27
|
+
- Added support for service version 2025-11-05.
|
28
|
+
- Added support for better error handling for copy operations.
|
29
|
+
|
11
30
|
## 12.26.0b1 (2025-05-06)
|
12
31
|
|
13
32
|
### Features Added
|
{azure_storage_blob-12.26.0/azure_storage_blob.egg-info → azure_storage_blob-12.27.0}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: azure-storage-blob
|
3
|
-
Version: 12.
|
3
|
+
Version: 12.27.0
|
4
4
|
Summary: Microsoft Azure Blob Storage Client Library for Python
|
5
5
|
Home-page: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
6
6
|
Author: Microsoft Corporation
|
@@ -11,13 +11,12 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Programming Language :: Python
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
14
|
-
Classifier: Programming Language :: Python :: 3.8
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
17
16
|
Classifier: Programming Language :: Python :: 3.11
|
18
17
|
Classifier: Programming Language :: Python :: 3.12
|
19
18
|
Classifier: License :: OSI Approved :: MIT License
|
20
|
-
Requires-Python: >=3.
|
19
|
+
Requires-Python: >=3.9
|
21
20
|
Description-Content-Type: text/markdown
|
22
21
|
License-File: LICENSE
|
23
22
|
Requires-Dist: azure-core>=1.30.0
|
@@ -26,6 +25,19 @@ Requires-Dist: typing-extensions>=4.6.0
|
|
26
25
|
Requires-Dist: isodate>=0.6.1
|
27
26
|
Provides-Extra: aio
|
28
27
|
Requires-Dist: azure-core[aio]>=1.30.0; extra == "aio"
|
28
|
+
Dynamic: author
|
29
|
+
Dynamic: author-email
|
30
|
+
Dynamic: classifier
|
31
|
+
Dynamic: description
|
32
|
+
Dynamic: description-content-type
|
33
|
+
Dynamic: home-page
|
34
|
+
Dynamic: keywords
|
35
|
+
Dynamic: license
|
36
|
+
Dynamic: license-file
|
37
|
+
Dynamic: provides-extra
|
38
|
+
Dynamic: requires-dist
|
39
|
+
Dynamic: requires-python
|
40
|
+
Dynamic: summary
|
29
41
|
|
30
42
|
# Azure Storage Blobs client library for Python
|
31
43
|
Azure Blob storage is Microsoft's object storage solution for the cloud. Blob storage is optimized for storing massive amounts of unstructured data, such as text or binary data.
|
@@ -49,7 +61,7 @@ Blob storage is ideal for:
|
|
49
61
|
## Getting started
|
50
62
|
|
51
63
|
### Prerequisites
|
52
|
-
* Python 3.
|
64
|
+
* Python 3.9 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
|
53
65
|
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
|
54
66
|
[Azure storage account](https://learn.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
|
55
67
|
|
@@ -20,7 +20,7 @@ Blob storage is ideal for:
|
|
20
20
|
## Getting started
|
21
21
|
|
22
22
|
### Prerequisites
|
23
|
-
* Python 3.
|
23
|
+
* Python 3.9 or later is required to use this package. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
|
24
24
|
* You must have an [Azure subscription](https://azure.microsoft.com/free/) and an
|
25
25
|
[Azure storage account](https://learn.microsoft.com/azure/storage/common/storage-account-overview) to use this package.
|
26
26
|
|
@@ -125,8 +125,8 @@ def upload_blob_to_url(
|
|
125
125
|
:return: Blob-updated property dict (Etag and last modified)
|
126
126
|
:rtype: dict(str, Any)
|
127
127
|
"""
|
128
|
-
with BlobClient.from_blob_url(blob_url, credential=credential) as client:
|
129
|
-
return
|
128
|
+
with BlobClient.from_blob_url(blob_url, credential=credential) as client: # pylint: disable=not-context-manager
|
129
|
+
return client.upload_blob(data=data, blob_type=BlobType.BLOCKBLOB, **kwargs)
|
130
130
|
|
131
131
|
|
132
132
|
def _download_to_stream(client: BlobClient, handle: IO[bytes], **kwargs: Any) -> None:
|
@@ -194,7 +194,7 @@ def download_blob_from_url(
|
|
194
194
|
:rtype: None
|
195
195
|
"""
|
196
196
|
overwrite = kwargs.pop('overwrite', False)
|
197
|
-
with BlobClient.from_blob_url(blob_url, credential=credential) as client:
|
197
|
+
with BlobClient.from_blob_url(blob_url, credential=credential) as client: # pylint: disable=not-context-manager
|
198
198
|
if hasattr(output, 'write'):
|
199
199
|
_download_to_stream(client, cast(IO[bytes], output), **kwargs)
|
200
200
|
else:
|
{azure_storage_blob-12.26.0 → azure_storage_blob-12.27.0}/azure/storage/blob/_blob_client.py
RENAMED
@@ -190,6 +190,22 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
190
190
|
self._client._config.version = get_api_version(kwargs) # type: ignore [assignment]
|
191
191
|
self._configure_encryption(kwargs)
|
192
192
|
|
193
|
+
def __enter__(self) -> Self:
|
194
|
+
self._client.__enter__()
|
195
|
+
return self
|
196
|
+
|
197
|
+
def __exit__(self, *args) -> None:
|
198
|
+
self._client.__exit__(*args)
|
199
|
+
|
200
|
+
def close(self) -> None:
|
201
|
+
"""This method is to close the sockets opened by the client.
|
202
|
+
It need not be used when using with a context manager.
|
203
|
+
|
204
|
+
:return: None
|
205
|
+
:rtype: None
|
206
|
+
"""
|
207
|
+
self._client.close()
|
208
|
+
|
193
209
|
def _format_url(self, hostname: str) -> str:
|
194
210
|
return _format_url(
|
195
211
|
container_name=self.container_name,
|