azure-storage-blob-py
Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.
npx skills add sickn33/agentic-awesome-skills --skill azure-storage-blob-py --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Azure Blob Storage SDK for Python Client library for Azure Blob Storage — object storage for unstructured data. ## Installation ```bash pip install azure-storage-blob azure-identity ``` ## Environment Variables ```bash AZURE_STORAGE_ACCOUNT_NAME=<your-storage-account> # Or use full URL AZURE_STORAGE_ACCOUNT_URL=https://<account>.blob.core.windows.net ``` ## Authentication ```python from azure.identity import DefaultAzureCredential from azure.storage.blob import BlobServiceClient credential = DefaultAzureCredential() account_url = "https://<account>.blob.core.windows.net" blob_service_client = BlobServiceClient(account_url, credential=credential) ``` ## Client Hierarchy | Client | Purpose | Get From | |--------|---------|----------| | `BlobServiceClient` | Account-level operations | Direct instantiation | | `ContainerClient` | Container operations | `blob_service_client.get_container_client()` | | `BlobClient` | Single blob operations | `container_client.get_blob_client()` | ## Core Workflow ### Create Container ```python container_client = blob_service_client.get_container_client("mycontainer") container_client.create_container() ``` ### Upload Blob ```python # From file path blo
- Installation
- Environment Variables
- Authentication
- Client Hierarchy
- Core Workflow
- Create Container
- Upload Blob
- Download Blob
- List Blobs
- Delete Blob
- Performance Tuning
- SAS Tokens
- Blob Properties and Metadata
- Async Client
pip install azure-storage-blob azure-identity Or use full URL
What does the azure-storage-blob-py skill do?
Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill azure-storage-blob-py --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.