Azure Core Library for Python

1.39.0 · active · verified Sat Mar 28

The Azure Core Library for Python provides essential functionalities for Azure SDK clients, including authentication, logging, and HTTP transport. Current version: 1.39.0. Release cadence: Regular updates with new features and fixes.

Warnings

Install

Imports

Quickstart

Basic usage of HttpRequest from azure-core

from azure.core.pipeline import HttpRequest

# Create an HttpRequest object
request = HttpRequest('GET', 'https://example.com')

# Send the request (assuming a transport is set up)
response = await transport.send(request)

print(response.status_code)

view raw JSON →