A python wrapper for junegunn's awesome fzf.
- Python 2.6+
- fzf
Note: fzf must be installed and available on PATH.
pip install pyfzf
>>> from pyfzf import FzfPrompt
>>> fzf = FzfPrompt()
Simply pass a list of options to the prompt function to invoke fzf.
>>> fzf.prompt(range(0,10))
Pass additional arguments to fzf as a second argument
>>> fzf.prompt(range(0,10), '--multi --cycle')
MIT