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

发布于 2024-09-29 11:10:53 字数 89 浏览 2 评论 0原文

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

Ok, so I need to build this application where I'll read images from a www.flickr.com account and use the images in my Python app. How will I do that? Any ideas? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸵鸟症 2024-10-06 11:10:53

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

为了更好地概述 flickr API,始终查看文档:http://www.flickr.com/services/api/

示例:

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://stuvel.eu/flickrapi/documentation/ #身份验证

You could use one of the various flickr python libraries :

And for a good overview of flickr API, always look at the docs: http://www.flickr.com/services/api/

An example:

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']

[Edit:]

For authentication look at : http://stuvel.eu/flickrapi/documentation/#authentication

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文