Look up information about photos and collections of photos from Flickr
Project description
flickr-photos-api
This is a library for using the Flickr API at the Flickr Foundation.
It's not a general-purpose Flickr API library. It provides a subset of Flickr API methods with the following goals:
- Provide reusable code that can be called across all our projects.
- Abstract away some of the details of the Flickr API -- for example, licenses are returned as complete dictionaries, rather than as the numeric license IDs returned by Flickr API methods.
- Apply types to all results, so the Flickr API can be used safely in a typed context.
Design
Using the Flickr API is fairly simple: you make an HTTP GET to https://api.flickr.com/services/rest/?api_key={api_key}
and pass one or more URL query parameters.
One of those query parameters must be method
, then you add other parameters depending on the API method.
There's an abstract class that represents this interface:
import abc
from xml.etree import ElementTree as ET
class FlickrApi(abc.ABC):
@abc.abstractmethod
def call(self, method: str, params: dict[str, str] | None = None) -> ET.Element:
return NotImplemented
The idea is that you can extend this class with "method" classes that wrap specific API methods, and make HTTP GET calls through this call()
method:
class GetSinglePhotoMethods(FlickrApi):
def get_single_photo(self, photo_id: str) -> ET.Element:
return self.call(method="flickr.photos.getInfo", params={"photo_id": photo_id})
This separates the code for making HTTP requests and separating the responses.
The library includes a single implementation of FlickrApi
for making HTTP requests, using httpx
, but you could swap it out if you wanted to use e.g. requests
or urllib3
.
This httpx implementation is the default implementation.
Examples
>>> from flickr_photos_api import FlickrApi
>>> api = FlickrApi(api_key="…", user_agent="…")
>>> photo = api.get_single_photo(photo_id="14898030836")
>>> photo
{'id': '14898030836', 'title': 'NASA Scientists Says', …}
>>> photo["license"]
{'id': 'cc-by-2.0', 'label': 'CC BY 2.0', 'url': 'https://creativecommons.org/licenses/by/2.0/'}
>>> photo["url"]
'https://www.flickr.com/photos/lassennps/14898030836/'
Usage
-
Install flickr-photos-api from PyPI:
$ pip install flickr-photos-api
-
Construct an instance of
FlickrApi
. You need to pass a user-agent that identifies you, and a Flickr API key.from flickr_photos_api import FlickrApi api = FlickrApi(api_key="…", user_agent="…")
-
Call methods on FlickrApi. There's no complete list of methods right now; look at the files
X_methods.py
in theapi
directory.Methods that return collections of photos also support
page
andper_page
parameters to control pagination.
Development
If you want to make changes to the library, there are instructions in CONTRIBUTING.md.
License
This project is dual-licensed as Apache-2.0 and MIT.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flickr_photos_api-2.12.0.tar.gz
.
File metadata
- Download URL: flickr_photos_api-2.12.0.tar.gz
- Upload date:
- Size: 34.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 681224b70d720e45b355e4a0cedce21906467956c0ac348425da8be77bb6e2b4 |
|
MD5 | e7e8aceee75e1f79219ebee4028d3eeb |
|
BLAKE2b-256 | 6d8f1353ebb1f706b3cd22d75478c2be5bf3e095e9d5cdfb4ba602dccbdd2b95 |
File details
Details for the file flickr_photos_api-2.12.0-py3-none-any.whl
.
File metadata
- Download URL: flickr_photos_api-2.12.0-py3-none-any.whl
- Upload date:
- Size: 36.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 368bbe8de1b3d9e1a47910f01275a94bb3312f27b9d7f59cca571007b4fee0d8 |
|
MD5 | 31a75733cd27d6c8c6fb8972cfc22255 |
|
BLAKE2b-256 | bb5d85e58f63592235bbe25fd58633e000f39dd971a50929c30dbb98ad051ab9 |