Skip to main content

Display Flickr images easily in your Pelican articles.

Project description

Pelican Flickr Tag is a library to make it easy to display Flickr images in your Pelican blogs.

Installation

To install the plugin, simply:

$ pip install pelican-flickrtag

Then add a bit of code to your blog configuration:

PLUGINS = [
    # ...
    'pelican_flickrtag',
    # ...
]

Usage

In your articles, just add lines to your posts that look like:

[flickr:id=5128831453]

This will tell the plugin to insert the image with id 8152886277 into your post. By default the resulting HTML will look like:

<p class="caption-container">
    <a class="caption" href="http://www.flickr.com/photos/chrisstreeter/5128831453/" target="_blank">
        <img src="http://farm5.static.flickr.com/4037/5128831453_792359af82_z.jpg" alt="Sand Dunes" title="Sand Dunes" class="img-polaroid" />
    </a>
    <span class="caption-text muted">Sand Dunes</span>
</p>

If you want a custom title, you can use:

[flickr:id=5128831453,title=Sand dunes at Inyo, California]

If you want to change what the output looks like, you can create your own Jinja template and stick it in your theme directory. Then override the FLICKR_TAG_TEMPLATE_NAME setting to point to your template. See below for more information.

Settings

FLICKR_TAG_TEMPLATE_NAME - Specifies the name of the template to be used to render each replaced tag. This uses Pelican’s template lookup to find the name of the template. If the template is named flickrtag.html, then this setting should be set to flickrtag. (Optional) The default template looks like:

<p class="caption-container">
    <a class="caption" href="{{url}}" target="_blank">
        <img src="{{raw_url}}"
            alt="{{title}}"
            title="{{title}}"
            class="img-polaroid"
            {% if FLICKR_TAG_INCLUDE_DIMENSIONS %}
                width="{{width}}"
                height="{{height}}"
            {% endif %} />
    </a>
    <span class="caption-text muted">{{title}}</span>
</p>

FLICKR_TAG_CACHE_LOCATION - The cache location which stores the looked up photo information. This dramatically speeds up building of the site and permits you to do it offline as well. Defaults to /tmp/com.chrisstreeter.flickrtag-images.cache (Optional)

FLICKR_TAG_INCLUDE_DIMENSIONS - Whether to include the dimensions on the image tag generated by the template. Default is False. (Optional)

FLICKR_TAG_IMAGE_SIZE - The size alias used if FLICKR_TAG_INCLUDE_DIMENSIONS is set to True. Default is ‘Medium 640’. See the Flickr getSizes documentation for the valid values. (Optional)

Flickr Settings

The following two settings are required. In order to set them up, you will need to set up a Flickr API key. You can do this by creating an app on Flickr. If the blog is a personal blog, then apply for a non-commercial key. Once you’ve got your key and secret, add them to your Pelican configuration.

FLICKR_API_KEY - The API key for your app to access the Flickr API. (Required)

FLICKR_API_SECRET - The API secret for your app to access the Flickr API. (Required)

Flickr Tokens

A Flickr API token is only required if you want to access photos that are private to your account and cannot be gotten through the public API. I’ll assume you know what you’re doing and how to get a Flickr API token for this setting.

FLICKR_API_TOKEN - The API token to access the Flickr API. (Optional)

Notes

Uses portions of code from flickrpy.

License

Uses the MIT license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pelican-flickrtag-0.6.0.tar.gz (16.7 kB view hashes)

Uploaded Source

Built Distribution

pelican_flickrtag-0.6.0-py2-none-any.whl (19.4 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page