Gallery Remote
by
Brent Woodruff
—
last modified
Aug 11, 2008 12:35 AM
Python package implementing the Gallery Remote Protocol.
GalleryRemote is a Python package for communicating with Gallery installations using the Gallery Remote Protocol.
or
- easy_install GalleryRemote
More information
The galleryremote.Gallery class implements the Gallery Remote protocol as documented here:
http://codex.gallery2.org/Gallery_Remote:Protocol
The Gallery project is an open source web based photo album organizer written in php. Gallery's web site is:
http://gallery.menalto.com/
This class is a 3rd party product which is not maintained by the creators of the Gallery project.
Example usage:
from galleryremote import Gallery
my_gallery = Gallery('http://www.yoursite.com/gallery2', 2)
my_gallery.login('username','password')
albums = my_gallery.fetch_albums()

