Re: pyicloud: TypeError: 'dict_values' object does not support indexing

2016-09-30 Thread Peter Otten
Adam Funk wrote: > I'm trying to use pyicloud in idle3 (installed by pip3 on Ubuntu). > > > > The basic stuff works, but access to photos (following the > instructions) fails: > > photos = api.photos.all for photo in photos: > print(photo.

pyicloud: TypeError: 'dict_values' object does not support indexing

2016-09-30 Thread Adam Funk
I'm trying to use pyicloud in idle3 (installed by pip3 on Ubuntu). The basic stuff works, but access to photos (following the instructions) fails: >>> photos = api.photos.all >>> for photo in photos: print(photo.filename) Traceback (most recent cal