forked from watson-developer-cloud/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate Text to Speech (watson-developer-cloud#332)
* 🆕 generated text-to-speech with latest swagger * 💚 added missing tests and updated method names in tests * Changes as per review Mike's comments * Remove unnecessary overview * 😒 Rename Bluemix to IBM Cloud * change Bluemix to IBM Cloud * fix capitalization of IBM CLoud * Update README.md * 📝 Update to use Watson APIs * Adding integration tests and removing REST description * enable dot_env to get env variables * Revert "enable dot_env to get env variables" This reverts commit f7ac60a. * Encrypt travis env file * Adding VCAP_SERVICES * Ignoring destructive tests * Remove the VCAP_SERVICES keyword * Regenerate encrypted env file for travis * Remove the skip test for integration test * Add in init file for integration tests * Update tests as per new env file
- Loading branch information
1 parent
401efc1
commit ad44aac
Showing
20 changed files
with
1,402 additions
and
393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
## Examples | ||
To run the examples, you will need the `username` and `password` credentials. To get your service credentials, follow these steps: | ||
1. Log in to Bluemix at https://bluemix.net. | ||
To run the examples, you will need a `username`, `password`, and `url`. To get your service credentials, follow these steps: | ||
1. Log in to IBM Cloud at https://console.bluemix.net. | ||
|
||
1. Create an instance of the service: | ||
1. In the Bluemix **Catalog**, select the Natural Language Classifier service. | ||
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. | ||
1. Click **Use**. | ||
1. In the IBM Cloud **Catalog**, select the Natural Language Classifier service. | ||
1. Click **Create**. | ||
|
||
1. Copy your credentials: | ||
1. On the left side of the page, click **Service Credentials** to view your service credentials. | ||
1. Copy `username` and `password` from these service credentials. | ||
1. Copy `username`, `password`, and `url` from these service credentials. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright 2015 IBM All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
from dotenv import load_dotenv, find_dotenv | ||
|
||
# load the .env file containing your environment variables for the required | ||
load_dotenv(find_dotenv()) |
File renamed without changes.
Oops, something went wrong.