https://github.com/watson-developer-cloud/python-sdk
:snake: Client library to use the IBM Watson services in Python and available in pip as watson-developer-cloud
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
1 of 64 committers (1.6%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.7%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
:snake: Client library to use the IBM Watson services in Python and available in pip as watson-developer-cloud
Basic Info
- Host: GitHub
- Owner: watson-developer-cloud
- License: apache-2.0
- Language: Python
- Default Branch: master
- Homepage: https://pypi.org/project/ibm-watson/
- Size: 38.6 MB
Statistics
- Stars: 1,457
- Watchers: 124
- Forks: 824
- Open Issues: 6
- Releases: 105
Topics
Metadata Files
README.md
Watson Developer Cloud Python SDK
Deprecated builds
Python client library to quickly get started with the various [Watson APIs][wdc] services.
Before you begin
- You need an [IBM Cloud][ibm-cloud-onboarding] account. We now only support
python 3.5and above
Installation
To install, use pip or easy_install:
bash
pip install --upgrade ibm-watson
or
bash
easy_install --upgrade ibm-watson
Note the following: a) Versions prior to 3.0.0 can be installed using:
bash
pip install --upgrade watson-developer-cloud
b) If you run into permission issues try:
bash
sudo -H pip install --ignore-installed six ibm-watson
For more details see #225
c) In case you run into problems installing the SDK in DSX, try
!pip install --upgrade pip
Restarting the kernel
For more details see #405
Examples
The [examples][examples] folder has basic and advanced examples. The examples within each service assume that you already have service credentials.
Running in IBM Cloud
If you run your app in IBM Cloud, the SDK gets credentials from the [VCAP_SERVICES][vcap_services] environment variable.
Authentication
Watson services are migrating to token-based Identity and Access Management (IAM) authentication.
- With some service instances, you authenticate to the API by using IAM.
- In other instances, you authenticate by providing the username and password for the service instance.
Getting credentials
To find out which authentication to use, view the service credentials. You find the service credentials for authentication the same way for all Watson services:
- Go to the IBM Cloud Dashboard page.
- Either click an existing Watson service instance in your resource list or click Create resource > AI and create a service instance.
- Click on the Manage item in the left nav bar of your service instance.
On this page, you should be able to see your credentials for accessing your service instance.
Supplying credentials
There are three ways to supply the credentials you found above to the SDK for authentication.
Credential file
With a credential file, you just need to put the file in the right place and the SDK will do the work of parsing and authenticating. You can get this file by clicking the Download button for the credentials in the Manage tab of your service instance.
The file downloaded will be called ibm-credentials.env. This is the name the SDK will search for and must be preserved unless you want to configure the file path (more on that later). The SDK will look for your ibm-credentials.env file in the following places (in order):
- The top-level directory of the project you're using the SDK in
- Your system's home directory
As long as you set that up correctly, you don't have to worry about setting any authentication options in your code. So, for example, if you created and downloaded the credential file for your Discovery instance, you just need to do the following:
python
assistant = AssistantV2(version='2024-08-25')
And that's it!
If you're using more than one service at a time in your code and get two different ibm-credentials.env files, just put the contents together in one ibm-credentials.env file and the SDK will handle assigning credentials to their appropriate services.
If you would like to configure the location/name of your credential file, you can set an environment variable called IBM_CREDENTIALS_FILE. This will take precedence over the locations specified above. Here's how you can do that:
bash
export IBM_CREDENTIALS_FILE="<path>"
where <path> is something like /home/user/Downloads/<file_name>.env.
Environment Variables
Simply set the environment variables using
bash
export ASSISTANT_APIKEY="<your apikey>"
export ASSISTANT_AUTH_TYPE="iam"
The credentials will be loaded from the environment automatically
python
assistant = AssistantV2(version='2024-08-25')
Manually
If you'd prefer to set authentication values manually in your code, the SDK supports that as well. The way you'll do this depends on what type of credentials your service instance gives you.
IAM
IBM Cloud has migrated to token-based Identity and Access Management (IAM) authentication. IAM authentication uses a service API key to get an access token that is passed with the call. Access tokens are valid for approximately one hour and must be regenerated.
You supply either an IAM service API key or a bearer token:
- Use the API key to have the SDK manage the lifecycle of the access token. The SDK requests an access token, ensures that the access token is valid, and refreshes it if necessary.
- Use the access token if you want to manage the lifecycle yourself. For details, see Authenticating with IAM tokens.
- Use a server-side to generate access tokens using your IAM API key for untrusted environments like client-side scripts. The generated access tokens will be valid for one hour and can be refreshed.
Supplying the API key
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import IAMAuthenticator
In the constructor, letting the SDK manage the token
authenticator = IAMAuthenticator('apikey',
url='
Generating bearer tokens using API key
```python from ibm_watson import IAMTokenManager
In your API endpoint use this to generate new bearer tokens
iamtokenmanager = IAMTokenManager(apikey='
Supplying the bearer token
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import BearerTokenAuthenticator
in the constructor, assuming control of managing the token
authenticator = BearerTokenAuthenticator('your bearer token')
assistant = AssistantV2(version='2024-08-25',
authenticator=authenticator)
assistant.setserviceurl('
Username and password
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import BasicAuthenticator
authenticator = BasicAuthenticator('username', 'password')
assistant = AssistantV2(version='2024-08-25', authenticator=authenticator)
assistant.setserviceurl('
No Authentication
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import NoAuthAuthenticator
authenticator = NoAuthAuthenticator()
assistant = AssistantV2(version='2024-08-25', authenticator=authenticator)
assistant.setserviceurl('
MCSP
To use the SDK through a third party cloud provider (such as AWS), use the MCSPAuthenticator. This will require the base endpoint URL for the MCSP token service (e.g. https://iam.platform.saas.ibm.com) and an apikey.
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import MCSPAuthenticator
In the constructor, letting the SDK manage the token
authenticator = MCSPAuthenticator('apikey', 'tokenserviceendpoint')
assistant = AssistantV2(version='2023-06-15',
authenticator=authenticator)
assistant.setserviceurl('
Python version
Tested on Python 3.9, 3.10, and 3.11.
Questions
If you have issues with the APIs or have a question about the Watson services, see Stack Overflow.
Configuring the http client
To set client configs like timeout use the set_http_config() function and pass it a dictionary of configs. See this documentation for more information about the options. All options shown except method, url, headers, params, data, and auth are configurable via set_http_config(). For example for a Assistant service instance
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import IAMAuthenticator
authenticator = IAMAuthenticator('your apikey') assistant = AssistantV2( version='2024-08-25', authenticator=authenticator) assistant.setserviceurl('https://api.us-south.assistant.watson.cloud.ibm.com')
assistant.sethttpconfig({'timeout': 100}) response = assistant.message(workspaceid=workspaceid, input={ 'text': 'What\'s the weather like?'}).get_result() print(json.dumps(response, indent=2)) ```
Use behind a corporate proxy
To use the SDK with any proxies you may have they can be set as shown below. For documentation on proxies see here
See this example configuration:
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import IAMAuthenticator
authenticator = IAMAuthenticator('your apikey') assistant = AssistantV2( version='2024-08-25', authenticator=authenticator) assistant.setserviceurl('https://api.us-south.assistant.watson.cloud.ibm.com')
assistant.sethttpconfig({'proxies': { 'http': 'http://10.10.1.10:3128', 'https': 'http://10.10.1.10:1080', }}) ```
Sending custom certificates
To send custom certificates as a security measure in your request, use the cert property of the HTTPS Agent.
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import IAMAuthenticator
authenticator = IAMAuthenticator('your apikey') assistant = AssistantV2( version='2024-08-25', authenticator=authenticator) assistant.setserviceurl('https://api.us-south.assistant.watson.cloud.ibm.com')
assistant.sethttpconfig({'cert': ('pathtocertfile','pathtokeyfile')}) ```
Disable SSL certificate verification
For ICP(IBM Cloud Private), you can disable the SSL certificate verification by:
python
service.set_disable_ssl_verification(True)
Or can set it from extrernal sources. For example set in the environment variable.
export <service name>_DISABLE_SSL=True
Setting the service url
To set the base service to be used when contacting the service
python
service.set_service_url('my_new_service_url')
Or can set it from extrernal sources. For example set in the environment variable.
export <service name>_URL="<your url>"
Sending request headers
Custom headers can be passed in any request in the form of a dict as:
python
headers = {
'Custom-Header': 'custom_value'
}
For example, to send a header called Custom-Header to a call in Watson Assistant, pass
the headers parameter as:
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import IAMAuthenticator
authenticator = IAMAuthenticator('your apikey') assistant = AssistantV2( version='2024-08-25', authenticator=authenticator) assistant.setserviceurl('https://api.us-south.assistant.watson.cloud.ibm.com')
response = assistant.listworkspaces(headers={'Custom-Header': 'customvalue'}).get_result() ```
Parsing HTTP response information
If you would like access to some HTTP response information along with the response model, you can set the set_detailed_response() to True. Since Python SDK v2.0, it is set to True
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import IAMAuthenticator
authenticator = IAMAuthenticator('your apikey') assistant = AssistantV2( version='2024-08-25', authenticator=authenticator) assistant.setserviceurl('https://api.us-south.assistant.watson.cloud.ibm.com')
assistant.setdetailedresponse(True) response = assistant.listworkspaces(headers={'Custom-Header': 'customvalue'}).get_result() print(response) ```
This would give an output of DetailedResponse having the structure:
python
{
'result': <response returned by service>,
'headers': { <http response headers> },
'status_code': <http status code>
}
You can use the get_result(), get_headers() and getstatuscode() to return the result, headers and status code respectively.
Getting the transaction ID
Every SDK call returns a response with a transaction ID in the X-Global-Transaction-Id header. Together the service instance region, this ID helps support teams troubleshoot issues from relevant logs.
Suceess
```python from ibm_watson import AssistantV2
service = AssistantV2(authenticator={myauthenticator}) responseheaders = service.myservicecall().getheaders() print(responseheaders.get('X-Global-Transaction-Id')) ```
Failure
```python from ibm_watson import AssistantV2, ApiException
try: service = AssistantV2(authenticator={myauthenticator}) service.myservicecall() except ApiException as e: print(e.globaltransactionid) # OR print(e.httpresponse.headers.get('X-Global-Transaction-Id')) ```
However, the transaction ID isn't available when the API doesn't return a response for some reason. In that case, you can set your own transaction ID in the request. For example, replace <my-unique-transaction-id> in the following example with a unique transaction ID.
```python from ibm_watson import AssistantV2
service = AssistantV2(authenticator={myauthenticator})
service.myservice_call(headers={'X-Global-Transaction-Id': '
Using Websockets
The Text to Speech service supports synthesizing text to spoken audio using web sockets with the synthesize_using_websocket. The Speech to Text service supports recognizing speech to text using web sockets with the recognize_using_websocket. These methods need a custom callback class to listen to events. Below is an example of synthesize_using_websocket. Note: The service accepts one request per connection.
```py from ibm_watson.websocket import SynthesizeCallback
class MySynthesizeCallback(SynthesizeCallback): def init(self): SynthesizeCallback.init(self)
def on_audio_stream(self, audio_stream):
return audio_stream
def on_data(self, data):
return data
mycallback = MySynthesizeCallback() service.synthesizeusingwebsocket('I like to pet dogs', mycallback, accept='audio/wav', voice='en-US_AllisonVoice' ) ```
Cloud Pak for Data
If your service instance is of CP4D, below are two ways of initializing the assistant service.
1) Supplying the username, password and authentication url
The SDK will manage the token for the user
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import CloudPakForDataAuthenticator
authenticator = CloudPakForDataAuthenticator(
'
assistant = AssistantV2(
version='
2) Supplying the access token
```python from ibmwatson import AssistantV2 from ibmcloudsdkcore.authenticators import BearerTokenAuthenticator
authenticator = BearerTokenAuthenticator('your managed access token')
assistant = AssistantV2(version='
Logging
Enable logging
python
import logging
logging.basicConfig(level=logging.DEBUG)
This would show output of the form:
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): iam.cloud.ibm.com:443
DEBUG:urllib3.connectionpool:https://iam.cloud.ibm.com:443 "POST /identity/token HTTP/1.1" 200 1809
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): gateway.watsonplatform.net:443
DEBUG:urllib3.connectionpool:https://gateway.watsonplatform.net:443 "POST /assistant/api/v1/workspaces?version=2018-07-10 HTTP/1.1" 201 None
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): gateway.watsonplatform.net:443
DEBUG:urllib3.connectionpool:https://gateway.watsonplatform.net:443 "GET /assistant/api/v1/workspaces/883a2a44-eb5f-4b1a-96b0-32a90b475ea8?version=2018-07-10&export=true HTTP/1.1" 200 None
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): gateway.watsonplatform.net:443
DEBUG:urllib3.connectionpool:https://gateway.watsonplatform.net:443 "DELETE /assistant/api/v1/workspaces/883a2a44-eb5f-4b1a-96b0-32a90b475ea8?version=2018-07-10 HTTP/1.1" 200 28
Low level request and response dump
To get low level information of the requests/ responses:
python
from http.client import HTTPConnection
HTTPConnection.debuglevel = 1
Dependencies
- [requests]
python_dateutil>= 2.5.3- [responses] for testing
- Following for web sockets support in speech to text
websocket-client1.1.0
ibm_cloud_sdk_core>= 3.16.2
Contributing
See [CONTRIBUTING.md][contributing].
License
This library is licensed under the [Apache 2.0 license][license].
Owner
- Name: IBM Watson APIs
- Login: watson-developer-cloud
- Kind: organization
- Location: USA
- Website: https://www.ibm.com/watson/developer/
- Twitter: ibmwatsonx
- Repositories: 97
- Profile: https://github.com/watson-developer-cloud
A collection of SDKs that work with the Watson REST APIs. For more information about the APIs, see https://cloud.ibm.com/docs?tab=api-docs&category=ai
GitHub Events
Total
- Release event: 2
- Watch event: 13
- Delete event: 5
- Issue comment event: 4
- Push event: 5
- Pull request review event: 3
- Pull request event: 10
- Fork event: 9
- Create event: 7
Last Year
- Release event: 2
- Watch event: 13
- Delete event: 5
- Issue comment event: 4
- Push event: 5
- Pull request review event: 3
- Pull request event: 10
- Fork event: 9
- Create event: 7
Committers
Last synced: about 1 year ago
Top Committers
| Name | Commits | |
|---|---|---|
| ehdsouza | e****a@g****m | 688 |
| Jeffrey Stylos | j****s@g****m | 259 |
| German Attanasio Ruiz | g****o@g****m | 132 |
| Angelo Paparazzi | a****i@i****m | 98 |
| semantic-release-bot | s****t@m****t | 87 |
| Joshua B. Smith | j****h@u****m | 65 |
| Mamoon Raja | m****1@g****m | 47 |
| Glenn R. Fisher | g****r@g****m | 41 |
| Mike Kistler | m****r@u****m | 25 |
| Jeff Kaminski | j****s@u****m | 24 |
| Ajiemar Santiago | a****r@g****m | 17 |
| April Webster | a****r@u****m | 14 |
| Ammar Dodin | a****n@i****m | 13 |
| Garrett May | g****y | 12 |
| Harrison Saylor | h****r@g****m | 12 |
| Allen Dean | a****n@u****m | 11 |
| Andrew Turgeon | a****n@g****m | 10 |
| Michael G Mosca | m****m@u****m | 10 |
| travis-ci | t****s@t****g | 9 |
| Hernan Badenes | h****s@a****m | 6 |
| Kings Odigie | K****e@i****m | 6 |
| cclauss | c****s@m****m | 5 |
| Samir J. Patel | s****a@u****m | 5 |
| cclauss | c****s@b****h | 5 |
| Manish Thakur | m****0@g****m | 4 |
| Wolf | w****t@i****m | 3 |
| Sean Dague | s****n@d****t | 3 |
| Mark Niemann-Ross | m****s@g****m | 3 |
| Kaylyn Sigler | k****h@u****m | 3 |
| Ammar Dodin | 8****n | 3 |
| and 34 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 38
- Total pull requests: 88
- Average time to close issues: 7 months
- Average time to close pull requests: 24 days
- Total issue authors: 35
- Total pull request authors: 26
- Average comments per issue: 4.79
- Average comments per pull request: 2.16
- Merged pull requests: 64
- Bot issues: 0
- Bot pull requests: 1
Past Year
- Issues: 1
- Pull requests: 8
- Average time to close issues: N/A
- Average time to close pull requests: 1 day
- Issue authors: 1
- Pull request authors: 4
- Average comments per issue: 0.0
- Average comments per pull request: 0.5
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- nathannzw (2)
- johann-petrak (2)
- giacomobartoli (2)
- jamessdixon (1)
- thetime1102 (1)
- battlesdev (1)
- b0r3k (1)
- arprasto (1)
- Hassan-gobara (1)
- tigermessi (1)
- daehyunryu (1)
- danielfrees (1)
- Fred-Fan (1)
- damlagul (1)
- JonhnyDev (1)
Pull Request Authors
- apaparazzi0329 (40)
- mamoonraja (11)
- mediumTaj (7)
- Mikemosca (7)
- watson-github-bot (4)
- ehdsouza (4)
- trishahanlon (3)
- jkd2021 (2)
- Darragh-McGonigle (2)
- BBMKS (2)
- Hsaylor (2)
- petereon (1)
- lucascerfig (1)
- krishvsoni (1)
- Eshan-dev (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 5
-
Total downloads:
- pypi 53,712 last-month
- Total docker downloads: 757,230,720
-
Total dependent packages: 21
(may contain duplicates) -
Total dependent repositories: 1,664
(may contain duplicates) - Total versions: 284
- Total maintainers: 4
pypi.org: ibm-watson
Client library to use the IBM Watson Services
- Homepage: https://github.com/watson-developer-cloud/python-sdk
- Documentation: https://ibm-watson.readthedocs.io/
- License: Apache 2.0
-
Latest release: 10.0.0
published about 1 year ago
Rankings
Maintainers (3)
pypi.org: watson-developer-cloud
Client library to use the IBM Watson Services
- Homepage: https://github.com/watson-developer-cloud/python-sdk
- Documentation: https://watson-developer-cloud.readthedocs.io/
- License: Apache 2.0
-
Latest release: 2.10.1
published about 7 years ago
Rankings
Maintainers (1)
proxy.golang.org: github.com/watson-developer-cloud/python-sdk
- Documentation: https://pkg.go.dev/github.com/watson-developer-cloud/python-sdk#section-documentation
- License: apache-2.0
-
Latest release: v10.0.0+incompatible
published about 1 year ago
Rankings
spack.io: py-ibm-watson
Python client library to quickly get started with the various Watson APIs services.
- Homepage: https://github.com/watson-developer-cloud/python-sdk
- License: []
-
Latest release: 5.1.0
published about 4 years ago
Rankings
Maintainers (1)
conda-forge.org: ibm-watson
- Homepage: https://github.com/watson-developer-cloud/python-sdk
- License: Apache-2.0
-
Latest release: 6.1.0
published almost 4 years ago
Rankings
Dependencies
- 113 dependencies
- Sphinx ==3.5.2
- bumpversion ==0.6.0
- codecov >=1.6.3
- coverage >=4,<5
- ibm_cloud_sdk_core >=3.3.6,==3.
- pylint ==2.8.2
- pytest ==6.2.4
- pytest-cov >=2.2.1
- pytest-rerunfailures ==9.1.1
- python_dotenv ==0.17.1
- recommonmark ==0.7.1
- responses ==0.13.3
- websocket-client ==1.1.0
- ibm_cloud_sdk_core >=3.3.6,==3.
- python_dateutil >=2.5.3
- requests >=2.0,<3.0
- websocket-client ==1.1.0
- ibm_cloud_sdk_core >=3.3.6,
- python_dateutil >=2.5.3
- requests >=2.0,
- websocket-client ==1.1.0
- actions/checkout v2 composite
- actions/setup-python v2 composite
- codecov/codecov-action v1 composite
- actions/checkout v2 composite
- actions/setup-node v1 composite
- actions/setup-python v2 composite
- pypa/gh-action-pypi-publish v1.4.2 composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- voxmedia/github-action-slack-notify-build v1 composite
- python 3-slim build