Metadata-Version: 1.0
Name: pyselecta
Version: 0.1.0
Summary: PySelecta
Home-page: https://github.com/honza/pyselecta
Author: Honza Pokorny
Author-email: me@honza.ca
License: UNKNOWN
Description: pyselecta
        =========
        
        A fuzzy text selector for files and anything else you need to select
        
        Inspired by Gary Bernhardt's `selecta`_.
        
        .. _selecta: https://github.com/garybernhardt/selecta
        
        Unlike selecta, pyselecta doesn't include any interactive functionality.  You
        give it a list of options and a search term and it returns matches.
        
        Installation
        ------------
        
        ::
        
            $ pip install pyselecta
        
        This will give you the ``pyselecta`` shell command.
        
        Usage
        -----
        
        ::
        
            $ find . -type f | pyselecta "models"
        
        This will return a newline separated list of file paths with the best candidate
        on top.
        
        ::
        
            $ find . -type f | pyselecta
        
        
        Omitting the search term just copies the stdin to stdout.
        
        License
        -------
        
        BSD, short and sweet
        
Platform: UNKNOWN
