Trying to access just the 'name' part of trends for Toronto. so far I have this but it is giving me errors:
toronto = t.get_place_trends(id=4118)
trend_array = []
for trend in toronto.trends.name:
trend_array.append(trend)
print trend_array
print trend
Thats after auth and returns the entire list of objects forced into an array (which cant be accessed with indexing for some reason) and as a list.