Metadata-Version: 1.1
Name: pick
Version: 0.5.0
Summary: pick an option in the terminal with a simple GUI
Home-page: https://github.com/wong2/pick
Author: wong2
Author-email: wonderfuly@gmail.com
License: MIT
Description: pick [![Build Status](https://travis-ci.org/wong2/pick.svg?branch=master)](https://travis-ci.org/wong2/pick)
        ====
        
        **pick** is a small python library to help you create curses based interactive selection
        list in the terminal. See it in action:
        
        ![Demo](example/basic.gif?raw=true)
        
        
        ### Installation
        
            $ pip install pick
        
        ### Usage
        
        **pick** comes with a simple api:
        
            >>> from pick import pick
        
            >>> title = 'Please choose your favorite programming language: '
            >>> options = ['Java', 'JavaScript', 'Python', 'PHP', 'C++', 'Erlang', 'Haskell']
            >>> option, index = pick(options, title)
        
        #### Options
        
        * `options`: a list of options to choose from
        * `title`: (optional) a title above options list
        * `indicator`: (optional) custom the selection indicator, defaults to *
        * `default_index`: (optional) set this if the default selected option is not the first one
        
Keywords: terminal gui
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
