使用Python从www.flickr.com帐户读取图像

时间:2010-10-27 07:20:14

标签: python flickr

好的,所以我需要构建这个应用程序,我将从www.flickr.com帐户读取图像并使用我的Python应用程序中的图像。我该怎么做?有任何想法吗?谢谢。

1 个答案:

答案 0 :(得分:9)

您可以使用各种flickr python库之一:

有关flickr API的详细概述,请务必查看文档:{​​{3}}

一个例子:

import flickrapi
api_key = 'API KEY YYYYYYYYYY' # you will need a key
api_password = 'your secret'
flickrClient = flickrapi.FlickrAPI(api_key, api_password)
# now you could use the methods on this client
# flickrClient.methodname(param)
favourites = flickrClient.favorites_getPublicList(user_id='userid')
# Get the title of the photos
for photo in favourites.photos[0].photo:
    print photo['title']

[编辑:]

有关身份验证,请查看:http://www.flickr.com/services/api/