forked from lynnlake/Yummary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathg_test.py
44 lines (34 loc) · 1.48 KB
/
g_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import io
import os
import google_auth_oauthlib.flow
import googleapiclient.discovery
import googleapiclient.errors
from googleapiclient.http import MediaIoBaseDownload
scopes = ["https://www.googleapis.com/auth/youtube.force-ssl"]
def main():
# Disable OAuthlib's HTTPS verification when running locally.
# *DO NOT* leave this option enabled in production.
os.environ["OAUTHLIB_INSECURE_TRANSPORT"] = "1"
api_service_name = "youtube"
api_version = "v3"
client_secrets_file = "client_secret_925636143415-id6tmfrlg4kj0v7qan2qap6bgnctck32.apps.googleusercontent.com.json"
# Get credentials and create an API client
flow = google_auth_oauthlib.flow.InstalledAppFlow.from_client_secrets_file(
client_secrets_file, scopes)
# credentials = flow.run_console()
credentials = flow.run_local_server(port=62707)
youtube = googleapiclient.discovery.build(
api_service_name, api_version, credentials=credentials)
request = youtube.captions().download(
id="AUieDaZt_ww7qQUzxXHAELcK5B3yRXsr-C0os2VHgpTF-hdXq4Y"
# id="AUieDabi7MlVfhlOiIeiJdvD3ie8wKBrr1KOXmSklkM_6kZKHFM"
)
# TODO: For this request to work, you must replace "YOUR_FILE"
# with the location where the downloaded content should be written.
fh = io.FileIO("YOUR_FILE", "wb")
download = MediaIoBaseDownload(fh, request)
complete = False
while not complete:
status, complete = download.next_chunk()
if __name__ == "__main__":
main()