Metadata-Version: 1.0
Name: Filterous
Version: 0.8.1
Summary: Delicious Command Line Filter
Home-page: http://filterous.sourceforge.net/
Author: Victor Engmark
Author-email: victor.engmark@gmail.com
License: UNKNOWN
Description: Filterous - Delicious Command Line Filter <http://filterous.sourceforge.net/>
        
        Default syntax:
        
        filterous [options]
        
        Options:
        --tag      Tag search string (@tag)
        --ntag     Negated tag search string (@tag)
        --desc     Description search string (@description)
        --ndesc    Negated description search string (@description)
        --note     Note search string (@extended)
        --nnote    Negated note search string (@extended)
        --url      URL search string (@href)
        --nurl     Negated URL search string (@href)
        --help     Show this information (use pydoc for more)
        -T         Output tab separated list for easier parsing
        -t         Show tags
        -d         Show descriptions
        -n         Show notes
        -b         Show Delicious bookmarking link
        
        Description:
        Will search the tags of the XML file downloaded from
        <https://api.del.icio.us/v1/posts/all>. To avoid the slow load of that page in
        a web browser, you can use one of the following commands:
        
        curl -ku username:password https://api.del.icio.us/v1/posts/all
        
        wget --no-check-certificate --user=username --password=password -O all.xml https://api.del.icio.us/v1/posts/all
        
        Examples:
        
        filterous -t --tag=video --tag=tosee --ntag=seen < all.xml
            Unseen videos with tags.
        
        filterous --nurl=example.org < all.xml
            Links to example.org.
        
        filterous -dntT --tag=★★★★★ < all.xml
            Returns great links as a tab-separated list with URL, description, notes and
            tags.
        
        filterous -b --url=index. < all.xml
        filterous -b --url=# < all.xml
        filterous -b --url=\& < all.xml
        filterous -b --url=//www. < all.xml
            Bookmarks that could be shortened, with their bookmarking link for quick
            correction.
        
        filterous -b --tag=read --ntag=toread < all.xml
        filterous -b --tag=seen --ntag=tosee < all.xml
        filterous -b --tag=done --ntag=todo < all.xml
            Strange tag combinations.
        
        filterous < all.xml | xargs -d\\n linkchecker -r0 --no-warnings --no-status > diagnosis.txt
            Check links for errors
        
Keywords: Delicious filterous search bookmarks tags
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Topic :: Text Processing :: Filters
