SkillsHooksPromptsAgentsPersonasModelsPoliciesToolsTemplatesBundlesCategoriesStart here
← Skills
Sk skilldevopsdraft

Azure Sdk Python Storage

Azure Storage SDK (Python): Blobs, Queues, and Tables management with best practices for security and performance.

id skill/azure-sdk-python-storagev1.0.0by claudeskills.in communityinvoke /azure-sdk-python-storage
devopsclaudeskills

System prompt fragment

Azure Storage SDK (Python)

Comprehensive guide to Azure Storage operations using Python.

Blob Storage

from azure.storage.blob import BlobServiceClient

client = BlobServiceClient.from_connection_string(conn_str)
container = client.get_container_client("my-container")
blob = container.get_blob_client("my-blob")
blob.upload_blob(data)

Security

  • Use Managed Identities instead of connection strings where possible.
  • Implement SAS tokens with limited scope and expiration for clients.
  • Enable Storage Analytics for monitoring and logging.
Author claudeskills.in community. Source claudeskills.in (original ↗). License unknown — the source states none; review before redistributing. Imported 2026-09-03. Aggregated by claudeskills.in from community GitHub lists.