Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Speech gapic client library #1012

Merged
merged 29 commits into from
Jul 14, 2017
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
aa0de94
Migrate quickstart to GAPIC client library
dizcology Jun 13, 2017
c695c82
Migrate transcribe to GAPIC client library
dizcology Jun 13, 2017
4777dc6
Migrate transcribe_async to GAPIC client library
dizcology Jun 14, 2017
e77f5f8
Migrate transcribe_streaming to GAPIC client library
dizcology Jun 14, 2017
199a748
clean up
dizcology Jun 20, 2017
51c4d01
clean up
dizcology Jun 21, 2017
0de6c7c
Import from google.cloud.speech
dizcology Jun 26, 2017
a594c70
update transcribe samples
dizcology Jun 27, 2017
9129caf
import in alphabetic order
dizcology Jun 27, 2017
4db0f45
remove unused variable
dizcology Jun 29, 2017
f09dfec
use strings instead of enums
dizcology Jun 29, 2017
66d53aa
restructure code
dizcology Jun 30, 2017
99b2e79
comment on sreaming requests
dizcology Jul 5, 2017
c7d1ad7
import style
dizcology Jul 6, 2017
ce0d25d
flake
dizcology Jul 7, 2017
3196c73
correct indent
dizcology Jul 11, 2017
d5acd7c
migrate transcribe_streaming_mic to gapic
dizcology Jul 11, 2017
cb40b7f
update google-cloud-speech version requirement
dizcology Jul 11, 2017
34ce758
addressing review comments
dizcology Jul 11, 2017
0955793
at the end of the audio stream, put None to signal to the generator
dizcology Jul 11, 2017
e355325
flake
dizcology Jul 12, 2017
a5f4c35
addressing github review comments
dizcology Jul 12, 2017
73d2b79
add region tags for migration guide
dizcology Jul 13, 2017
39f9b6b
update README
dizcology Jul 13, 2017
efe110c
rst format
dizcology Jul 13, 2017
1f4cda6
bullet
dizcology Jul 13, 2017
bd32ab4
addressing PR review comments
dizcology Jul 13, 2017
1f861ee
use enums
dizcology Jul 13, 2017
8fa2982
remove a word
dizcology Jul 13, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
flake
  • Loading branch information
dizcology committed Jul 11, 2017
commit ce0d25dfc58f91db216fb26f89612e6871b11129
2 changes: 1 addition & 1 deletion speech/cloud-client/quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def run_quickstart():
# Imports the Google Cloud client library
from google.cloud import speech
from google.cloud.speech import types

# Instantiates a client
client = speech.SpeechClient()

Expand Down