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 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.

Project details


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.5.0.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

pelican_flickrtag-0.5.0-py2-none-any.whl (19.2 kB view details)

Uploaded Python 2

File details

Details for the file pelican-flickrtag-0.5.0.tar.gz.

File metadata

File hashes

Hashes for pelican-flickrtag-0.5.0.tar.gz
Algorithm Hash digest
SHA256 2c874d59d10efad96689b88b30614fd9bf38244583c7c7e42e3c2115ae3a0049
MD5 4b713af7001b113c5cb151143bdb82f6
BLAKE2b-256 84182c16659df7a553a0f65425e82f9f2d83d737c020b68835b8e61aa0a412d5

See more details on using hashes here.

Provenance

File details

Details for the file pelican_flickrtag-0.5.0-py2-none-any.whl.

File metadata

File hashes

Hashes for pelican_flickrtag-0.5.0-py2-none-any.whl
Algorithm Hash digest
SHA256 19da2cbad9f5d3400913c6cb111b899a7e663de43563a86de50ae3f2e02e93fd
MD5 8e3a4a1718cb834a74b1a99425a08d07
BLAKE2b-256 2faf671de0a7cc1d80193e57987f97c06d282d6aed9d913a78528261bfa2cf21

See more details on using hashes here.

Provenance

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