forked from GoogleCloudPlatform/python-docs-samples
-
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.
Change-Id: I3779282126cdd05b047194d356932b9995484115
- Loading branch information
Jon Wayne Parrott
committed
Oct 25, 2016
1 parent
bfdab58
commit 2b7c061
Showing
29 changed files
with
1,135 additions
and
542 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This file is used to generate README.rst | ||
|
||
product: | ||
name: Google Cloud Natural Language API | ||
short_name: Cloud Natural Language API | ||
url: https://cloud.google.com/natural-language/docs/ | ||
description: > | ||
The `Google Cloud Natural Language API`_ provides natural language | ||
understanding technologies to developers, including sentiment analysis, | ||
entity recognition, and syntax analysis. This API is part of the larger | ||
Cloud Machine Learning API. | ||
|
||
setup: | ||
- auth | ||
- install_deps | ||
|
||
samples: | ||
- name: Analyze syntax | ||
file: analyze.py | ||
show_help: true |
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,21 @@ | ||
# This file is used to generate README.rst | ||
|
||
product: | ||
name: Google Cloud Natural Language API | ||
short_name: Cloud Natural Language API | ||
url: https://cloud.google.com/natural-language/docs/ | ||
description: > | ||
The `Google Cloud Natural Language API`_ provides natural language | ||
understanding technologies to developers, including sentiment analysis, | ||
entity recognition, and syntax analysis. This API is part of the larger | ||
Cloud Machine Learning API. | ||
|
||
setup: | ||
- auth | ||
- install_deps | ||
|
||
samples: | ||
- name: Quickstart | ||
file: quickstart.py | ||
|
||
cloud_client_library: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Authentication | ||
++++++++++++++ | ||
|
||
Authentication for this service is done via an `API Key`_. To obtain an API | ||
Key: | ||
|
||
1. Open the `Cloud Platform Console`_ | ||
2. Make sure that billing is enabled for your project. | ||
3. From the **Credentials** page, create a new **API Key** or use an existing | ||
one for your project. | ||
|
||
.. _API Key: | ||
https://developers.google.com/api-client-library/python/guide/aaa_apikeys | ||
.. _Cloud Console: https://console.cloud.google.com/project?_ |
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,26 @@ | ||
Install PortAudio | ||
+++++++++++++++++ | ||
|
||
Install `PortAudio`_. This is required by the `PyAudio`_ library to stream | ||
audio from your computer's microphone. PyAudio depends on PortAudio for cross-platform compatibility, and is installed differently depending on the | ||
platform. | ||
|
||
For Mac OS X, you can use `Homebrew`_:: | ||
|
||
brew install portaudio | ||
|
||
For Debian / Ubuntu Linux:: | ||
|
||
apt-get install portaudio19-dev python-all-dev | ||
|
||
Windows may work without having to install PortAudio explicitly (it will get | ||
installed with PyAudio). | ||
|
||
For more details, see the `PyAudio installation`_ page. | ||
|
||
|
||
.. _PyAudio: https://people.csail.mit.edu/hubert/pyaudio/ | ||
.. _PortAudio: http://www.portaudio.com/ | ||
.. _PyAudio installation: | ||
https://people.csail.mit.edu/hubert/pyaudio/#downloads | ||
.. _Homebrew: http://brew.sh |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.