[Index] [TitleIndex] [WordIndex

Site Index:

Astronomy picture of the day

Downloads the astronomy picture for the current day and allow access to the dir for browsing the old pictures.

To activate add the following to your local_conf.py

plugin.activate('image.apod', args=('/dir_for_apod',))

Te plugin is loaded with the following settings: type=default, level=10, args=('/tmp',)

Gphoto plugin

A plugin for digi cams through gphoto. You need gphoto and the Python bindings to get this working.

plugin.activate('image.gphoto')

This plugin is reported broken in freevo 1.5.x. The problem seems to be that there are no longer working Python bindings for the new version of gphoto. If you need it, you can either fix it or find a different way to access your photos.

For cameras that are usb storage devices look in the GeneralPlugins section, there is an usb storage plugin.

Flick plugin

A plugin for get images of flickr.com

Requirements

python-json http://sourceforge.net/projects/json-py/ Also you need a flickr key from http://www.flickr.com/services/api/keys/

Usage

To activate this plugin add this to your local_conf.py:

plugin.activate('image.flickr')

FLICKR_KEY="_HERE_YOUR_API_KEY" 

Then configure your list of users:

FLICKR_PICTURES = [
   ('id1', 'description1'),
   ('id2', 'description2'),
]

One example:

FLICKR_PICTURES = [                                                                                                                                                      
        ("11378227@N06", "Eseartista pictures"),                                                                                                                            
]

And finally other options

# Where we will save our thumbnail and images
FLICKR_DIR = '/tmp/'
# How many images we will get
FLICKR_LIMIT = 20

What is ''id'' in FLICKR_PICTURES?

Is a user identification, you could get userid in http://idgettr.com/


2014-02-15 05:35