2017-04-09 63 views
0

我试图运行Python代码来使用YouTube生成的API密钥来下载YouTube数据。我的问题是每当我尝试运行代码时,我都会收到警告和错误。当我从Coursera下载代码时,该代码曾经工作过一次,但是现在一旦它停止工作,我就得到了结果。获取YouTube数据API的关键错误和Python代码导入错误

此代码的输出是一个CSV文件,其中包含像like count,view count,comment count dislike count,favorite count等视频数据,稍后我将使用它来对R或Python做一些统计分析,作为我的Coursera课程。

PFB这是我使用的代码:xxxxx是对我来说这是我从谷歌的YouTube数据API V3所产生的API密钥

Enter code here 

# -*- coding: utf-8 -*- 

from apiclient.discovery import build 
#from apiclient.errors import HttpError 
#from oauth2client.tools import argparser # removed by Dongho 
import argparse 
import csv 
import unidecode 

# Set DEVELOPER_KEY to the API key value from the APIs & authentication ? Registered apps 
# tab of 
# https://cloud.google.com/console 
# Please ensure that you have enabled the YouTube Data API for your project. 
DEVELOPER_KEY = "xxxxxxxxxxxx" 
YOUTUBE_API_SERVICE_NAME = "youtube" 
YOUTUBE_API_VERSION = "v3" 

def youtube_search(options): 
    youtube = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION, developerKey=DEVELOPER_KEY) 
    # Call the search.list method to retrieve results matching the specified 
    # Query term. 
    search_response = youtube.search().list(q=options.q, part="id,snippet", maxResults=options.max_results).execute() 

    videos = [] 
    channels = [] 
    playlists = [] 

    # Create a CSV output for video list 
    csvFile = open('video_result.csv','w') 
    csvWriter = csv.writer(csvFile) 
    csvWriter.writerow(["title","videoId","viewCount","likeCount","dislikeCount","commentCount","favoriteCount"]) 

    # Add each result to the appropriate list, and then display the lists of 
    # matching videos, channels, and playlists. 
    for search_result in search_response.get("items", []): 
     if search_result["id"]["kind"] == "youtube#video": 
      #videos.append("%s (%s)" % (search_result["snippet"]["title"],search_result["id"]["videoId"])) 
      title = search_result["snippet"]["title"] 
      title = unidecode.unidecode(title) # Dongho 08/10/16 
      videoId = search_result["id"]["videoId"] 
      video_response = youtube.videos().list(id=videoId,part="statistics").execute() 
      for video_result in video_response.get("items",[]): 
       viewCount = video_result["statistics"]["viewCount"] 
       if 'likeCount' not in video_result["statistics"]: 
        likeCount = 0 
       else: 
        likeCount = video_result["statistics"]["likeCount"] 
       if 'dislikeCount' not in video_result["statistics"]: 
        dislikeCount = 0 
       else: 
        dislikeCount = video_result["statistics"]["dislikeCount"] 
       if 'commentCount' not in video_result["statistics"]: 
        commentCount = 0 
       else: 
        commentCount = video_result["statistics"]["commentCount"] 
       if 'favoriteCount' not in video_result["statistics"]: 
        favoriteCount = 0 
       else: 
        favoriteCount = video_result["statistics"]["favoriteCount"] 

      csvWriter.writerow([title,videoId,viewCount,likeCount,dislikeCount,commentCount,favoriteCount]) 

    csvFile.close() 

if __name__ == "__main__": 
    parser = argparse.ArgumentParser(description='Search on YouTube') 
    parser.add_argument("--q", help="Search term", default="Google") 
    parser.add_argument("--max-results", help="Max results", default=25) 
    args = parser.parse_args() 
    #try: 
    youtube_search(args) 
    #except HttpError, e: 
    # print ("An HTTP error %d occurred:\n%s" % (e.resp.status, e.content)) 

每当我运行代码,我得到以下错误:

  1. 观看次数= video_result [u'statistics'] [ “观看次数”]

    KeyError异常: '统计'

  2. 警告:googleapiclient.discovery_cache:在使用oauth2client> 4.0.0时file_cache不可用 回溯(最近呼叫最后一次): 文件“C:\ Anaconda3 \ Anaconda3 4.2.0 \ lib \ site-packages \ googleapiclient \ discovery_cache__init__ py”为,从google.appengine.api进口的memcache线36,在自动检测 导入错误:没有名为模块‘谷歌’

    在处理上述异常,另一个异常:

    回溯(最近最后呼叫): 文件“C:\ Anaconda3 \ Anaconda3 4.2.0 \ lib \ site-packages \ googleapiclient \ discovery_cache \ file_cache.py”,第33行,i ñ 从oauth2client.contrib.locked_file进口LockedFile 导入错误:没有模块名为“oauth2client.contrib.locked_file

如何克服这个问题?

回答

0

您能检查一下您是否有统计数据作为video_result的关键字。当您尝试访问不存在的Python Dict中的Key时,会发生KeyError。所以,更好的方法是在寻找关键字时使用'get()',例如:video_result.get('statistics') 这将处理关键错误。 由于缺少导入语句,第二个错误即将到来。该文件无法导入导入的文件/函数,这就是报告异常时抛出异常的原因。

+0

我试过video_result..get('Statistics'),但它没有得到我所需的结果。代码提前1-2次运行,没有任何变化,当我下载它时给了我25个视频结果(正如你可以在底部看到可以提取的结果的最大限度,我已将它们设置为25),但由于某些原因,它现在停止工作。 – SidM