python-GET趋势/位置问题(Twython)
作者:互联网
尝试仅访问多伦多趋势的“名称”部分.
到目前为止,我有这个,但是它给了我错误:
toronto = t.get_place_trends(id=4118)
trend_array = []
for trend in toronto.trends.name:
trend_array.append(trend)
print trend_array
print trend
多数民众赞成在身份验证和返回的对象的整个列表强制进入一个数组(由于某种原因无法通过索引访问)并作为列表.
解决方法:
哇,多伦多返回一个必须由索引访问的列表真是奇怪.
这是您需要的代码:
toronto = t.get_place_trends(id=4118)
trend_array = []
if toronto:
for trend in toronto[0].get('trends', []):
trend_array.append(trend['name'])
print trend_array
print trend
标签:twitter,twython,python 来源: https://codeday.me/bug/20191123/2065144.html