Skip to content

nk412/pyfzf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyfzf

A python wrapper for junegunn's awesome fzf.

Requirements

  • Python 2.6+
  • fzf

Note: fzf must be installed and available on PATH.

Installation

pip install pyfzf

Usage

>>> from pyfzf import FzfPrompt
>>> fp = FzfPrompt()
>>> fp.prompt(range(0,10))
['1','2']