Skip to main content

Pick photos following a given strategy and upload them to various destinations

Project description

Photos Picker

Build Status codecov

This libary allows to pick photos in a folder according to a given strategy (last photos, random photos...) and copy them to a destination (another system folder, Dropbox or Google drive folder...)

Compatibility

This library works and is tested with Python 2.7. Other Python versions are not tested yet.

Install

$ pip install photos-picker

Usage

The main class PhotosPicker accepts a "picker", a tuple of "filters" and an "uploader" as arguments. The picker allows to select photos while the filters modify them. At the end of the process, the uploader copy transformed (or not) photos to a given destination. Below the simplest example which copy the 50 lastest photos to another directory:

from photospicker.exception.abstract_exception import AbstractException
from photospicker.picker.pickers.last_photos_picker import LastPhotosPicker
from photospicker.uploader.uploaders.filesystem_uploader import FilesystemUploader
from photospicker.photos_picker import PhotosPicker

if __name__ == '__main__':
    try:
        picker = LastPhotosPicker('/pictures', 50)
        uploader = FilesystemUploader('/destination')

        photos_picker = PhotosPicker(picker, (), uploader)
        photos_picker.run()
    except AbstractException as err:
        print err.message

Since picking and uloading may take a while, progress events are dispatched. You can see a more complex example which displays work progress here.

Pickers:

  • LastPhotosPicker: pick the n lastest photos.
  • RandomPicker: pick randomly n photos.
  • SmartPicker: pick randomy n photos. Recent photos have more chance to be picked than old ones. It results by a picking of a majority of recent photos and a few old ones.

More details here

Filters:

  • ResizeFilter: resize the photos with the given width and height. The final photos size are computed for avoiding distortion.
  • RotateFilter: Rotate the photos according to EXIF data.

More details here

Uploaders:

Note that uploaders don't append new photos. Either the directory must be empty or the uploader clear it before copying files.

  • FilesystemUploader: copy the photos to a given directory. This directory must exist and be empty.
  • DropBoxUploader: upload the photos to Dropbox. Note that you should limit your token access to application. Creating a full access token is not needed and may induce security issues.
  • GDriveUploader upload the photos to Google Drive.

More details here

Contributing

Other pickers, filters and uploaders will come along the time. If you need a specific picker, filter or uploader, post an issue. Or better, submit a pull request :)

If you submit a pull request, be sure that the PEP8 standards are respected and the tests are not broken launching the following command:

$ make validate

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

photos-picker-0.4.1.tar.gz (11.8 kB view hashes)

Uploaded Source

Built Distribution

photos_picker-0.4.1-py2-none-any.whl (45.9 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