The SAP Cloud SDK for Python provides libraries and tools for building cloud-native applications on the SAP Business Technology Platform. It includes modules for destination lookups, RFC/BAPI calls, OData and OpenAPI consumption, and integration with SAP AI Core and Workflow services. Current version 0.23.1 requires Python >=3.11. The project follows a monthly release cadence and is under active development, with frequent API changes.
pip install sap-cloud-sdkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic example: create a destination from environment variable 'MY_DESTINATION', instantiate the client, and perform a GET request via OData.
Update imports: replace 'from sap_cloud_sdk.v4 import ...' with 'from sap_cloud_sdk import ...'
Use 'Destination.from_env()' or 'Destination.from_dict()' to build a destination, then pass to client.
Use client.odata.get(...) or client.rest.get(...) instead of client.execute(method='GET', path=...)
Use 'Destination.from_env()' to avoid manual construction errors.
No resource links recorded.