Metadata-Version: 1.1
Name: watson-developer-cloud
Version: 2.5.4
Summary: Client library to use the IBM Watson Services
Home-page: https://github.com/watson-developer-cloud/python-sdk
Author: Jeffrey Stylos
Author-email: jsstylos@us.ibm.com
License: Apache 2.0
Description: # Watson Developer Cloud Python SDK
        
        [![Build Status](https://travis-ci.org/watson-developer-cloud/python-sdk.svg?branch=master)](https://travis-ci.org/watson-developer-cloud/python-sdk)
        [![Slack](https://wdc-slack-inviter.mybluemix.net/badge.svg)](https://wdc-slack-inviter.mybluemix.net)
        [![Latest Stable Version](https://img.shields.io/pypi/v/watson-developer-cloud.svg)](https://pypi.python.org/pypi/watson-developer-cloud)
        [![CLA assistant](https://cla-assistant.io/readme/badge/watson-developer-cloud/python-sdk)](https://cla-assistant.io/watson-developer-cloud/python-sdk)
        
        Python client library to quickly get started with the various [Watson APIs][wdc] services.
        
        <details>
          <summary>Table of Contents</summary>
        
          * [Before you begin](#before-you-begin)
          * [Installation](#installation)
          * [Examples](#examples)
          * [Running in IBM Cloud](#running-in-ibm-cloud)
          * [Authentication](#authentication)
            * [Getting credentials](#getting-credentials)
            * [IAM](#iam)
            * [Username and password](#username-and-password)
          * [Python version](#python-version)
          * [Changes for v1.0](#changes-for-v10)
          * [Changes for v2.0](#changes-for-v20)
          * [Migration](#migration)
          * [Configuring the http client](#configuring-the-http-client-supported-from-v110)
          * [Disable SSL certificate verification](#disable-ssl-certificate-verification)
          * [Sending request headers](#sending-request-headers)
          * [Parsing HTTP response info](#parsing-http-response-info)
          * [Dependencies](#dependencies)
          * [License](#license)
          * [Contributing](#contributing)
        
        </details>
        
        ## Before you begin
        * You need an [IBM Cloud][ibm-cloud-onboarding] account.
        
        ## Installation
        
        To install, use `pip` or `easy_install`:
        
        ```bash
        pip install --upgrade watson-developer-cloud
        ```
        
        or
        
        ```bash
        easy_install --upgrade watson-developer-cloud
        ```
        
        Note the following:
        
        a) If you run into permission issues try:
        
        ```bash
        sudo -H pip install --ignore-installed six watson-developer-cloud
        ```
        
        For more details see [#225](https://github.com/watson-developer-cloud/python-sdk/issues/225)
        
        b) In case you run into problems installing the SDK in DSX, try
        ```
        !pip install --upgrade pip
        ```
        Restarting the kernel
        
        For more details see [#405](https://github.com/watson-developer-cloud/python-sdk/issues/405)
        
        ## Examples
        
        The [examples][examples] folder has basic and advanced examples. The examples within each service assume that you already have [service credentials](#getting-credentials).
        
        Note:
        Conversation V1 is deprecated and will be removed in the next major release of the SDK. Use Assistant V1 or Assistant V2.
        
        ## 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](#iam)**.
        - In other instances, you authenticate by providing the **[username and password](#username-and-password)** for the service instance.
        
        **Note:** Authenticating with the X-Watson-Authorization-Token header is deprecated. The token continues to work with Cloud Foundry services, but is not supported for services that use Identity and Access Management (IAM) authentication. See [here](#iam) for details.
        
        ### 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:
        
        1. Go to the IBM Cloud [Dashboard](https://console.bluemix.net/dashboard/apps?category=ai) page.
        1. Either click an existing Watson service instance or click [**Create resource > AI**](https://console.bluemix.net/catalog/?category=ai) and create a service instance.
        1. Copy the `url` and either `apikey` or `username` and `password`. Click **Show** if the credentials are masked.
        
        ### IAM
        
        IBM Cloud is migrating 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 an **access 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](https://console.bluemix.net/docs/services/watson/getting-started-iam.html).
        
        #### Supplying the IAM API key
        
        ```python
        # In the constructor, letting the SDK manage the IAM token
        discovery = DiscoveryV1(version='2018-08-01',
                                url='<url_as_per_region>',
                                iam_apikey='<iam_apikey>',
                                iam_url='<iam_url>') # optional - the default value is https://iam.bluemix.net/identity/token
        ```
        
        ```python
        # after instantiation, letting the SDK manage the IAM token
        discovery = DiscoveryV1(version='2018-08-01', url='<url_as_per_region>')
        discovery.set_iam_apikey('<iam_apikey>')
        ```
        
        #### Supplying the access token
        ```python
        # in the constructor, assuming control of managing IAM token
        discovery = DiscoveryV1(version='2018-08-01',
                                url='<url_as_per_region>',
                                iam_access_token='<iam_access_token>')
        ```
        
        ```python
        # after instantiation, assuming control of managing IAM token
        discovery = DiscoveryV1(version='2018-08-01', url='<url_as_per_region>')
        discovery.set_iam_access_token('<access_token>')
        ```
        
        ### Username and password
        ```python
        from watson_developer_cloud import DiscoveryV1
        # In the constructor
        discovery = DiscoveryV1(version='2018-08-01', url='<url_as_per_region>', username='<username>', password='<password>')
        ```
        
        ```python
        # After instantiation
        discovery = DiscoveryV1(version='2018-08-01', url='<url_as_per_region>')
        discovery.set_username_and_password('<username>', '<password>')
        ```
        
        ## Python version
        
        Tested on Python 2.7, 3.4, 3.5, and 3.6.
        
        ## Changes for v1.0
        Version 1.0 focuses on the move to programmatically-generated code for many of the services. See the [changelog](https://github.com/watson-developer-cloud/python-sdk/wiki/Changelog) for the details.
        
        ## Changes for v2.0
        `DetailedResponse` which contains the result, headers and HTTP status code is now the default response for all methods.
        ```python
        from watson_developer_cloud import AssistantV1
        
        assistant = AssistantV1(
            username='xxx',
            password='yyy',
            url='<url_as_per_region>',
            version='2018-07-10')
        
        response = assistant.list_workspaces(headers={'Custom-Header': 'custom_value'})
        print(response.get_result())
        print(response.get_headers())
        print(response.get_status_code())
        ```
        See the [changelog](https://github.com/watson-developer-cloud/python-sdk/wiki/Changelog) for the details.
        
        ## Migration
        This version includes many breaking changes as a result of standardizing behavior across the new generated services. Full details on migration from previous versions can be found [here](https://github.com/watson-developer-cloud/python-sdk/wiki/Migration).
        
        ## Configuring the http client (Supported from v1.1.0)
        To set client configs like timeout use the `with_http_config()` function and pass it a dictionary of configs.
        
        ```python
        from watson_developer_cloud import AssistantV1
        
        assistant = AssistantV1(
            username='xxx',
            password='yyy',
            url='<url_as_per_region>',
            version='2018-07-10')
        
        assistant.set_http_config({'timeout': 100})
        response = assistant.message(workspace_id=workspace_id, input={
            'text': 'What\'s the weather like?'}).get_result()
        print(json.dumps(response, indent=2))
        ```
        
        ## Disable SSL certificate verification
        For ICP(IBM Cloud Private), you can disable the SSL certificate verification by:
        
        ```python
        service.disable_SSL_verification()
        ```
        
        ## 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 watson_developer_cloud import AssistantV1
        
        assistant = AssistantV1(
            username='xxx',
            password='yyy',
            url='<url_as_per_region>',
            version='2018-07-10')
        
        response = assistant.list_workspaces(headers={'Custom-Header': 'custom_value'}).get_result()
        ```
        
        ## Parsing HTTP response info
        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 watson_developer_cloud import AssistantV1
        
        assistant = AssistantV1(
            username='xxx',
            password='yyy',
            url='<url_as_per_region>',
            version='2018-07-10')
        
        assistant.set_detailed_response(True)
        response = assistant.list_workspaces(headers={'Custom-Header': 'custom_value'}).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 get_status_code() to return the result, headers and status code respectively.
        
        ## 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 watson_developer_cloud.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
        
        my_callback = MySynthesizeCallback()
        service.synthesize_using_websocket('I like to pet dogs',
                                           my_callback,
                                           accept='audio/wav',
                                           voice='en-US_AllisonVoice'
                                          )
        ```
        
        ## Dependencies
        
        * [requests]
        * `python_dateutil` >= 2.5.3
        * [responses] for testing
        * Following for web sockets support in speech to text
           * `websocket-client` 0.48.0
        
        ## Contributing
        
        See [CONTRIBUTING.md][CONTRIBUTING].
        
        ## License
        
        This library is licensed under the [Apache 2.0 license][license].
        
        [wdc]: http://www.ibm.com/watson/developercloud/
        [ibm_cloud]: https://console.bluemix.net
        [watson-dashboard]: https://console.bluemix.net/dashboard/apps?category=watson
        [responses]: https://github.com/getsentry/responses
        [requests]: http://docs.python-requests.org/en/latest/
        [examples]: https://github.com/watson-developer-cloud/python-sdk/tree/master/examples
        [CONTRIBUTING]: https://github.com/watson-developer-cloud/python-sdk/blob/master/CONTRIBUTING.md
        [license]: http://www.apache.org/licenses/LICENSE-2.0
        [vcap_services]: https://console.bluemix.net/docs/services/watson/getting-started-variables.html
        [ibm-cloud-onboarding]: http://console.bluemix.net/registration?target=/developer/watson&cm_sp=WatsonPlatform-WatsonServices-_-OnPageNavLink-IBMWatson_SDKs-_-Python
        
Keywords: language,vision,question and answer tone_analyzer,natural language classifier,text to speech,language translation,language identification,concept expansion,machine translation,personality insights,message resonance,watson developer cloud,wdc,watson,ibm,dialog,user modeling,tone analyzer,speech to text,visual recognition
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
