Metadata-Version: 1.1
Name: photos-picker
Version: 0.1.2
Summary: Pick photos following a given strategy and upload them to various destinations
Home-page: https://github.com/l-vo/photos-picker
Author: Laurent VOULLEMIER
Author-email: laurent.voullemier@gmail.com
License: MIT
Description: # Photos Picker
        
        [![Build Status](https://travis-ci.org/l-vo/photos-picker.svg?branch=master)](https://travis-ci.org/l-vo/photos-picker)
        [![codecov](https://codecov.io/gh/l-vo/photos-picker/branch/master/graph/badge.svg)](https://codecov.io/gh/l-vo/photos-picker)
        
        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 folder, Dropbox folder...)
        
        ## Compatibility
        This library works and is tested with Python 2.7. Other Python versions are not tested yet.
        
        ## Install
        ```bash
        $ 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:
        
        ```python
        from photospicker.picker.last_photos_picker import LastPhotosPicker
        from photospicker.uploader.filesystem_uploader import FilesystemUploader
        from photospicker.photos_picker import PhotosPicker
        
        if __name__ == '__main__':
            picker = LastPhotosPicker('/pictures', 50)
            uploader = FilesystemUploader('/destination')
        
            photos_picker = PhotosPicker(picker, (), uploader)
            photos_picker.run()
        ```
        
        Since picking and uloading may take a while, progress events are dispatched. 
        You can see a more complex example which displays work progress [here](examples/example.py).
        
        ### Pickers:
        * `LastPhotosPicker`: pick the *n* lastest photos.
        * `RandomPicker`: pick randomly *n* photos. 
        
        More details [here](doc/pickers.md)
        
        ### 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](doc/filters.md)
        
        ### 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. ***Be careful, the script empty the `/photos` directory, you must limit your token access to application for avoiding unwanted deletions***.
        
        More details [here](doc/uploaders.md)
        
        ## 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:
        ```bash
        $ make validate
        ```
        
Keywords: photos upload photoframe
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
