嗨 StackOverflow 的人们
我对 Tweepy/Twitter API 比较陌生,并且在让它返回图像的 URL 时遇到了一些问题。
基本上,我编写了一段代码,用于针对特定主题标签搜索推文,然后返回推文中存在的图像 URL 实体。但是,当返回一条没有任何媒体的推文时,我遇到了一个问题。错误如下图:
Traceback (most recent call last):
File "./tweepyTest.py", line 18, in <module>
for image in tweet.entities['media']:
KeyError: 'media'
下面是我的代码:
for tweet in tweepy.Cursor(api.search,q="#hashtag",count=5,include_entities=True).items(5):
#print tweet.text
for image in tweet.entities['media']:
print image['media_url']
我猜我需要在某种 if 语句中包含 for 循环,但是我正在努力弄清楚如何做。
任何帮助将非常感激。
编辑:我想我可能已经找到了解决方案,但是我不确定它是否特别优雅......使用 try/except。
for tweet in tweepy.Cursor(api.search,q="#hashtag",count=5,include_entities=True).items(5):
#print tweet.text
try:
for image in tweet.entities['media']:
print image['media_url']
except KeyError:
pass