Skip to content

Commit e3f6ec8

Browse files
Merge branch 'develop' of github.com:watson-developer-cloud/python-sdk into develop
2 parents 99fe401 + 254a0c8 commit e3f6ec8

File tree

3 files changed

+16
-20
lines changed

3 files changed

+16
-20
lines changed

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,24 @@ The [examples][examples] folder has basic and advanced examples.
3737

3838
Service credentials are required to access the APIs.
3939

40-
If you run your app in Bluemix, you don't need to specify the username and password. In that case, the SDK uses the `VCAP_SERVICES` environment variable to load the credentials.
40+
If you run your app in IBM Cloud, you don't need to specify the username and password. In that case, the SDK uses the `VCAP_SERVICES` environment variable to load the credentials.
4141

42-
To run locally or outside of Bluemix you need the `username` and `password` credentials for each service. (Service credentials are different from your Bluemix account email and password.)
42+
To run locally or outside of IBM Cloud you need the `username` and `password` credentials for each service. (Service credentials are different from your IBM Cloud account email and password.)
4343

4444
To create an instance of the service:
4545

46-
1. Log in to [Bluemix][bluemix].
46+
1. Log in to [IBM Cloud][ibm_cloud].
4747
1. Create an instance of the service:
48-
1. In the Bluemix **Catalog**, select the Watson service you want to use. For example, select the Conversation service.
48+
1. In the IBM Cloud **Catalog**, select the Watson service you want to use. For example, select the Conversation service.
4949
1. Type a unique name for the service instance in the **Service name** field. For example, type `my-service-name`. Leave the default values for the other options.
5050
1. Click **Create**.
5151

5252
To get your service credentials:
5353

54-
Copy your credentials from the **Service details** page. To find the the Service details page for an existing service, navigate to your Bluemix dashboard and click the service name.
54+
Copy your credentials from the **Service details** page. To find the the Service details page for an existing service, navigate to your IBM Cloud dashboard and click the service name.
5555

5656
1. On the **Service Details** page, click **Service Credentials**, and then **View credentials**.
57-
1. Copy `username` and `password`.
57+
1. Copy `username`, `password`, and `url`.
5858

5959
## Python Version
6060

@@ -82,9 +82,6 @@ response = conversation.message(workspace_id=workspace_id, input={
8282
'text': 'What\'s the weather like?'})
8383
print(json.dumps(response, indent=2))
8484
```
85-
## Known Issues
86-
87-
See [issues](https://github.com/watson-developer-cloud/python-sdk/issues).
8885

8986
## Dependencies
9087

@@ -104,7 +101,7 @@ See [CONTRIBUTING.md][CONTRIBUTING].
104101
This library is licensed under the [Apache 2.0 license][license].
105102

106103
[wdc]: http://www.ibm.com/watson/developercloud/
107-
[bluemix]: https://console.bluemix.net
104+
[ibm_cloud]: https://console.bluemix.net
108105
[responses]: https://github.com/getsentry/responses
109106
[requests]: http://docs.python-requests.org/en/latest/
110107
[examples]: https://github.com/watson-developer-cloud/python-sdk/tree/master/examples

examples/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
## Examples
2-
To run the examples, you will need the `username` and `password` credentials. To get your service credentials, follow these steps:
3-
1. Log in to Bluemix at https://bluemix.net.
2+
To run the examples, you will need a `username`, `password`, and `url`. To get your service credentials, follow these steps:
3+
1. Log in to IBM Cloud at https://console.bluemix.net.
44

55
1. Create an instance of the service:
6-
1. In the Bluemix **Catalog**, select the Natural Language Classifier service.
7-
1. Under **Add Service**, type a unique name for the service instance in the Service name field. For example, type `my-service-name`. Leave the default values for the other options.
8-
1. Click **Use**.
6+
1. In the IBM Cloud **Catalog**, select the Natural Language Classifier service.
7+
1. Click **Create**.
98

109
1. Copy your credentials:
1110
1. On the left side of the page, click **Service Credentials** to view your service credentials.
12-
1. Copy `username` and `password` from these service credentials.
11+
1. Copy `username`, `password`, and `url` from these service credentials.

examples/conversation_tone_analyzer_integration/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ This example provides sample code for integrating [Tone Analyzer][tone_analyzer]
99

1010
Requirements to run the sample code
1111

12-
* [Tone Analyzer Service credentials][bluemix_tone_analyzer_service]
13-
* [Conversation Service credentials][bluemix_conversation_service]
12+
* [Tone Analyzer Service credentials][ibm_cloud_tone_analyzer_service]
13+
* [Conversation Service credentials][ibm_cloud_conversation_service]
1414
* [Conversation Workspace ID][conversation_simple_workspace]
1515

1616
Credentials & the Workspace ID can be set in environment properties, a .env file, or directly in the code.
@@ -24,8 +24,8 @@ Command to run the sample code
2424

2525
[conversation]: https://www.ibm.com/watson/developercloud/conversation.html
2626
[tone_analyzer]: http://www.ibm.com/watson/developercloud/tone-analyzer.html
27-
[bluemix_conversation_service]: https://console.ng.bluemix.net/catalog/services/conversation/
28-
[bluemix_tone_analyzer_service]: https://console.ng.bluemix.net/catalog/services/tone-analyzer/
27+
[ibm_cloud_conversation_service]: https://console.ng.bluemix.net/catalog/services/conversation/
28+
[ibm_cloud_tone_analyzer_service]: https://console.ng.bluemix.net/catalog/services/tone-analyzer/
2929
[conversation_simple_workspace]: https://github.com/watson-developer-cloud/conversation-simple#workspace
3030
[tone_conversation_integration_example]: https://github.com/watson-developer-cloud/python-sdk/tree/master/examples/tone_conversation_integration.v1.py
3131
[tone_conversation_integration_example_tone_detection]: https://github.com/watson-developer-cloud/python-sdk/tree/master/examples/conversation_addons/tone_detection.py

0 commit comments

Comments
 (0)