• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

google/cloud/H02-Nov-2021-11,1318,598

google_cloud_speech.egg-info/H03-May-2022-11887

scripts/H02-Nov-2021-368258

tests/H02-Nov-2021-6,7584,647

LICENSEH A D02-Nov-202111.1 KiB203169

MANIFEST.inH A D02-Nov-2021860 2623

PKG-INFOH A D02-Nov-20213.7 KiB11887

README.rstH A D02-Nov-20212.8 KiB9264

setup.cfgH A D02-Nov-202167 85

setup.pyH A D02-Nov-20213 KiB10061

README.rst

1Python Client for Cloud Speech API
2==================================
3
4
5|GA| |pypi| |versions|
6
7The `Cloud Speech API`_ enables developers to convert audio to text by applying
8powerful neural network models.  The API recognizes over 80 languages and
9variants, to support your global user base.
10
11- `Client Library Documentation`_
12- `Product Documentation`_
13
14.. |GA| image:: https://img.shields.io/badge/support-GA-gold.svg
15   :target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#general-availability
16.. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-speech.svg
17   :target: https://pypi.org/project/google-cloud-speech/
18.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-speech.svg
19   :target: https://pypi.org/project/google-cloud-speech/
20.. _Cloud Speech API: https://cloud.google.com/speech
21.. _Client Library Documentation: https://googleapis.dev/python/speech/latest
22.. _Product Documentation:  https://cloud.google.com/speech
23
24Quick Start
25-----------
26
27In order to use this library, you first need to go through the following steps:
28
291. `Select or create a Cloud Platform project.`_
302. `Enable billing for your project.`_
313. `Enable the Cloud Speech API.`_
324. `Setup Authentication.`_
33
34.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
35.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
36.. _Enable the Cloud Speech API.:  https://cloud.google.com/speech
37.. _Setup Authentication.: https://googleapis.dev/python/google-api-core/latest/auth.html
38
39Installation
40~~~~~~~~~~~~
41
42Install this library in a `virtualenv`_ using pip. `virtualenv`_ is a tool to
43create isolated Python environments. The basic problem it addresses is one of
44dependencies and versions, and indirectly permissions.
45
46With `virtualenv`_, it's possible to install this library without needing system
47install permissions, and without clashing with the installed system
48dependencies.
49
50.. _`virtualenv`: https://virtualenv.pypa.io/en/latest/
51
52
53Supported Python Versions
54^^^^^^^^^^^^^^^^^^^^^^^^^
55Python >= 3.5
56
57Deprecated Python Versions
58^^^^^^^^^^^^^^^^^^^^^^^^^^
59Python == 2.7. Python 2.7 support will be removed on January 1, 2020.
60
61
62Mac/Linux
63^^^^^^^^^
64
65.. code-block:: console
66
67    pip install virtualenv
68    virtualenv <your-env>
69    source <your-env>/bin/activate
70    <your-env>/bin/pip install google-cloud-speech
71
72
73Windows
74^^^^^^^
75
76.. code-block:: console
77
78    pip install virtualenv
79    virtualenv <your-env>
80    <your-env>\Scripts\activate
81    <your-env>\Scripts\pip.exe install google-cloud-speech
82
83
84Next Steps
85~~~~~~~~~~
86
87-  Read the `Client Library Documentation`_ for Cloud Speech API
88   API to see other available methods on the client.
89-  Read the `Product documentation`_ to learn
90   more about the product and see How-to Guides.
91   APIs that we cover.
92