GET趋势/地方的问题(Twython)

时间:2013-06-25 17:21:24

标签: python twitter 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

在auth之后,它返回强制进入数组的整个对象列表(由于某种原因无法通过索引访问)和列表。

1 个答案:

答案 0 :(得分:3)

哇,toronto返回一个必须由索引访问的列表真的很奇怪。

以下是您需要的代码:

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