Azure Core Library for Python
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
- breaking The 'azure' meta-package is deprecated as of version 5.0.0 and can no longer be installed. Install individual packages as needed.
- deprecated The 'azure' meta-package is deprecated as of version 5.0.0 and can no longer be installed. Install individual packages as needed.
Install
-
pip install azure-core
Imports
- HttpRequest
from azure.core.pipeline import HttpRequest
Quickstart
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)