•  


Add file for coming-soon Python quickstart guide. · youtube/api-samples@55bf401 · GitHub
Skip to content

Commit

Permalink
Add file for coming-soon Python quickstart guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyDiamondstein committed Apr 24, 2017
1 parent f37fb9f commit 55bf401
Showing 1 changed file with 61 additions and 0 deletions .
61 changes: 61 additions & 0 deletions python/quickstart.py
@@ -0,0 +1,61 @@
# Sample Python code for user authorization

import httplib2
import os
import sys

from apiclient . discovery import build
from apiclient . errors import HttpError
from oauth2client . client import flow_from_clientsecrets
from oauth2client . file import Storage
from oauth2client . tools import argparser , run_flow

# The CLIENT_SECRETS_FILE variable specifies the name of a file that contains
# the OAuth 2.0 information for this application, including its client_id and
# client_secret.
CLIENT_SECRETS_FILE = "client_secret.json"

# This OAuth 2.0 access scope allows for full read/write access to the
# authenticated user's account and requires requests to use an SSL connection.
YOUTUBE_READ_WRITE_SSL_SCOPE = "https://www.googleapis.com/auth/youtube.readonly"
API_SERVICE_NAME = "youtube"
API_VERSION = "v3"

# This variable defines a message to display if the CLIENT_SECRETS_FILE is
# missing.
MISSING_CLIENT_SECRETS_MESSAGE = "WARNING: Please configure OAuth 2.0"

# Authorize the request and store authorization credentials.
def get_authenticated_service ( args ):
flow = flow_from_clientsecrets ( CLIENT_SECRETS_FILE , scope = YOUTUBE_READ_WRITE_SSL_SCOPE ,
message = MISSING_CLIENT_SECRETS_MESSAGE )

storage = Storage ( "%s-oauth2.json" % sys . argv [ 0 ])
credentials = storage . get ()

if credentials is None or credentials . invalid :
credentials = run_flow ( flow , storage , args )

# Trusted testers can download this discovery document from the developers page
# and it should be in the same directory with the code.
return build ( API_SERVICE_NAME , API_VERSION ,
http = credentials . authorize ( httplib2 . Http ()))

args = argparser . parse_args ()
service = get_authenticated_service ( args )

### END BOILERPLATE CODE

# Sample python code for channels.list

def channels_list_by_username ( service , ** kwargs ):
results = service . channels (). list (
** kwargs
). execute ()

print ( 'This channel \' s ID is %s. Its title is %s, and it has %s views.' %
( results [ 'items' ][ 0 ][ 'id' ],
results [ 'items' ][ 0 ][ 'snippet' ][ 'title' ],
results [ 'items' ][ 0 ][ 'statistics' ][ 'viewCount' ]))

channels_list_by_username ( service , part = 'snippet,contentDetails,statistics' , forUsername = 'GoogleDevelopers' )

0 comments on commit 55bf401

Please sign in to comment.
- "漢字路" 한글한자자동변환 서비스는 교육부 고전문헌국역지원사업의 지원으로 구축되었습니다.
- "漢字路" 한글한자자동변환 서비스는 전통문화연구회 "울산대학교한국어처리연구실 옥철영(IT융합전공)교수팀"에서 개발한 한글한자자동변환기를 바탕하여 지속적으로 공동 연구 개발하고 있는 서비스입니다.
- 현재 고유명사(인명, 지명등)을 비롯한 여러 변환오류가 있으며 이를 해결하고자 많은 연구 개발을 진행하고자 하고 있습니다. 이를 인지하시고 다른 곳에서 인용시 한자 변환 결과를 한번 더 검토하시고 사용해 주시기 바랍니다.
- 변환오류 및 건의,문의사항은 juntong@juntong.or.kr로 메일로 보내주시면 감사하겠습니다. .
Copyright ⓒ 2020 By '전통문화연구회(傳統文化硏究會)' All Rights reserved.
 한국   대만   중국   일본