Metadata-Version: 1.1
Name: pyfspot
Version: 0.1
Summary: Perform operations on your F-Spot database.
Home-page: https://github.com/leplatrem/pyfspot/
Author: Mathieu Leplatre
Author-email: contact@mathieu-leplatre.info
License: LGPL
Download-URL: http://pypi.python.org/pypi/pyfspot/
Description: https://github.com/leplatrem/pyfspot
        
        pyfspot is a python application which allows you to perform and script
        operations on your F-Spot (http://f-spot.org) photo collection.
        
        The command-line application allows you to query your collection (tags, paths)
        and modify photos attributes (ratings).
        
        But you can also build your own script using pyfspot modules.
        
        
        =======
        INSTALL
        =======
        
        pyfspot requires:
        * sqlalchemy
        * pexif
        * fixtures (optional)
        
        System-wide installation
        ------------------------
        $ sudo python setup.py install
        
        
        Virtualenv installation
        -----------------------
        $ virtualenv env
        $ cd env
        $ source bin/activate
        $ python setup.py install
        
        
        =====
        USAGE
        =====
        
          f-spot-admin [options]
        
            Options:
            -h, --help             show this help message and exit
            --database=DATABASE    Path to F-Spot database
            --find-path=FIND_PATH  Find by path
            --find-tag=FIND_TAG    Find by tag
            --list                 List photos matching set
            --rating=RATING        Change rating
            --safe-rating          Change rating only if superior to current
            --log-level=LOG_LEVEL  Logging level for messages (1:debug 2:info, 3:warning,
                                   4:errors, 5:critical)
        
        Examples
        --------
        List all photos of database:
          f-spot-admin --list
        
        Find all photos on a specific partition:
          f-spot-admin --find-path="/media/ext-disk/*" --list
        
        Rate all photos with tag "family" with "canon" in file paths:  
          f-spot-admin --find-tag="family" --find-path="*canon*" --rating=2
        
        
        =======
        AUTHORS
        =======
        
            * Mathieu Leplatre <contact@mathieu-leplatre.info>
        
        =======
        LICENSE
        =======
        
            * Lesser GNU Public License
        
        =========
        CHANGELOG
        =========
        
        0.1
        ---
        * Initial version. Basic wiring of code and logics. Does basic path and tag search.
        
Keywords: f-spot
Platform: any
Classifier: Programming Language :: Python :: 2.5
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Topic :: Utilities
Classifier: Development Status :: 3 - Alpha
Provides: pyfspot
