freshcrate
Home > Frameworks > ibm-cloud-sdk-core

ibm-cloud-sdk-core

Core library used by SDKs for IBM Cloud Services

Description

[![Build Status](https://github.com/IBM/python-sdk-core/actions/workflows/build.yaml/badge.svg)](https://github.com/IBM/python-sdk-core/actions/workflows/build.yaml) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ibm-cloud-sdk-core)](https://pypi.org/project/ibm-cloud-sdk-core/) [![Latest Stable Version](https://img.shields.io/pypi/v/ibm-cloud-sdk-core.svg)](https://pypi.python.org/pypi/ibm-cloud-sdk-core) [![CLA assistant](https://cla-assistant.io/readme/badge/ibm/python-sdk-core)](https://cla-assistant.io/ibm/python-sdk-core) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) # IBM Python SDK Core Version 3.24.4 This project contains core functionality required by Python code generated by the IBM Cloud OpenAPI SDK Generator (openapi-sdkgen). # Python Version The current minimum Python version supported is 3.10. ## Installation To install, use `pip`: ```bash python -m pip install --upgrade ibm-cloud-sdk-core ``` ## Authentication The python-sdk-core project supports the following types of authentication: - Basic Authentication - Bearer Token Authentication - Identity and Access Management (IAM) Authentication (grant type: apikey) - Identity and Access Management (IAM) Authentication (grant type: assume) - Container Authentication - VPC Instance Authentication - Cloud Pak for Data Authentication - No Authentication (for testing) For more information about the various authentication types and how to use them with your services, click [here](Authentication.md). ## Issues If you encounter an issue with this project, you are welcome to submit a [bug report](https://github.com/IBM/python-sdk-core/issues). Before opening a new issue, please search for similar issues. It's possible that someone has already reported it. ## Logging This library uses Python's built-in `logging` module to perform logging of error, warning, informational and debug messages. The components within the SDK Core library use a single logger named `ibm-cloud-sdk-core`. For complete information on the logging facility, please see: [Logging facility for Python](https://docs.python.org/3/library/logging.html). ### Enable logging There are various ways to configure and enable the logging facility. The code example below demonstrates a simple way to enable debug logging by invoking the `logging.basicConfig()` function. Note that, as a convenience, if you set the logging level to `DEBUG`, then HTTP request/response message logging is also enabled. The following code example shows how debug logging can be enabled: ```python import logging # Create a basic logging configuration that: # 1. Defines a handler to display messages on the console. # 2. Sets the root logger's logging level to DEBUG. # 3. Sets the 'format' string used to display messages. logging.basicConfig(level=logging.DEBUG, format='%(asctime)s [%(name)s:%(levelname)s] %(message)s', force=True) ``` When running your application, you should see output like this if debug logging is enabled: ``` 2024-09-16 15:44:45,174 [ibm-cloud-sdk-core:DEBUG] Get authenticator from environment, key=global_search 2024-09-16 15:44:45,175 [ibm-cloud-sdk-core:DEBUG] Set service URL: https://api.global-search-tagging.cloud.ibm.com 2024-09-16 15:44:45,175 [ibm-cloud-sdk-core:DEBUG] Set User-Agent: ibm-python-sdk-core-3.24.4 os.name=Linux os.version=6.10.9-100.fc39.x86_64 python.version=3.12.5 2024-09-16 15:44:45,181 [ibm-cloud-sdk-core:DEBUG] Configuring BaseService instance with service name: global_search 2024-09-16 15:44:45,181 [ibm-cloud-sdk-core:DEBUG] Performing synchronous token fetch 2024-09-16 15:44:45,182 [ibm-cloud-sdk-core:DEBUG] Invoking IAM get_token operation: https://iam.cloud.ibm.com/identity/token 2024-09-16 15:44:45,182 [urllib3.connectionpool:DEBUG] Starting new HTTPS connection (1): iam.cloud.ibm.com:443 send: b'POST /identity/token HTTP/1.1\r\nHost: iam.cloud.ibm.com\r\nUser-Agent: ibm-python-sdk-core/iam-authenticator-3.24.4 os.name=Linux os.version=6.10.9-100.fc39.x86_64 python.version=3.12.5\r\nAccept-Encoding: gzip, deflate\r\nAccept: application/json\r\nConnection: keep-alive\r\nContent-Type: application/x-www-form-urlencoded\r\nContent-Length: 135\r\n\r\n' send: b'grant_type=urn%3Aibm%3Aparams%3Aoauth%3Agrant-type%3Aapikey&apikey=[redacted]&response_type=cloud_iam' reply: 'HTTP/1.1 200 OK\r\n' header: Content-Type: application/json header: Content-Language: en-US header: Content-Encoding: gzip header: Date: Mon, 16 Sep 2024 20:44:45 GMT header: Content-Length: 983 header: Connection: keep-alive 2024-09-16 15:44:45,670 [urllib3.connectionpool:DEBUG] https://iam.cloud.ibm.com:443 "POST /identity/token HTTP/11" 200 983 2024-09-16 15:44:45,672 [ibm-cloud-sdk-core:DEBUG] Returned from IAM get_token operation 2024-09-16 15:44:45,673 [ibm-cloud-sdk-core:DEBUG] Authenticated outbound request (type=iam) 2024-09-16 15:44:45,673 [ibm-cloud-sdk

Release History

VersionChangesUrgencyDate
3.24.4Imported from PyPI (3.24.4)Low4/21/2026
v3.24.4## [3.24.4](https://github.com/IBM/python-sdk-core/compare/v3.24.3...v3.24.4) (2026-02-03) ### Bug Fixes * bump PyJWT to avoid CVEs ([#230](https://github.com/IBM/python-sdk-core/issues/230)) ([455606b](https://github.com/IBM/python-sdk-core/commit/455606b2f5022a11cfad83cbb545b9046b47336e)) Low2/3/2026
v3.24.3## [3.24.3](https://github.com/IBM/python-sdk-core/compare/v3.24.2...v3.24.3) (2026-01-28) ### Bug Fixes * **build:** include test/utils/*.py and test resources in sdist ([#229](https://github.com/IBM/python-sdk-core/issues/229)) ([802255b](https://github.com/IBM/python-sdk-core/commit/802255b8f873b56a811bce764db7b202cdf2ddb8)) Low1/28/2026
v3.24.2## [3.24.2](https://github.com/IBM/python-sdk-core/compare/v3.24.1...v3.24.2) (2025-06-12) ### Bug Fixes * **build:** bump requests to avoid CVE-2024-47081 ([7b5f21b](https://github.com/IBM/python-sdk-core/commit/7b5f21b3d9e3a82e5d1292f290a7d4fee00b27a7)) Low6/12/2025
v3.24.1## [3.24.1](https://github.com/IBM/python-sdk-core/compare/v3.24.0...v3.24.1) (2025-05-30) ### Bug Fixes * **build:** suppress detect-secrets false positive ([4e9bc4c](https://github.com/IBM/python-sdk-core/commit/4e9bc4c6dbb651a8d25ad28b6233d28569275819)) Low5/30/2025
v3.24.0# [3.24.0](https://github.com/IBM/python-sdk-core/compare/v3.23.0...v3.24.0) (2025-05-30) ### Features * **auth:** add support for MCSP V2 authentication ([d467d02](https://github.com/IBM/python-sdk-core/commit/d467d02d5a8d49b7dd212319003e727d55494b63)) Low5/30/2025
v3.23.0# [3.23.0](https://github.com/IBM/python-sdk-core/compare/v3.22.1...v3.23.0) (2025-03-07) ### Features * **ContainerAuthenticator:** add support for code engine workload ([#218](https://github.com/IBM/python-sdk-core/issues/218)) ([765d33f](https://github.com/IBM/python-sdk-core/commit/765d33f794265784f216cdccb156d2f8476a66d1)) Low3/7/2025
v3.22.1## [3.22.1](https://github.com/IBM/python-sdk-core/compare/v3.22.0...v3.22.1) (2025-01-09) ### Bug Fixes * enable github workflows ([436ba89](https://github.com/IBM/python-sdk-core/commit/436ba891fd0d1f960b3427de3d6b40b1950d1a53)) Low1/9/2025
v3.22.0# [3.22.0](https://github.com/IBM/python-sdk-core/compare/v3.21.0...v3.22.0) (2024-10-15) ### Features * **IAMAssumeAuthenticator:** introduce a new authenticator ([#211](https://github.com/IBM/python-sdk-core/issues/211)) ([29a8eb7](https://github.com/IBM/python-sdk-core/commit/29a8eb7f5d9d72b7e48d4bf7f3867e5c93e747fb)) Low10/15/2024
v3.21.0# [3.21.0](https://github.com/IBM/python-sdk-core/compare/v3.20.6...v3.21.0) (2024-09-18) ### Bug Fixes * **logging:** improve python core's debug logging ([67b126c](https://github.com/IBM/python-sdk-core/commit/67b126c2fd87d14057b185a8e6d13644a955f332)) ### Features * redact secrets in debug logging ([#209](https://github.com/IBM/python-sdk-core/issues/209)) ([ed043dc](https://github.com/IBM/python-sdk-core/commit/ed043dc2814a2959da9b92c4286ca8b23b5fa59d)) Low9/18/2024
v3.20.6## [3.20.6](https://github.com/IBM/python-sdk-core/compare/v3.20.5...v3.20.6) (2024-08-08) ### Bug Fixes * **build:** use correct package list with setuptools ([#207](https://github.com/IBM/python-sdk-core/issues/207)) ([27fa51d](https://github.com/IBM/python-sdk-core/commit/27fa51d85c8df0bc5e52bdc084155bd284a77ec0)) Low8/8/2024
v3.20.5## [3.20.5](https://github.com/IBM/python-sdk-core/compare/v3.20.4...v3.20.5) (2024-08-07) ### Bug Fixes * **build:** migrate setup.py to pyproject.toml ([#205](https://github.com/IBM/python-sdk-core/issues/205)) ([#206](https://github.com/IBM/python-sdk-core/issues/206)) ([03c8a6d](https://github.com/IBM/python-sdk-core/commit/03c8a6d81dd8227e6510a26fef75e502b82db304)) Low8/7/2024
v3.20.4## [3.20.4](https://github.com/IBM/python-sdk-core/compare/v3.20.3...v3.20.4) (2024-07-29) ### Bug Fixes * remove test command and related code from `setup.py` ([#203](https://github.com/IBM/python-sdk-core/issues/203)) ([bd44dd1](https://github.com/IBM/python-sdk-core/commit/bd44dd1152e01bb381f95e6295103991c0dd9ac4)) Low7/29/2024
v3.20.3## [3.20.3](https://github.com/IBM/python-sdk-core/compare/v3.20.2...v3.20.3) (2024-07-11) ### Bug Fixes * improve the detection and loading of default certificates ([#197](https://github.com/IBM/python-sdk-core/issues/197)) ([3dc4cc4](https://github.com/IBM/python-sdk-core/commit/3dc4cc47a8fa5363b1b08c9fbc1412885748af3e)) Low7/11/2024
v3.20.2## [3.20.2](https://github.com/IBM/python-sdk-core/compare/v3.20.1...v3.20.2) (2024-07-09) ### Bug Fixes * always load the default certs on our custom SSL context ([#196](https://github.com/IBM/python-sdk-core/issues/196)) ([ff14a4b](https://github.com/IBM/python-sdk-core/commit/ff14a4b1177b31ab2afd8aed7c6e3ffecdabfb4c)) Low7/9/2024
v3.20.1## [3.20.1](https://github.com/IBM/python-sdk-core/compare/v3.20.0...v3.20.1) (2024-06-03) ### Bug Fixes * specify the maximum version of `requests` to avoid regression ([#194](https://github.com/IBM/python-sdk-core/issues/194)) ([f4ac0d1](https://github.com/IBM/python-sdk-core/commit/f4ac0d143d5d0079a4f2e99c1ebf1328b91a432f)) Low6/3/2024
v3.20.0# [3.20.0](https://github.com/IBM/python-sdk-core/compare/v3.19.2...v3.20.0) (2024-04-17) ### Features * send user-agent header with auth token requests ([#191](https://github.com/IBM/python-sdk-core/issues/191)) ([37014b5](https://github.com/IBM/python-sdk-core/commit/37014b57a27090deb6c51e5e6019dd7bee90a6fd)) Low4/17/2024
v3.19.2## [3.19.2](https://github.com/IBM/python-sdk-core/compare/v3.19.1...v3.19.2) (2024-02-28) ### Bug Fixes * adjust IAM token expiration time ([#189](https://github.com/IBM/python-sdk-core/issues/189)) ([f4f0b5a](https://github.com/IBM/python-sdk-core/commit/f4f0b5afe4746c8dfc9687ebeb9db20bf1df2414)) Low2/28/2024
v3.19.1## [3.19.1](https://github.com/IBM/python-sdk-core/compare/v3.19.0...v3.19.1) (2024-01-24) ### Bug Fixes * use the correct SSL config if cert verification is disabled ([#187](https://github.com/IBM/python-sdk-core/issues/187)) ([7fc172a](https://github.com/IBM/python-sdk-core/commit/7fc172ad325545aa07bd5cbab1cb65cb0c078b9b)) Low1/24/2024
v3.19.0# [3.19.0](https://github.com/IBM/python-sdk-core/compare/v3.18.2...v3.19.0) (2024-01-22) ### Features * rename `ApiException.code` to `ApiException.status_code` ([#185](https://github.com/IBM/python-sdk-core/issues/185)) ([cf74671](https://github.com/IBM/python-sdk-core/commit/cf74671a9a5d538fbf2b28a4e9c5046644e696fb)) Low1/22/2024
v3.18.2## [3.18.2](https://github.com/IBM/python-sdk-core/compare/v3.18.1...v3.18.2) (2023-12-11) ### Bug Fixes * use retry_interval as retry backoff_max ([#184](https://github.com/IBM/python-sdk-core/issues/184)) ([7e84825](https://github.com/IBM/python-sdk-core/commit/7e848259ca88fa1b4831786eaaae2a02f8afbcd2)) Low12/11/2023
v3.18.1## [3.18.1](https://github.com/IBM/python-sdk-core/compare/v3.18.0...v3.18.1) (2023-12-08) ### Bug Fixes * bump urllib3 to v2.1.0 ([#183](https://github.com/IBM/python-sdk-core/issues/183)) ([d1ab40c](https://github.com/IBM/python-sdk-core/commit/d1ab40c941fb21be798461169a1937dbaf4de1de)) Low12/8/2023
v3.18.0# [3.18.0](https://github.com/IBM/python-sdk-core/compare/v3.17.3...v3.18.0) (2023-11-15) ### Features * **MCSPAuthenticator:** add new authenticator for Multi-Cloud Saas Platform ([#181](https://github.com/IBM/python-sdk-core/issues/181)) ([1be97e5](https://github.com/IBM/python-sdk-core/commit/1be97e5712c7b62847d8412cfa75096c1bf51b9d)) Low11/15/2023
v3.17.3## [3.17.3](https://github.com/IBM/python-sdk-core/compare/v3.17.2...v3.17.3) (2023-11-06) ### Bug Fixes * **build:** bump urllib version to avoid vulnerability ([#180](https://github.com/IBM/python-sdk-core/issues/180)) ([5363104](https://github.com/IBM/python-sdk-core/commit/5363104a765d3b1928ec76e6fc75b314398029c5)) Low11/6/2023
v3.17.2## [3.17.2](https://github.com/IBM/python-sdk-core/compare/v3.17.1...v3.17.2) (2023-10-10) ### Bug Fixes * use on-the-fly compression only for file objects ([#177](https://github.com/IBM/python-sdk-core/issues/177)) ([dd1cd05](https://github.com/IBM/python-sdk-core/commit/dd1cd056ec030344e2b8fec5093b2acae53ae941)) Low10/10/2023
v3.17.1## [3.17.1](https://github.com/IBM/python-sdk-core/compare/v3.17.0...v3.17.1) (2023-10-04) ### Bug Fixes * add correct support for compressing file-like objects ([#174](https://github.com/IBM/python-sdk-core/issues/174)) ([2f91105](https://github.com/IBM/python-sdk-core/commit/2f911055aac6ffe8e0bab056b861ce41a29ad58b)) Low10/4/2023
v3.17.0# [3.17.0](https://github.com/IBM/python-sdk-core/compare/v3.16.7...v3.17.0) (2023-10-03) ### Features * bump min supported version of python to 3.8 ([#175](https://github.com/IBM/python-sdk-core/issues/175)) ([8933684](https://github.com/IBM/python-sdk-core/commit/8933684d8a4a5a4450239811d1169529982c3029)) Low10/3/2023
v3.16.7## [3.16.7](https://github.com/IBM/python-sdk-core/compare/v3.16.6...v3.16.7) (2023-05-31) ### Bug Fixes * **build:** bump requests to latest version (2.31.0) ([#171](https://github.com/IBM/python-sdk-core/issues/171)) ([a293e76](https://github.com/IBM/python-sdk-core/commit/a293e760228492cb108ab41f5093355bae018cc2)) Low5/31/2023
v3.16.6## [3.16.6](https://github.com/IBM/python-sdk-core/compare/v3.16.5...v3.16.6) (2023-05-22) ### Bug Fixes * **ContainerAuthenticator:** add sa-token as default CR token filename ([#165](https://github.com/IBM/python-sdk-core/issues/165)) ([7c6bd0f](https://github.com/IBM/python-sdk-core/commit/7c6bd0f1d3521628ef0fd593f7110d9174c5b771)) Low5/22/2023
v3.16.5## [3.16.5](https://github.com/IBM/python-sdk-core/compare/v3.16.4...v3.16.5) (2023-03-23) ### Bug Fixes * allow control characters in JSON responses ([#160](https://github.com/IBM/python-sdk-core/issues/160)) ([2f09503](https://github.com/IBM/python-sdk-core/commit/2f09503ac4ebfb6f603f142f461122c402aa03d5)) Low3/23/2023
v3.16.4## [3.16.4](https://github.com/IBM/python-sdk-core/compare/v3.16.3...v3.16.4) (2023-03-23) ### Bug Fixes * bump requests version to avoid import error ([#159](https://github.com/IBM/python-sdk-core/issues/159)) ([e9ca94c](https://github.com/IBM/python-sdk-core/commit/e9ca94c4ddd707b84bfa72b6a04ee3c56d21c08a)) Low3/23/2023
v3.16.3## [3.16.3](https://github.com/IBM/python-sdk-core/compare/v3.16.2...v3.16.3) (2023-03-22) ### Bug Fixes * detect JSON unmarshal errors in responses ([#157](https://github.com/IBM/python-sdk-core/issues/157)) ([30d7c52](https://github.com/IBM/python-sdk-core/commit/30d7c52659f92f8d9218b66372ef0d707a297232)) Low3/22/2023
v3.16.2## [3.16.2](https://github.com/IBM/python-sdk-core/compare/v3.16.1...v3.16.2) (2023-02-08) ### Bug Fixes * avoid pylint errors ([00ee90b](https://github.com/IBM/python-sdk-core/commit/00ee90bf223a1f620e211fe9de2ed95ccfff8233)) Low2/8/2023
v3.16.1## [3.16.1](https://github.com/IBM/python-sdk-core/compare/v3.16.0...v3.16.1) (2023-01-09) ### Bug Fixes * pin build to semantic-release v19 ([03c5474](https://github.com/IBM/python-sdk-core/commit/03c547442c91e0fc497a2a9ba202b8231674562d)) * **VPCInstanceAuthenticator:** use correct version string ([93729a3](https://github.com/IBM/python-sdk-core/commit/93729a3ee09b8011989b7679b4820d042f79964b)) Low1/9/2023
v3.16.0# [3.16.0](https://github.com/IBM/python-sdk-core/compare/v3.15.3...v3.16.0) (2022-08-01) ### Features * **CP4D Authentication:** add ssl verification for self-signed certificates ([#147](https://github.com/IBM/python-sdk-core/issues/147)) ([a16685d](https://github.com/IBM/python-sdk-core/commit/a16685d83641e467f2dcaf610194fd3f84f13a84)) Low8/1/2022
v3.15.3## [3.15.3](https://github.com/IBM/python-sdk-core/compare/v3.15.2...v3.15.3) (2022-06-07) ### Bug Fixes * avoid warning when custom headers are used ([#142](https://github.com/IBM/python-sdk-core/issues/142)) ([a87d66d](https://github.com/IBM/python-sdk-core/commit/a87d66da4b9ed98b9ac910ca67c86b674aab7ef6)) Low6/7/2022
v3.15.2## [3.15.2](https://github.com/IBM/python-sdk-core/compare/v3.15.1...v3.15.2) (2022-05-31) ### Bug Fixes * bump PyJWT version to avoid CVE ([#141](https://github.com/IBM/python-sdk-core/issues/141)) ([bea54f0](https://github.com/IBM/python-sdk-core/commit/bea54f03fab6d9ebef1a26f170280b6e8698c04e)) Low5/31/2022
v3.15.1## [3.15.1](https://github.com/IBM/python-sdk-core/compare/v3.15.0...v3.15.1) (2022-03-21) ### Bug Fixes * set minimum TLS version to v1.2 ([#139](https://github.com/IBM/python-sdk-core/issues/139)) ([8d6ec4b](https://github.com/IBM/python-sdk-core/commit/8d6ec4b675642664258650e7d7c12c8fc333a410)) Low3/21/2022
v3.15.0# [3.15.0](https://github.com/IBM/python-sdk-core/compare/v3.14.0...v3.15.0) (2022-02-25) ### Features * update Python versions ([#138](https://github.com/IBM/python-sdk-core/issues/138)) ([a8c201e](https://github.com/IBM/python-sdk-core/commit/a8c201ed7eb88bf3509da0db6da84619190c7bfb)) Low2/25/2022
v3.14.0# [3.14.0](https://github.com/IBM/python-sdk-core/compare/v3.13.2...v3.14.0) (2022-01-14) ### Features * use module names for loggers ([#136](https://github.com/IBM/python-sdk-core/issues/136)) ([36523c8](https://github.com/IBM/python-sdk-core/commit/36523c869627323374afc7b246959969a8a1c9a3)) Low1/14/2022
v3.13.2## [3.13.2](https://github.com/IBM/python-sdk-core/compare/v3.13.1...v3.13.2) (2021-11-15) ### Bug Fixes * bump requests and urllib3 deps ([#132](https://github.com/IBM/python-sdk-core/issues/132)) ([ced5b7e](https://github.com/IBM/python-sdk-core/commit/ced5b7ea2398570e187a109bc51dba2b30ab7243)) Low11/15/2021
v3.13.1## [3.13.1](https://github.com/IBM/python-sdk-core/compare/v3.13.0...v3.13.1) (2021-11-15) ### Bug Fixes * strip trailing slashes in BaseService.set_service_url ([#130](https://github.com/IBM/python-sdk-core/issues/130)) ([37d0099](https://github.com/IBM/python-sdk-core/commit/37d0099cfd7bfe4bdb9f1cddc6bb2b62f4609f60)) Low11/15/2021
v3.13.0# [3.13.0](https://github.com/IBM/python-sdk-core/compare/v3.12.0...v3.13.0) (2021-11-08) ### Features * **VPCInstanceAuthenticator:** add support for new VPC authentication flow ([#129](https://github.com/IBM/python-sdk-core/issues/129)) ([5cb1c21](https://github.com/IBM/python-sdk-core/commit/5cb1c212aaef5df62df00064a12d6581e960a95b)) Low11/8/2021
v3.12.0# [3.12.0](https://github.com/IBM/python-sdk-core/compare/v3.11.3...v3.12.0) (2021-10-15) ### Features * add authentication_type method to authenticators ([#127](https://github.com/IBM/python-sdk-core/issues/127)) ([c56ce73](https://github.com/IBM/python-sdk-core/commit/c56ce73454a2d049ed787649be0d3d464aae4c24)) Low10/15/2021
v3.11.3## [3.11.3](https://github.com/IBM/python-sdk-core/compare/v3.11.2...v3.11.3) (2021-08-24) ### Bug Fixes * multiple IAM based authenticator overrides ([#124](https://github.com/IBM/python-sdk-core/issues/124)) ([b142e9e](https://github.com/IBM/python-sdk-core/commit/b142e9ecf337f73dcfd1e577afb330e993a3371b)) Low8/24/2021
v3.11.2## [3.11.2](https://github.com/IBM/python-sdk-core/compare/v3.11.1...v3.11.2) (2021-08-20) ### Bug Fixes * **retries:** change default retry_interval to 1 second (was 0.1) ([#122](https://github.com/IBM/python-sdk-core/issues/122)) ([3daef00](https://github.com/IBM/python-sdk-core/commit/3daef00a61c461512da0a3b37952ed275180569d)) Low8/20/2021
v3.11.1## [3.11.1](https://github.com/IBM/python-sdk-core/compare/v3.11.0...v3.11.1) (2021-08-18) ### Bug Fixes * encode serialized JSON string as UTF-8 ([#121](https://github.com/IBM/python-sdk-core/issues/121)) ([6c1ddac](https://github.com/IBM/python-sdk-core/commit/6c1ddacff512478ec9aaa6f5c6ff454eae780c74)) Low8/18/2021
v3.11.0# [3.11.0](https://github.com/IBM/python-sdk-core/compare/v3.10.1...v3.11.0) (2021-08-12) ### Features * implement container authentication ([#119](https://github.com/IBM/python-sdk-core/issues/119)) ([5237277](https://github.com/IBM/python-sdk-core/commit/5237277b4e7e9daf54bb70d2ec01882cfa3167c2)) Low8/12/2021
v3.10.1## [3.10.1](https://github.com/IBM/python-sdk-core/compare/v3.10.0...v3.10.1) (2021-07-08) ### Bug Fixes * remove reserved keywords from kwargs before passing it to requests ([#117](https://github.com/IBM/python-sdk-core/issues/117)) ([6191978](https://github.com/IBM/python-sdk-core/commit/619197844e553fd4fd3c7e9ece2abae752d5dc3f)) Low7/8/2021
v3.10.0# [3.10.0](https://github.com/IBM/python-sdk-core/compare/v3.9.0...v3.10.0) (2021-05-12) ### Features * support api key use case for CP4D authenticator ([830c28f](https://github.com/IBM/python-sdk-core/commit/830c28f68682a885d5cd4f668964def2864930d0)) Low5/12/2021
v3.9.0# [3.9.0](https://github.com/IBM/python-sdk-core/compare/v3.8.0...v3.9.0) (2021-03-25) ### Features * **python:** add max retry configuration for python requests session ([481192c](https://github.com/IBM/python-sdk-core/commit/481192c5468c908f28f77ce697cae13350409397)) Low3/25/2021

Dependencies & License Audit

Loading dependencies...

Similar Packages

pre-commitA framework for managing and maintaining multi-language pre-commit hooks.v4.6.0
azure-core-tracing-opentelemetryMicrosoft Azure Azure Core OpenTelemetry plugin Library for Pythonazure-template_0.1.0b6187637
spdx-toolsSPDX parser and tools.0.8.5
lacesDjango components that know how to render themselves.0.1.2
django-tasksA backport of Django's built in Tasks framework0.12.0