Microsoft/azure-servicebus-py — Agent Skills | officialskills.sh
Back to skills

azure-servicebus-py

Azure Service Bus SDK for Python.

Setup & Installation

npx skills add https://github.com/microsoft/skills --skill azure-servicebus-py
or paste the link and ask your coding assistant to install it
https://github.com/microsoft/skills/tree/main/.github/plugins/azure-sdk-python/skills/azure-servicebus-py
View on GitHub

What This Skill Does

Azure Service Bus SDK for Python. Provides async and sync clients for sending and receiving messages via queues, topics, and subscriptions on Azure Service Bus. Supports sessions, scheduled messages, dead-letter queues, and batch operations.

The SDK handles message locking, settlement, batching, and async I/O so you don't have to build reliable delivery guarantees from scratch over raw HTTP calls.

When to use it

  • Sending order events to a queue for background processing
  • Fanning out notifications to multiple subscribers via topics
  • Processing messages in strict order using session-based queues
  • Scheduling messages to be delivered at a future time
  • Routing failed messages to a dead-letter queue for manual review