Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 82ebbce

Browse filesBrowse files
authored
Docs: Replace links to '/stable/' with '/latest/'. (#5901)
* Replace links to '/stable/' with '/latest/'. * DRY out duplicated 'README.rst' vs. 'docs/index.rst'. * Include websecurityscanner in docs. Toward #5894.
1 parent 6b72c54 commit 82ebbce
Copy full SHA for 82ebbce

File tree

Expand file treeCollapse file tree

2 files changed

+4
-100
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+4
-100
lines changed

‎google-cloud-speech/README.rst

Copy file name to clipboardExpand all lines: google-cloud-speech/README.rst
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Python Client for Google Cloud Speech API (`Beta`_)
88

99
.. _Alpha: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
1010
.. _Google Cloud Speech API: https://cloud.google.com/speech
11-
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/stable/speech/usage.html
11+
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/latest/speech/index.html
1212
.. _Product Documentation: https://cloud.google.com/speech
1313

1414
Quick Start
@@ -24,7 +24,7 @@ In order to use this library, you first need to go through the following steps:
2424
.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
2525
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
2626
.. _Enable the Google Cloud Speech API.: https://cloud.google.com/speech
27-
.. _Setup Authentication.: https://googlecloudplatform.github.io/google-cloud-python/stable/core/auth.html
27+
.. _Setup Authentication.: https://googlecloudplatform.github.io/google-cloud-python/latest/core/auth.html
2828

2929
Installation
3030
~~~~~~~~~~~~
@@ -94,4 +94,4 @@ Next Steps
9494
APIs that we cover.
9595

9696
.. _Google Cloud Speech API Product documentation: https://cloud.google.com/speech
97-
.. _repository’s main README: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
97+
.. _repository’s main README: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst

‎google-cloud-speech/docs/index.rst

Copy file name to clipboardExpand all lines: google-cloud-speech/docs/index.rst
+1-97Lines changed: 1 addition & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,4 @@
1-
Python Client for Google Cloud Speech API (`Beta`_)
2-
====================================================
3-
4-
`Google Cloud Speech API`_: Google Cloud Speech API.
5-
6-
- `Client Library Documentation`_
7-
- `Product Documentation`_
8-
9-
.. _Alpha: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
10-
.. _Google Cloud Speech API: https://cloud.google.com/speech
11-
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/stable/speech/usage.html
12-
.. _Product Documentation: https://cloud.google.com/speech
13-
14-
Quick Start
15-
-----------
16-
17-
In order to use this library, you first need to go through the following steps:
18-
19-
1. `Select or create a Cloud Platform project.`_
20-
2. `Enable billing for your project.`_
21-
3. `Enable the Google Cloud Speech API.`_
22-
4. `Setup Authentication.`_
23-
24-
.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
25-
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
26-
.. _Enable the Google Cloud Speech API.: https://cloud.google.com/speech
27-
.. _Setup Authentication.: https://googlecloudplatform.github.io/google-cloud-python/stable/core/auth.html
28-
29-
Installation
30-
~~~~~~~~~~~~
31-
32-
Install this library in a `virtualenv`_ using pip. `virtualenv`_ is a tool to
33-
create isolated Python environments. The basic problem it addresses is one of
34-
dependencies and versions, and indirectly permissions.
35-
36-
With `virtualenv`_, it's possible to install this library without needing system
37-
install permissions, and without clashing with the installed system
38-
dependencies.
39-
40-
.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
41-
42-
43-
Mac/Linux
44-
^^^^^^^^^
45-
46-
.. code-block:: console
47-
48-
pip install virtualenv
49-
virtualenv <your-env>
50-
source <your-env>/bin/activate
51-
<your-env>/bin/pip install google-cloud-speech
52-
53-
54-
Windows
55-
^^^^^^^
56-
57-
.. code-block:: console
58-
59-
pip install virtualenv
60-
virtualenv <your-env>
61-
<your-env>\Scripts\activate
62-
<your-env>\Scripts\pip.exe install google-cloud-speech
63-
64-
Preview
65-
~~~~~~~
66-
67-
SpeechClient
68-
^^^^^^^^^^^^
69-
70-
.. code:: py
71-
72-
from google.cloud import speech_v1
73-
from google.cloud.speech_v1 import enums
74-
75-
client = speech_v1.SpeechClient()
76-
77-
encoding = enums.RecognitionConfig.AudioEncoding.FLAC
78-
sample_rate_hertz = 44100
79-
language_code = 'en-US'
80-
config = {'encoding': encoding, 'sample_rate_hertz': sample_rate_hertz, 'language_code': language_code}
81-
uri = 'gs://bucket_name/file_name.flac'
82-
audio = {'uri': uri}
83-
84-
response = client.recognize(config, audio)
85-
86-
Next Steps
87-
~~~~~~~~~~
88-
89-
- Read the `Client Library Documentation`_ for Google Cloud Speech API
90-
API to see other available methods on the client.
91-
- Read the `Google Cloud Speech API Product documentation`_ to learn
92-
more about the product and see How-to Guides.
93-
- View this `repository’s main README`_ to see the full list of Cloud
94-
APIs that we cover.
95-
96-
.. _Google Cloud Speech API Product documentation: https://cloud.google.com/speech
97-
.. _repository’s main README: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
1+
.. include:: /../asset/README.rst
982

993
Api Reference
1004
-------------

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.