Registry /
azure / azure-mgmt-streamanalytics
Install & Compatibility
Where this runs
tested against v1.0.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 27.1MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.7s · import 0.000s · 28MB
26MB installed
● package 26MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
StreamAnalyticsManagementClient
✓ from azure.mgmt.streamanalytics import StreamAnalyticsManagementClient
✗ from azure.mgmt.streamanalytics import StreamAnalyticsManagementClient
Authenticates using DefaultAzureCredential and lists all Stream Analytics jobs in the subscription.
import os
from azure.identity import DefaultAzureCredential
from azure.mgmt.streamanalytics import StreamAnalyticsManagementClient
subscription_id = os.environ.get('AZURE_SUBSCRIPTION_ID', '')
credential = DefaultAzureCredential()
client = StreamAnalyticsManagementClient(credential, subscription_id)
# List all jobs in the subscription
for job in client.streaming_jobs.list():
print(job.name, job.properties.job_state)
Upgrade
Version history
1.0.0latest on PyPI · released Jan 6, 2022
Audit
Dependencies
azure-mgmt-corerequiredCore management client functionality
azure-identityoptionalAuthentication via DefaultAzureCredential and other credential types