Microsoft Azure Service Bus Client Library for Python providing comprehensive messaging capabilities for enterprise applications.
Overall
score
92%
{
"context": "This criteria evaluates the engineer's ability to configure Azure Service Bus client to connect through an HTTP proxy server. The focus is on correct usage of proxy configuration parameters and WebSocket transport, which are essential for connecting to Service Bus from corporate network environments.",
"type": "weighted_checklist",
"checklist": [
{
"name": "HTTP Proxy Configuration",
"description": "Uses the http_proxy parameter when creating the ServiceBusClient to configure proxy settings including host, port, and optional authentication credentials (username/password)",
"max_score": 40
},
{
"name": "WebSocket Transport Type",
"description": "Configures the client to use TransportType.AmqpOverWebsocket via the transport_type parameter, which is required for proxy connectivity",
"max_score": 25
},
{
"name": "Queue Sender Creation",
"description": "Creates a queue sender using the get_queue_sender() method with the specified queue name",
"max_score": 15
},
{
"name": "Message Sending",
"description": "Sends messages to the queue using the send_messages() method on the sender object",
"max_score": 15
},
{
"name": "Authenticated Proxy Support",
"description": "Properly handles authenticated proxy scenarios by including username and password in the http_proxy configuration when provided",
"max_score": 5
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-azure-servicebusdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10